Class ImageSweepLimitSettings
- java.lang.Object
-
- com.azure.resourcemanager.machinelearning.models.ImageSweepLimitSettings
-
public final class ImageSweepLimitSettings extends Object
Limit settings for model sweeping and hyperparameter sweeping.
-
-
Constructor Summary
Constructors Constructor Description ImageSweepLimitSettings()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Integer
maxConcurrentTrials()
Get the maxConcurrentTrials property: Maximum number of concurrent iterations for the underlying Sweep job.Integer
maxTrials()
Get the maxTrials property: Maximum number of iterations for the underlying Sweep job.void
validate()
Validates the instance.ImageSweepLimitSettings
withMaxConcurrentTrials(Integer maxConcurrentTrials)
Set the maxConcurrentTrials property: Maximum number of concurrent iterations for the underlying Sweep job.ImageSweepLimitSettings
withMaxTrials(Integer maxTrials)
Set the maxTrials property: Maximum number of iterations for the underlying Sweep job.
-
-
-
Method Detail
-
maxConcurrentTrials
public Integer maxConcurrentTrials()
Get the maxConcurrentTrials property: Maximum number of concurrent iterations for the underlying Sweep job.- Returns:
- the maxConcurrentTrials value.
-
withMaxConcurrentTrials
public ImageSweepLimitSettings withMaxConcurrentTrials(Integer maxConcurrentTrials)
Set the maxConcurrentTrials property: Maximum number of concurrent iterations for the underlying Sweep job.- Parameters:
maxConcurrentTrials
- the maxConcurrentTrials value to set.- Returns:
- the ImageSweepLimitSettings object itself.
-
maxTrials
public Integer maxTrials()
Get the maxTrials property: Maximum number of iterations for the underlying Sweep job.- Returns:
- the maxTrials value.
-
withMaxTrials
public ImageSweepLimitSettings withMaxTrials(Integer maxTrials)
Set the maxTrials property: Maximum number of iterations for the underlying Sweep job.- Parameters:
maxTrials
- the maxTrials value to set.- Returns:
- the ImageSweepLimitSettings object itself.
-
validate
public void validate()
Validates the instance.- Throws:
IllegalArgumentException
- thrown if the instance is not valid.
-
-