Search Results for

    Show / Hide Table of Contents

    Class TranslationQualityEstimation

    Model for persisting TQE(Translation Quality Estimation) information

    Inheritance
    object
    TranslationQualityEstimation
    Inherited Members
    object.GetType()
    object.MemberwiseClone()
    object.ToString()
    object.Equals(object, object)
    object.ReferenceEquals(object, object)
    Namespace: Sdl.Core.Bcm.BcmModel
    Assembly: Sdl.Core.Bcm.BcmModel.dll
    Syntax
    [DataContract]
    public class TranslationQualityEstimation

    Constructors

    TranslationQualityEstimation()

    Declaration
    public TranslationQualityEstimation()

    Properties

    Description

    Stores a description which is generated by the system generating the TQE data

    Declaration
    [DataMember(Name = "description", IsRequired = false)]
    public string Description { get; set; }
    Property Value
    Type Description
    string

    EvaluatedAt

    Stores the UTC date and time when the evaluation took place

    Declaration
    [DataMember(Name = "evaluatedAt", IsRequired = true)]
    [JsonConverter(typeof(DateTimeConverter))]
    public DateTime EvaluatedAt { get; set; }
    Property Value
    Type Description
    DateTime

    Model

    Stores the model used for the estimation, - e.g. daVinci, bedrock

    Declaration
    [DataMember(Name = "model", IsRequired = true)]
    public string Model { get; set; }
    Property Value
    Type Description
    string

    Score

    Stores the score of this estimation (0-100)

    Declaration
    [DataMember(Name = "score", IsRequired = true)]
    public int Score { get; set; }
    Property Value
    Type Description
    int

    System

    Stores the system which originated this data - e.g. lw-evolve

    Declaration
    [DataMember(Name = "system", IsRequired = true)]
    public string System { get; set; }
    Property Value
    Type Description
    string

    Methods

    Equals(object)

    Equals override

    Declaration
    public override bool Equals(object obj)
    Parameters
    Type Name Description
    object obj
    Returns
    Type Description
    bool
    Overrides
    object.Equals(object)

    GetHashCode()

    GetHashCodd override

    Declaration
    public override int GetHashCode()
    Returns
    Type Description
    int
    Overrides
    object.GetHashCode()
    In this article
    Back to top Generated by DocFX