Skip to content
This repository was archived by the owner on Dec 31, 2023. It is now read-only.

Commit f49335a

Browse files
committed
chore: fix batch predict test
1 parent 28697ed commit f49335a

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

samples/beta/batch_predict.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,9 +38,10 @@ def batch_predict(
3838
output_config = automl.types.BatchPredictOutputConfig(
3939
gcs_destination=gcs_destination
4040
)
41+
params = {}
4142

4243
response = prediction_client.batch_predict(
43-
model_full_id, input_config, output_config
44+
model_full_id, input_config, output_config, params=params
4445
)
4546

4647
print("Waiting for operation to complete...")

0 commit comments

Comments
 (0)