All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.amazonaws.services.textract.model.EvaluationMetric Maven / Gradle / Ivy

/*
 * Copyright 2018-2023 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 com.amazonaws.services.textract.model;

import java.io.Serializable;
import javax.annotation.Generated;
import com.amazonaws.protocol.StructuredPojo;
import com.amazonaws.protocol.ProtocolMarshaller;

/**
 * 

* The evaluation metrics (F1 score, Precision, and Recall) for an adapter version. *

* * @see AWS API * Documentation */ @Generated("com.amazonaws:aws-java-sdk-code-generator") public class EvaluationMetric implements Serializable, Cloneable, StructuredPojo { /** *

* The F1 score for an adapter version. *

*/ private Float f1Score; /** *

* The Precision score for an adapter version. *

*/ private Float precision; /** *

* The Recall score for an adapter version. *

*/ private Float recall; /** *

* The F1 score for an adapter version. *

* * @param f1Score * The F1 score for an adapter version. */ public void setF1Score(Float f1Score) { this.f1Score = f1Score; } /** *

* The F1 score for an adapter version. *

* * @return The F1 score for an adapter version. */ public Float getF1Score() { return this.f1Score; } /** *

* The F1 score for an adapter version. *

* * @param f1Score * The F1 score for an adapter version. * @return Returns a reference to this object so that method calls can be chained together. */ public EvaluationMetric withF1Score(Float f1Score) { setF1Score(f1Score); return this; } /** *

* The Precision score for an adapter version. *

* * @param precision * The Precision score for an adapter version. */ public void setPrecision(Float precision) { this.precision = precision; } /** *

* The Precision score for an adapter version. *

* * @return The Precision score for an adapter version. */ public Float getPrecision() { return this.precision; } /** *

* The Precision score for an adapter version. *

* * @param precision * The Precision score for an adapter version. * @return Returns a reference to this object so that method calls can be chained together. */ public EvaluationMetric withPrecision(Float precision) { setPrecision(precision); return this; } /** *

* The Recall score for an adapter version. *

* * @param recall * The Recall score for an adapter version. */ public void setRecall(Float recall) { this.recall = recall; } /** *

* The Recall score for an adapter version. *

* * @return The Recall score for an adapter version. */ public Float getRecall() { return this.recall; } /** *

* The Recall score for an adapter version. *

* * @param recall * The Recall score for an adapter version. * @return Returns a reference to this object so that method calls can be chained together. */ public EvaluationMetric withRecall(Float recall) { setRecall(recall); return this; } /** * 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. * * @return A string representation of this object. * * @see java.lang.Object#toString() */ @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("{"); if (getF1Score() != null) sb.append("F1Score: ").append(getF1Score()).append(","); if (getPrecision() != null) sb.append("Precision: ").append(getPrecision()).append(","); if (getRecall() != null) sb.append("Recall: ").append(getRecall()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof EvaluationMetric == false) return false; EvaluationMetric other = (EvaluationMetric) obj; if (other.getF1Score() == null ^ this.getF1Score() == null) return false; if (other.getF1Score() != null && other.getF1Score().equals(this.getF1Score()) == false) return false; if (other.getPrecision() == null ^ this.getPrecision() == null) return false; if (other.getPrecision() != null && other.getPrecision().equals(this.getPrecision()) == false) return false; if (other.getRecall() == null ^ this.getRecall() == null) return false; if (other.getRecall() != null && other.getRecall().equals(this.getRecall()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getF1Score() == null) ? 0 : getF1Score().hashCode()); hashCode = prime * hashCode + ((getPrecision() == null) ? 0 : getPrecision().hashCode()); hashCode = prime * hashCode + ((getRecall() == null) ? 0 : getRecall().hashCode()); return hashCode; } @Override public EvaluationMetric clone() { try { return (EvaluationMetric) super.clone(); } catch (CloneNotSupportedException e) { throw new IllegalStateException("Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e); } } @com.amazonaws.annotation.SdkInternalApi @Override public void marshall(ProtocolMarshaller protocolMarshaller) { com.amazonaws.services.textract.model.transform.EvaluationMetricMarshaller.getInstance().marshall(this, protocolMarshaller); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy