Lingua

ArmMachineLearningModelFactory.ClassificationTrainingSettings Method

Definition

Classification Training related configuration.

public static Azure.ResourceManager.MachineLearning.Models.ClassificationTrainingSettings ClassificationTrainingSettings(bool? enableDnnTraining = default, bool? enableModelExplainability = default, bool? enableOnnxCompatibleModels = default, bool? enableStackEnsemble = default, bool? enableVoteEnsemble = default, TimeSpan? ensembleModelDownloadTimeout = default, Azure.ResourceManager.MachineLearning.Models.MachineLearningStackEnsembleSettings stackEnsembleSettings = default, System.Collections.Generic.IEnumerable<Azure.ResourceManager.MachineLearning.Models.ClassificationModel> allowedTrainingAlgorithms = default, System.Collections.Generic.IEnumerable<Azure.ResourceManager.MachineLearning.Models.ClassificationModel> blockedTrainingAlgorithms = default);
static member ClassificationTrainingSettings : Nullable<bool> * Nullable<bool> * Nullable<bool> * Nullable<bool> * Nullable<bool> * Nullable<TimeSpan> * Azure.ResourceManager.MachineLearning.Models.MachineLearningStackEnsembleSettings * seq<Azure.ResourceManager.MachineLearning.Models.ClassificationModel> * seq<Azure.ResourceManager.MachineLearning.Models.ClassificationModel> -> Azure.ResourceManager.MachineLearning.Models.ClassificationTrainingSettings
Public Shared Function ClassificationTrainingSettings (Optional enableDnnTraining As Nullable(Of Boolean) = Nothing, Optional enableModelExplainability As Nullable(Of Boolean) = Nothing, Optional enableOnnxCompatibleModels As Nullable(Of Boolean) = Nothing, Optional enableStackEnsemble As Nullable(Of Boolean) = Nothing, Optional enableVoteEnsemble As Nullable(Of Boolean) = Nothing, Optional ensembleModelDownloadTimeout As Nullable(Of TimeSpan) = Nothing, Optional stackEnsembleSettings As MachineLearningStackEnsembleSettings = Nothing, Optional allowedTrainingAlgorithms As IEnumerable(Of ClassificationModel) = Nothing, Optional blockedTrainingAlgorithms As IEnumerable(Of ClassificationModel) = Nothing) As ClassificationTrainingSettings

Parameters

enableDnnTraining
Nullable<Boolean>

Enable recommendation of DNN models.

enableModelExplainability
Nullable<Boolean>

Flag to turn on explainability on best model.

enableOnnxCompatibleModels
Nullable<Boolean>

Flag for enabling onnx compatible models.

enableStackEnsemble
Nullable<Boolean>

Enable stack ensemble run.

enableVoteEnsemble
Nullable<Boolean>

Enable voting ensemble run.

ensembleModelDownloadTimeout
Nullable<TimeSpan>

During VotingEnsemble and StackEnsemble model generation, multiple fitted models from the previous child runs are downloaded. Configure this parameter with a higher value than 300 secs, if more time is needed.

stackEnsembleSettings
MachineLearningStackEnsembleSettings

Stack ensemble settings for stack ensemble run.

allowedTrainingAlgorithms
IEnumerable<ClassificationModel>

Allowed models for classification task.

blockedTrainingAlgorithms
IEnumerable<ClassificationModel>

Blocked models for classification task.

Returns

A new ClassificationTrainingSettings instance for mocking.

Applies to