Question: 1 / 100

What effect does invoking a batch endpoint have on the model used if no model is indicated?

The last modified model runs.

The default deployed model executes the scoring.

When invoking a batch endpoint without specifying a model, the system defaults to using the designated default deployed model for scoring. This ensures that predictions or scoring are systematically carried out according to the latest model that has been set as the default for the endpoint. By having a default model, Azure provides a seamless experience for users who may not want to manage which model to use for every request, thus streamlining the workflow.

The architecture is designed to facilitate ease of use, meaning that invoking the endpoint without explicit parameters automatically leads to the execution of the model that has been defined as default. This helps maintain consistency and reliability in model performance and outputs, especially important in production environments where regular and reliable scoring is essential.

In contrast to this, some other options involve scenarios that are either impractical or do not align with how Azure handles model invocations at batch endpoints. For instance, relying on the last modified model would not necessarily guarantee consistency, and prompting a user for model choice would not be efficient in automated workflows. Thus, employing a default model ensures that the scoring process remains effective and user-friendly.

The process ignores all models.

It will prompt for a model choice.

Next

Report this question