Compartir a través de


ModelConfiguration Clase

Nota

Se trata de una clase experimental y puede cambiar en cualquier momento. Consulte https://aka.ms/azuremlexperimental para más información.

ModelConfiguration.

Herencia
builtins.object
ModelConfiguration

Constructor

ModelConfiguration(*, mode: str = None, mount_path: str = None)

Parámetros

mode
str
Requerido

Modo del modelo.

mount_path
str
Requerido

Ruta de acceso de montaje del modelo.

Ejemplos

Crear un objeto Model Configuration.


   from azure.ai.ml.entities._assets._artifacts._package.model_configuration import ModelConfiguration

   modelConfiguration = ModelConfiguration(mode="model-mode", mount_path="model-mount-path")