software.amazon.awssdk.services.sagemaker.model.HyperParameterTuningJobCompletionDetails Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sagemaker Show documentation
Show all versions of sagemaker Show documentation
The AWS Java SDK for Amazon SageMaker module holds the client classes that are used for communicating
with Amazon SageMaker Service
/*
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with
* the License. A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
* CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions
* and limitations under the License.
*/
package software.amazon.awssdk.services.sagemaker.model;
import java.io.Serializable;
import java.time.Instant;
import java.util.Arrays;
import java.util.Collections;
import java.util.List;
import java.util.Objects;
import java.util.Optional;
import java.util.function.BiConsumer;
import java.util.function.Function;
import software.amazon.awssdk.annotations.Generated;
import software.amazon.awssdk.core.SdkField;
import software.amazon.awssdk.core.SdkPojo;
import software.amazon.awssdk.core.protocol.MarshallLocation;
import software.amazon.awssdk.core.protocol.MarshallingType;
import software.amazon.awssdk.core.traits.LocationTrait;
import software.amazon.awssdk.utils.ToString;
import software.amazon.awssdk.utils.builder.CopyableBuilder;
import software.amazon.awssdk.utils.builder.ToCopyableBuilder;
/**
*
* A structure that contains runtime information about both current and completed hyperparameter tuning jobs.
*
*/
@Generated("software.amazon.awssdk:codegen")
public final class HyperParameterTuningJobCompletionDetails implements SdkPojo, Serializable,
ToCopyableBuilder {
private static final SdkField NUMBER_OF_TRAINING_JOBS_OBJECTIVE_NOT_IMPROVING_FIELD = SdkField
. builder(MarshallingType.INTEGER)
.memberName("NumberOfTrainingJobsObjectiveNotImproving")
.getter(getter(HyperParameterTuningJobCompletionDetails::numberOfTrainingJobsObjectiveNotImproving))
.setter(setter(Builder::numberOfTrainingJobsObjectiveNotImproving))
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD)
.locationName("NumberOfTrainingJobsObjectiveNotImproving").build()).build();
private static final SdkField CONVERGENCE_DETECTED_TIME_FIELD = SdkField. builder(MarshallingType.INSTANT)
.memberName("ConvergenceDetectedTime")
.getter(getter(HyperParameterTuningJobCompletionDetails::convergenceDetectedTime))
.setter(setter(Builder::convergenceDetectedTime))
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("ConvergenceDetectedTime").build())
.build();
private static final List> SDK_FIELDS = Collections.unmodifiableList(Arrays.asList(
NUMBER_OF_TRAINING_JOBS_OBJECTIVE_NOT_IMPROVING_FIELD, CONVERGENCE_DETECTED_TIME_FIELD));
private static final long serialVersionUID = 1L;
private final Integer numberOfTrainingJobsObjectiveNotImproving;
private final Instant convergenceDetectedTime;
private HyperParameterTuningJobCompletionDetails(BuilderImpl builder) {
this.numberOfTrainingJobsObjectiveNotImproving = builder.numberOfTrainingJobsObjectiveNotImproving;
this.convergenceDetectedTime = builder.convergenceDetectedTime;
}
/**
*
* The number of training jobs launched by a tuning job that are not improving (1% or less) as measured by model
* performance evaluated against an objective function.
*
*
* @return The number of training jobs launched by a tuning job that are not improving (1% or less) as measured by
* model performance evaluated against an objective function.
*/
public final Integer numberOfTrainingJobsObjectiveNotImproving() {
return numberOfTrainingJobsObjectiveNotImproving;
}
/**
*
* The time in timestamp format that AMT detected model convergence, as defined by a lack of significant improvement
* over time based on criteria developed over a wide range of diverse benchmarking tests.
*
*
* @return The time in timestamp format that AMT detected model convergence, as defined by a lack of significant
* improvement over time based on criteria developed over a wide range of diverse benchmarking tests.
*/
public final Instant convergenceDetectedTime() {
return convergenceDetectedTime;
}
@Override
public Builder toBuilder() {
return new BuilderImpl(this);
}
public static Builder builder() {
return new BuilderImpl();
}
public static Class extends Builder> serializableBuilderClass() {
return BuilderImpl.class;
}
@Override
public final int hashCode() {
int hashCode = 1;
hashCode = 31 * hashCode + Objects.hashCode(numberOfTrainingJobsObjectiveNotImproving());
hashCode = 31 * hashCode + Objects.hashCode(convergenceDetectedTime());
return hashCode;
}
@Override
public final boolean equals(Object obj) {
return equalsBySdkFields(obj);
}
@Override
public final boolean equalsBySdkFields(Object obj) {
if (this == obj) {
return true;
}
if (obj == null) {
return false;
}
if (!(obj instanceof HyperParameterTuningJobCompletionDetails)) {
return false;
}
HyperParameterTuningJobCompletionDetails other = (HyperParameterTuningJobCompletionDetails) obj;
return Objects.equals(numberOfTrainingJobsObjectiveNotImproving(), other.numberOfTrainingJobsObjectiveNotImproving())
&& Objects.equals(convergenceDetectedTime(), other.convergenceDetectedTime());
}
/**
* Returns a string representation of this object. This is useful for testing and debugging. Sensitive data will be
* redacted from this string using a placeholder value.
*/
@Override
public final String toString() {
return ToString.builder("HyperParameterTuningJobCompletionDetails")
.add("NumberOfTrainingJobsObjectiveNotImproving", numberOfTrainingJobsObjectiveNotImproving())
.add("ConvergenceDetectedTime", convergenceDetectedTime()).build();
}
public final Optional getValueForField(String fieldName, Class clazz) {
switch (fieldName) {
case "NumberOfTrainingJobsObjectiveNotImproving":
return Optional.ofNullable(clazz.cast(numberOfTrainingJobsObjectiveNotImproving()));
case "ConvergenceDetectedTime":
return Optional.ofNullable(clazz.cast(convergenceDetectedTime()));
default:
return Optional.empty();
}
}
@Override
public final List> sdkFields() {
return SDK_FIELDS;
}
private static Function