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

com.tencentcloudapi.cii.v20201210.models.CompareMetricsData Maven / Gradle / Ivy

/*
 * Copyright (c) 2017-2018 THL A29 Limited, a Tencent company. 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.
 * You may obtain a copy of the License at
 *
 *    http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License 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.tencentcloudapi.cii.v20201210.models;

import com.tencentcloudapi.common.AbstractModel;
import com.google.gson.annotations.SerializedName;
import com.google.gson.annotations.Expose;
import java.util.HashMap;

public class CompareMetricsData extends AbstractModel{

    /**
    * 短文准确率
    */
    @SerializedName("ShortStructAccuracy")
    @Expose
    private String ShortStructAccuracy;

    /**
    * 短文召回率
    */
    @SerializedName("ShortStructRecall")
    @Expose
    private String ShortStructRecall;

    /**
    * 长文结构化准确率
    */
    @SerializedName("LongStructAccuracy")
    @Expose
    private String LongStructAccuracy;

    /**
    * 长文结构化召回率
    */
    @SerializedName("LongStructRecall")
    @Expose
    private String LongStructRecall;

    /**
    * 长文提取准确率
    */
    @SerializedName("LongContentAccuracy")
    @Expose
    private String LongContentAccuracy;

    /**
    * 长文提取召回率
    */
    @SerializedName("LongContentRecall")
    @Expose
    private String LongContentRecall;

    /**
     * Get 短文准确率 
     * @return ShortStructAccuracy 短文准确率
     */
    public String getShortStructAccuracy() {
        return this.ShortStructAccuracy;
    }

    /**
     * Set 短文准确率
     * @param ShortStructAccuracy 短文准确率
     */
    public void setShortStructAccuracy(String ShortStructAccuracy) {
        this.ShortStructAccuracy = ShortStructAccuracy;
    }

    /**
     * Get 短文召回率 
     * @return ShortStructRecall 短文召回率
     */
    public String getShortStructRecall() {
        return this.ShortStructRecall;
    }

    /**
     * Set 短文召回率
     * @param ShortStructRecall 短文召回率
     */
    public void setShortStructRecall(String ShortStructRecall) {
        this.ShortStructRecall = ShortStructRecall;
    }

    /**
     * Get 长文结构化准确率 
     * @return LongStructAccuracy 长文结构化准确率
     */
    public String getLongStructAccuracy() {
        return this.LongStructAccuracy;
    }

    /**
     * Set 长文结构化准确率
     * @param LongStructAccuracy 长文结构化准确率
     */
    public void setLongStructAccuracy(String LongStructAccuracy) {
        this.LongStructAccuracy = LongStructAccuracy;
    }

    /**
     * Get 长文结构化召回率 
     * @return LongStructRecall 长文结构化召回率
     */
    public String getLongStructRecall() {
        return this.LongStructRecall;
    }

    /**
     * Set 长文结构化召回率
     * @param LongStructRecall 长文结构化召回率
     */
    public void setLongStructRecall(String LongStructRecall) {
        this.LongStructRecall = LongStructRecall;
    }

    /**
     * Get 长文提取准确率 
     * @return LongContentAccuracy 长文提取准确率
     */
    public String getLongContentAccuracy() {
        return this.LongContentAccuracy;
    }

    /**
     * Set 长文提取准确率
     * @param LongContentAccuracy 长文提取准确率
     */
    public void setLongContentAccuracy(String LongContentAccuracy) {
        this.LongContentAccuracy = LongContentAccuracy;
    }

    /**
     * Get 长文提取召回率 
     * @return LongContentRecall 长文提取召回率
     */
    public String getLongContentRecall() {
        return this.LongContentRecall;
    }

    /**
     * Set 长文提取召回率
     * @param LongContentRecall 长文提取召回率
     */
    public void setLongContentRecall(String LongContentRecall) {
        this.LongContentRecall = LongContentRecall;
    }

    /**
     * Internal implementation, normal users should not use it.
     */
    public void toMap(HashMap map, String prefix) {
        this.setParamSimple(map, prefix + "ShortStructAccuracy", this.ShortStructAccuracy);
        this.setParamSimple(map, prefix + "ShortStructRecall", this.ShortStructRecall);
        this.setParamSimple(map, prefix + "LongStructAccuracy", this.LongStructAccuracy);
        this.setParamSimple(map, prefix + "LongStructRecall", this.LongStructRecall);
        this.setParamSimple(map, prefix + "LongContentAccuracy", this.LongContentAccuracy);
        this.setParamSimple(map, prefix + "LongContentRecall", this.LongContentRecall);

    }
}





© 2015 - 2025 Weber Informatics LLC | Privacy Policy