Skip to content

Commit e86f6e6

Browse files
Merge pull request #249689 from santiagxf/santiagxf/azureml-batch-patch
Update how-to-use-batch-model-deployments.md
2 parents add4467 + 7042232 commit e86f6e6

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

articles/machine-learning/how-to-use-batch-model-deployments.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -276,6 +276,7 @@ A model deployment is a set of resources required for hosting the model that doe
276276
| `settings.retry_settings.timeout` | [Optional] The timeout in seconds for a `scoring_script` `run()` for scoring a mini batch. |
277277
| `settings.error_threshold` | [Optional] The number of input file scoring failures that should be ignored. If the error count for the entire input goes above this value, the batch scoring job will be terminated. The example uses `-1`, which indicates that any number of failures is allowed without terminating the batch scoring job. |
278278
| `settings.logging_level` | [Optional] Log verbosity. Values in increasing verbosity are: WARNING, INFO, and DEBUG. |
279+
| `settings.environment_variables` | [Optional] Dictionary of environment variable name-value pairs to set for each batch scoring job. |
279280

280281
# [Python](#tab/python)
281282

@@ -302,7 +303,7 @@ A model deployment is a set of resources required for hosting the model that doe
302303
| `settings.retry_settingstimeout` | The timeout in seconds for scoring a mini batch (default is 30) |
303304
| `settings.output_action` | Indicates how the output should be organized in the output file. Allowed values are `append_row` or `summary_only`. Default is `append_row` |
304305
| `settings.logging_level` | The log verbosity level. Allowed values are `warning`, `info`, `debug`. Default is `info`. |
305-
| `environment_variables` | Dictionary of environment variable name-value pairs to set for each batch scoring job. |
306+
| `settings.environment_variables` | Dictionary of environment variable name-value pairs to set for each batch scoring job. |
306307

307308
# [Studio](#tab/studio)
308309

0 commit comments

Comments
 (0)