Source code for azure.ai.ml.entities._job.automl.image.image_classification_search_space

# ---------------------------------------------------------
# Copyright (c) Microsoft Corporation. All rights reserved.
# ---------------------------------------------------------

from typing import Union

from azure.ai.ml._restclient.v2022_02_01_preview.models import (
    ImageModelDistributionSettingsClassification,
)
from azure.ai.ml.entities._mixins import RestTranslatableMixin
from azure.ai.ml.entities._job.automl.image.image_search_space_utils import (
    _convert_to_rest_object,
    _convert_from_rest_object,
)
from azure.ai.ml.entities._job.sweep.search_space import SweepDistribution


[docs]class ImageClassificationSearchSpace(RestTranslatableMixin): """Search space for AutoML Image Classification and Image Classification Multilabel tasks.""" def __init__( self, *, ams_gradient: Union[bool, SweepDistribution] = None, augmentations: Union[str, SweepDistribution] = None, beta1: Union[float, SweepDistribution] = None, beta2: Union[float, SweepDistribution] = None, distributed: Union[bool, SweepDistribution] = None, early_stopping: Union[bool, SweepDistribution] = None, early_stopping_delay: Union[int, SweepDistribution] = None, early_stopping_patience: Union[int, SweepDistribution] = None, enable_onnx_normalization: Union[bool, SweepDistribution] = None, evaluation_frequency: Union[int, SweepDistribution] = None, gradient_accumulation_step: Union[int, SweepDistribution] = None, layers_to_freeze: Union[int, SweepDistribution] = None, learning_rate: Union[float, SweepDistribution] = None, learning_rate_scheduler: Union[str, SweepDistribution] = None, model_name: Union[str, SweepDistribution] = None, momentum: Union[float, SweepDistribution] = None, nesterov: Union[bool, SweepDistribution] = None, number_of_epochs: Union[int, SweepDistribution] = None, number_of_workers: Union[int, SweepDistribution] = None, optimizer: Union[str, SweepDistribution] = None, random_seed: Union[int, SweepDistribution] = None, step_lr_gamma: Union[float, SweepDistribution] = None, step_lr_step_size: Union[int, SweepDistribution] = None, training_batch_size: Union[int, SweepDistribution] = None, validation_batch_size: Union[int, SweepDistribution] = None, warmup_cosine_lr_cycles: Union[float, SweepDistribution] = None, warmup_cosine_lr_warmup_epochs: Union[int, SweepDistribution] = None, weight_decay: Union[float, SweepDistribution] = None, training_crop_size: Union[int, SweepDistribution] = None, validation_crop_size: Union[int, SweepDistribution] = None, validation_resize_size: Union[int, SweepDistribution] = None, weighted_loss: Union[int, SweepDistribution] = None, ) -> None: self.ams_gradient = ams_gradient self.augmentations = augmentations self.beta1 = beta1 self.beta2 = beta2 self.distributed = distributed self.early_stopping = early_stopping self.early_stopping_delay = early_stopping_delay self.early_stopping_patience = early_stopping_patience self.enable_onnx_normalization = enable_onnx_normalization self.evaluation_frequency = evaluation_frequency self.gradient_accumulation_step = gradient_accumulation_step self.layers_to_freeze = layers_to_freeze self.learning_rate = learning_rate self.learning_rate_scheduler = learning_rate_scheduler self.model_name = model_name self.momentum = momentum self.nesterov = nesterov self.number_of_epochs = number_of_epochs self.number_of_workers = number_of_workers self.optimizer = optimizer self.random_seed = random_seed self.step_lr_gamma = step_lr_gamma self.step_lr_step_size = step_lr_step_size self.training_batch_size = training_batch_size self.validation_batch_size = validation_batch_size self.warmup_cosine_lr_cycles = warmup_cosine_lr_cycles self.warmup_cosine_lr_warmup_epochs = warmup_cosine_lr_warmup_epochs self.weight_decay = weight_decay self.training_crop_size = training_crop_size self.validation_crop_size = validation_crop_size self.validation_resize_size = validation_resize_size self.weighted_loss = weighted_loss def _to_rest_object(self) -> ImageModelDistributionSettingsClassification: return ImageModelDistributionSettingsClassification( ams_gradient=_convert_to_rest_object(self.ams_gradient) if self.ams_gradient is not None else None, augmentations=_convert_to_rest_object(self.augmentations) if self.augmentations is not None else None, beta1=_convert_to_rest_object(self.beta1) if self.beta1 is not None else None, beta2=_convert_to_rest_object(self.beta2) if self.beta2 is not None else None, distributed=_convert_to_rest_object(self.distributed) if self.distributed is not None else None, early_stopping=_convert_to_rest_object(self.early_stopping) if self.early_stopping is not None else None, early_stopping_delay=( _convert_to_rest_object(self.early_stopping_delay) if self.early_stopping_delay is not None else None ), early_stopping_patience=( _convert_to_rest_object(self.early_stopping_patience) if self.early_stopping_patience is not None else None ), enable_onnx_normalization=( _convert_to_rest_object(self.enable_onnx_normalization) if self.enable_onnx_normalization is not None else None ), evaluation_frequency=( _convert_to_rest_object(self.evaluation_frequency) if self.evaluation_frequency is not None else None ), gradient_accumulation_step=( _convert_to_rest_object(self.gradient_accumulation_step) if self.gradient_accumulation_step is not None else None ), layers_to_freeze=( _convert_to_rest_object(self.layers_to_freeze) if self.layers_to_freeze is not None else None ), learning_rate=_convert_to_rest_object(self.learning_rate) if self.learning_rate is not None else None, learning_rate_scheduler=( _convert_to_rest_object(self.learning_rate_scheduler) if self.learning_rate_scheduler is not None else None ), model_name=_convert_to_rest_object(self.model_name) if self.model_name is not None else None, momentum=_convert_to_rest_object(self.momentum) if self.momentum is not None else None, nesterov=_convert_to_rest_object(self.nesterov) if self.nesterov is not None else None, number_of_epochs=( _convert_to_rest_object(self.number_of_epochs) if self.number_of_epochs is not None else None ), number_of_workers=( _convert_to_rest_object(self.number_of_workers) if self.number_of_workers is not None else None ), optimizer=_convert_to_rest_object(self.optimizer) if self.optimizer is not None else None, random_seed=_convert_to_rest_object(self.random_seed) if self.random_seed is not None else None, step_lr_gamma=_convert_to_rest_object(self.step_lr_gamma) if self.step_lr_gamma is not None else None, step_lr_step_size=( _convert_to_rest_object(self.step_lr_step_size) if self.step_lr_step_size is not None else None ), training_batch_size=( _convert_to_rest_object(self.training_batch_size) if self.training_batch_size is not None else None ), validation_batch_size=( _convert_to_rest_object(self.validation_batch_size) if self.validation_batch_size is not None else None ), warmup_cosine_lr_cycles=( _convert_to_rest_object(self.warmup_cosine_lr_cycles) if self.warmup_cosine_lr_cycles is not None else None ), warmup_cosine_lr_warmup_epochs=( _convert_to_rest_object(self.warmup_cosine_lr_warmup_epochs) if self.warmup_cosine_lr_warmup_epochs is not None else None ), weight_decay=_convert_to_rest_object(self.weight_decay) if self.weight_decay is not None else None, training_crop_size=( _convert_to_rest_object(self.training_crop_size) if self.training_crop_size is not None else None ), validation_crop_size=( _convert_to_rest_object(self.validation_crop_size) if self.validation_crop_size is not None else None ), validation_resize_size=( _convert_to_rest_object(self.validation_resize_size) if self.validation_resize_size is not None else None ), weighted_loss=_convert_to_rest_object(self.weighted_loss) if self.weighted_loss is not None else None, ) @classmethod def _from_rest_object(cls, obj: ImageModelDistributionSettingsClassification) -> "ImageClassificationSearchSpace": return cls( ams_gradient=_convert_from_rest_object(obj.ams_gradient) if obj.ams_gradient is not None else None, augmentations=_convert_from_rest_object(obj.augmentations) if obj.augmentations is not None else None, beta1=_convert_from_rest_object(obj.beta1) if obj.beta1 is not None else None, beta2=_convert_from_rest_object(obj.beta2) if obj.beta2 is not None else None, distributed=_convert_from_rest_object(obj.distributed) if obj.distributed is not None else None, early_stopping=_convert_from_rest_object(obj.early_stopping) if obj.early_stopping is not None else None, early_stopping_delay=( _convert_from_rest_object(obj.early_stopping_delay) if obj.early_stopping_delay is not None else None ), early_stopping_patience=( _convert_from_rest_object(obj.early_stopping_patience) if obj.early_stopping_patience is not None else None ), enable_onnx_normalization=( _convert_from_rest_object(obj.enable_onnx_normalization) if obj.enable_onnx_normalization is not None else None ), evaluation_frequency=( _convert_from_rest_object(obj.evaluation_frequency) if obj.evaluation_frequency is not None else None ), gradient_accumulation_step=( _convert_from_rest_object(obj.gradient_accumulation_step) if obj.gradient_accumulation_step is not None else None ), layers_to_freeze=( _convert_from_rest_object(obj.layers_to_freeze) if obj.layers_to_freeze is not None else None ), learning_rate=_convert_from_rest_object(obj.learning_rate) if obj.learning_rate is not None else None, learning_rate_scheduler=( _convert_from_rest_object(obj.learning_rate_scheduler) if obj.learning_rate_scheduler is not None else None ), model_name=_convert_from_rest_object(obj.model_name) if obj.model_name is not None else None, momentum=_convert_from_rest_object(obj.momentum) if obj.momentum is not None else None, nesterov=_convert_from_rest_object(obj.nesterov) if obj.nesterov is not None else None, number_of_epochs=( _convert_from_rest_object(obj.number_of_epochs) if obj.number_of_epochs is not None else None ), number_of_workers=( _convert_from_rest_object(obj.number_of_workers) if obj.number_of_workers is not None else None ), optimizer=_convert_from_rest_object(obj.optimizer) if obj.optimizer is not None else None, random_seed=_convert_from_rest_object(obj.random_seed) if obj.random_seed is not None else None, step_lr_gamma=_convert_from_rest_object(obj.step_lr_gamma) if obj.step_lr_gamma is not None else None, step_lr_step_size=( _convert_from_rest_object(obj.step_lr_step_size) if obj.step_lr_step_size is not None else None ), training_batch_size=( _convert_from_rest_object(obj.training_batch_size) if obj.training_batch_size is not None else None ), validation_batch_size=( _convert_from_rest_object(obj.validation_batch_size) if obj.validation_batch_size is not None else None ), warmup_cosine_lr_cycles=( _convert_from_rest_object(obj.warmup_cosine_lr_cycles) if obj.warmup_cosine_lr_cycles is not None else None ), warmup_cosine_lr_warmup_epochs=( _convert_from_rest_object(obj.warmup_cosine_lr_warmup_epochs) if obj.warmup_cosine_lr_warmup_epochs is not None else None ), weight_decay=_convert_from_rest_object(obj.weight_decay) if obj.weight_decay is not None else None, training_crop_size=( _convert_from_rest_object(obj.training_crop_size) if obj.training_crop_size is not None else None ), validation_crop_size=( _convert_from_rest_object(obj.validation_crop_size) if obj.validation_crop_size is not None else None ), validation_resize_size=( _convert_from_rest_object(obj.validation_resize_size) if obj.validation_resize_size is not None else None ), weighted_loss=_convert_from_rest_object(obj.weighted_loss) if obj.weighted_loss is not None else None, ) def __eq__(self, other: object) -> bool: if not isinstance(other, ImageClassificationSearchSpace): return NotImplemented return ( self.ams_gradient == other.ams_gradient and self.augmentations == other.augmentations and self.beta1 == other.beta1 and self.beta2 == other.beta2 and self.distributed == other.distributed and self.early_stopping == other.early_stopping and self.early_stopping_delay == other.early_stopping_delay and self.early_stopping_patience == other.early_stopping_patience and self.enable_onnx_normalization == other.enable_onnx_normalization and self.evaluation_frequency == other.evaluation_frequency and self.gradient_accumulation_step == other.gradient_accumulation_step and self.layers_to_freeze == other.layers_to_freeze and self.learning_rate == other.learning_rate and self.learning_rate_scheduler == other.learning_rate_scheduler and self.model_name == other.model_name and self.momentum == other.momentum and self.nesterov == other.nesterov and self.number_of_epochs == other.number_of_epochs and self.number_of_workers == other.number_of_workers and self.optimizer == other.optimizer and self.random_seed == other.random_seed and self.step_lr_gamma == other.step_lr_gamma and self.step_lr_step_size == other.step_lr_step_size and self.training_batch_size == other.training_batch_size and self.validation_batch_size == other.validation_batch_size and self.warmup_cosine_lr_cycles == other.warmup_cosine_lr_cycles and self.warmup_cosine_lr_warmup_epochs == other.warmup_cosine_lr_warmup_epochs and self.weight_decay == other.weight_decay and self.training_crop_size == other.training_crop_size and self.validation_crop_size == other.validation_crop_size and self.validation_resize_size == other.validation_resize_size and self.weighted_loss == other.weighted_loss ) def __ne__(self, other: object) -> bool: return not self.__eq__(other)