ArmMachineLearningModelFactory.ClassificationTrainingSettings Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
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.