IImageClassification Interface
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.
[System.ComponentModel.TypeConverter(typeof(Microsoft.Azure.PowerShell.Cmdlets.MachineLearningServices.Models.Api20240401.ImageClassificationTypeConverter))]
public interface IImageClassification : Microsoft.Azure.PowerShell.Cmdlets.MachineLearningServices.Models.Api20240401.IAutoMlVertical, Microsoft.Azure.PowerShell.Cmdlets.MachineLearningServices.Models.Api20240401.IImageClassificationBase
[<System.ComponentModel.TypeConverter(typeof(Microsoft.Azure.PowerShell.Cmdlets.MachineLearningServices.Models.Api20240401.ImageClassificationTypeConverter))>]
type IImageClassification = interface
interface IJsonSerializable
interface IImageClassificationBase
interface IImageVertical
interface IAutoMlVertical
Public Interface IImageClassification
Implements IAutoMlVertical, IImageClassificationBase
- Derived
- Attributes
- Implements
Properties
EarlyTerminationDelayEvaluation |
Number of intervals by which to delay the first evaluation. (Inherited from IImageVertical) |
EarlyTerminationEvaluationInterval |
Interval (number of runs) between policy evaluations. (Inherited from IImageVertical) |
EarlyTerminationPolicyType |
[Required] Name of policy configuration (Inherited from IImageVertical) |
LimitSettingMaxConcurrentTrial |
Maximum number of concurrent AutoML iterations. (Inherited from IImageVertical) |
LimitSettingMaxTrial |
Maximum number of AutoML iterations. (Inherited from IImageVertical) |
LimitSettingTimeout |
AutoML job timeout. (Inherited from IImageVertical) |
LogVerbosity |
Log verbosity for the job. (Inherited from IAutoMlVertical) |
ModelSettingAdvancedSetting |
Settings for advanced scenarios. (Inherited from IImageClassificationBase) |
ModelSettingAmsGradient |
Enable AMSGrad when optimizer is 'adam' or 'adamw'. (Inherited from IImageClassificationBase) |
ModelSettingAugmentation |
Settings for using Augmentations. (Inherited from IImageClassificationBase) |
ModelSettingBeta1 |
Value of 'beta1' when optimizer is 'adam' or 'adamw'. Must be a float in the range [0, 1]. (Inherited from IImageClassificationBase) |
ModelSettingBeta2 |
Value of 'beta2' when optimizer is 'adam' or 'adamw'. Must be a float in the range [0, 1]. (Inherited from IImageClassificationBase) |
ModelSettingCheckpointFrequency |
Frequency to store model checkpoints. Must be a positive integer. (Inherited from IImageClassificationBase) |
ModelSettingCheckpointModelDescription |
Description for the input. (Inherited from IImageClassificationBase) |
ModelSettingCheckpointModelJobInputType |
[Required] Specifies the type of job. (Inherited from IImageClassificationBase) |
ModelSettingCheckpointModelMode |
Input Asset Delivery Mode. (Inherited from IImageClassificationBase) |
ModelSettingCheckpointModelUri |
[Required] Input Asset URI. (Inherited from IImageClassificationBase) |
ModelSettingCheckpointRunId |
The id of a previous run that has a pretrained checkpoint for incremental training. (Inherited from IImageClassificationBase) |
ModelSettingDistributed |
Whether to use distributed training. (Inherited from IImageClassificationBase) |
ModelSettingEarlyStopping |
Enable early stopping logic during training. (Inherited from IImageClassificationBase) |
ModelSettingEarlyStoppingDelay |
Minimum number of epochs or validation evaluations to wait before primary metric improvement is tracked for early stopping. Must be a positive integer. (Inherited from IImageClassificationBase) |
ModelSettingEarlyStoppingPatience |
Minimum number of epochs or validation evaluations with no primary metric improvement before the run is stopped. Must be a positive integer. (Inherited from IImageClassificationBase) |
ModelSettingEnableOnnxNormalization |
Enable normalization when exporting ONNX model. (Inherited from IImageClassificationBase) |
ModelSettingEvaluationFrequency |
Frequency to evaluate validation dataset to get metric scores. Must be a positive integer. (Inherited from IImageClassificationBase) |
ModelSettingGradientAccumulationStep |
Gradient accumulation means running a configured number of "GradAccumulationStep" steps without updating the model weights while accumulating the gradients of those steps, and then using the accumulated gradients to compute the weight updates. Must be a positive integer. (Inherited from IImageClassificationBase) |
ModelSettingLayersToFreeze |
Number of layers to freeze for the model. Must be a positive integer. For instance, passing 2 as value for 'seresnext' means freezing layer0 and layer1. For a full list of models supported and details on layer freeze, please see: https://docs.microsoft.com/en-us/azure/machine-learning/how-to-auto-train-image-models. (Inherited from IImageClassificationBase) |
ModelSettingLearningRate |
Initial learning rate. Must be a float in the range [0, 1]. (Inherited from IImageClassificationBase) |
ModelSettingLearningRateScheduler |
Type of learning rate scheduler. Must be 'warmup_cosine' or 'step'. (Inherited from IImageClassificationBase) |
ModelSettingModelName |
Name of the model to use for training. For more information on the available models please visit the official documentation: https://docs.microsoft.com/en-us/azure/machine-learning/how-to-auto-train-image-models. (Inherited from IImageClassificationBase) |
ModelSettingMomentum |
Value of momentum when optimizer is 'sgd'. Must be a float in the range [0, 1]. (Inherited from IImageClassificationBase) |
ModelSettingNesterov |
Enable nesterov when optimizer is 'sgd'. (Inherited from IImageClassificationBase) |
ModelSettingNumberOfEpoch |
Number of training epochs. Must be a positive integer. (Inherited from IImageClassificationBase) |
ModelSettingNumberOfWorker |
Number of data loader workers. Must be a non-negative integer. (Inherited from IImageClassificationBase) |
ModelSettingOptimizer |
Type of optimizer. (Inherited from IImageClassificationBase) |
ModelSettingRandomSeed |
Random seed to be used when using deterministic training. (Inherited from IImageClassificationBase) |
ModelSettingStepLrGamma |
Value of gamma when learning rate scheduler is 'step'. Must be a float in the range [0, 1]. (Inherited from IImageClassificationBase) |
ModelSettingStepLrStepSize |
Value of step size when learning rate scheduler is 'step'. Must be a positive integer. (Inherited from IImageClassificationBase) |
ModelSettingTrainingBatchSize |
Training batch size. Must be a positive integer. (Inherited from IImageClassificationBase) |
ModelSettingTrainingCropSize |
Image crop size that is input to the neural network for the training dataset. Must be a positive integer. (Inherited from IImageClassificationBase) |
ModelSettingValidationBatchSize |
Validation batch size. Must be a positive integer. (Inherited from IImageClassificationBase) |
ModelSettingValidationCropSize |
Image crop size that is input to the neural network for the validation dataset. Must be a positive integer. (Inherited from IImageClassificationBase) |
ModelSettingValidationResizeSize |
Image size to which to resize before cropping for validation dataset. Must be a positive integer. (Inherited from IImageClassificationBase) |
ModelSettingWarmupCosineLrCycle |
Value of cosine cycle when learning rate scheduler is 'warmup_cosine'. Must be a float in the range [0, 1]. (Inherited from IImageClassificationBase) |
ModelSettingWarmupCosineLrWarmupEpoch |
Value of warmup epochs when learning rate scheduler is 'warmup_cosine'. Must be a positive integer. (Inherited from IImageClassificationBase) |
ModelSettingWeightDecay |
Value of weight decay when optimizer is 'sgd', 'adam', or 'adamw'. Must be a float in the range[0, 1]. (Inherited from IImageClassificationBase) |
ModelSettingWeightedLoss |
Weighted loss. The accepted values are 0 for no weighted loss. 1 for weighted loss with sqrt.(class_weights). 2 for weighted loss with class_weights. Must be 0 or 1 or 2. (Inherited from IImageClassificationBase) |
PrimaryMetric |
Primary metric to optimize for this task. |
SearchSpace |
Search space for sampling different combinations of models and their hyperparameters. (Inherited from IImageClassificationBase) |
SweepSettingSamplingAlgorithm |
[Required] Type of the hyperparameter sampling algorithms. (Inherited from IImageVertical) |
TargetColumnName |
Target column name: This is prediction values column. Also known as label column name in context of classification tasks. (Inherited from IAutoMlVertical) |
TaskType |
[Required] Task type for AutoMLJob. (Inherited from IAutoMlVertical) |
TrainingDataDescription |
Description for the input. (Inherited from IAutoMlVertical) |
TrainingDataJobInputType |
[Required] Specifies the type of job. (Inherited from IAutoMlVertical) |
TrainingDataMode |
Input Asset Delivery Mode. (Inherited from IAutoMlVertical) |
TrainingDataUri |
[Required] Input Asset URI. (Inherited from IAutoMlVertical) |
ValidationDataDescription |
Description for the input. (Inherited from IImageVertical) |
ValidationDataJobInputType |
[Required] Specifies the type of job. (Inherited from IImageVertical) |
ValidationDataMode |
Input Asset Delivery Mode. (Inherited from IImageVertical) |
ValidationDataSize |
The fraction of training dataset that needs to be set aside for validation purpose. Values between (0.0 , 1.0) Applied when validation dataset is not provided. (Inherited from IImageVertical) |
ValidationDataUri |
[Required] Input Asset URI. (Inherited from IImageVertical) |
Methods
ToJson(JsonObject, SerializationMode) | (Inherited from IJsonSerializable) |