Skip to content

Commit ca49605

Browse files
authored
Merge pull request #94062 from amymsft/patch-1
Pass in "input" to the invoke method.
2 parents a2c5b9b + d2c9d9a commit ca49605

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

articles/machine-learning/how-to-use-batch-endpoint-sdk-v2.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -204,7 +204,7 @@ Using the `MLClient` created earlier, we'll get a handle to the endpoint. The en
204204
# invoke the endpoint for batch scoring job
205205
job = ml_client.batch_endpoints.invoke(
206206
endpoint_name=batch_endpoint_name,
207-
input_data=input,
207+
input=input,
208208
deployment_name="non-mlflow-deployment", # name is required as default deployment is not set
209209
params_override=[{"mini_batch_size": "20"}, {"compute.instance_count": "4"}],
210210
)

0 commit comments

Comments
 (0)