Classification Training Settings Args
data class ClassificationTrainingSettingsArgs(val allowedTrainingAlgorithms: Output<List<Either<String, ClassificationModels>>>? = null, val blockedTrainingAlgorithms: Output<List<Either<String, ClassificationModels>>>? = null, val enableDnnTraining: Output<Boolean>? = null, val enableModelExplainability: Output<Boolean>? = null, val enableOnnxCompatibleModels: Output<Boolean>? = null, val enableStackEnsemble: Output<Boolean>? = null, val enableVoteEnsemble: Output<Boolean>? = null, val ensembleModelDownloadTimeout: Output<String>? = null, val stackEnsembleSettings: Output<StackEnsembleSettingsArgs>? = null) : ConvertibleToJava<ClassificationTrainingSettingsArgs>
Classification Training related configuration.
Constructors
Link copied to clipboard
constructor(allowedTrainingAlgorithms: Output<List<Either<String, ClassificationModels>>>? = null, blockedTrainingAlgorithms: Output<List<Either<String, ClassificationModels>>>? = null, enableDnnTraining: Output<Boolean>? = null, enableModelExplainability: Output<Boolean>? = null, enableOnnxCompatibleModels: Output<Boolean>? = null, enableStackEnsemble: Output<Boolean>? = null, enableVoteEnsemble: Output<Boolean>? = null, ensembleModelDownloadTimeout: Output<String>? = null, stackEnsembleSettings: Output<StackEnsembleSettingsArgs>? = null)
Properties
Link copied to clipboard
Allowed models for classification task.
Link copied to clipboard
Blocked models for classification task.
Link copied to clipboard
Enable recommendation of DNN models.
Link copied to clipboard
Flag to turn on explainability on best model.
Link copied to clipboard
Flag for enabling onnx compatible models.
Link copied to clipboard
Enable stack ensemble run.
Link copied to clipboard
Enable voting ensemble run.
Link copied to clipboard
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.
Link copied to clipboard
Stack ensemble settings for stack ensemble run.