Class: Google::Apis::LanguageV1beta2::XpsTranslationEvaluationMetrics
- Inherits:
-
Object
- Object
- Google::Apis::LanguageV1beta2::XpsTranslationEvaluationMetrics
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/language_v1beta2/classes.rb,
lib/google/apis/language_v1beta2/representations.rb,
lib/google/apis/language_v1beta2/representations.rb
Overview
Evaluation metrics for the dataset.
Instance Attribute Summary collapse
-
#base_bleu_score ⇒ Float
BLEU score for base model.
-
#bleu_score ⇒ Float
BLEU score.
Instance Method Summary collapse
-
#initialize(**args) ⇒ XpsTranslationEvaluationMetrics
constructor
A new instance of XpsTranslationEvaluationMetrics.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ XpsTranslationEvaluationMetrics
Returns a new instance of XpsTranslationEvaluationMetrics.
4887 4888 4889 |
# File 'lib/google/apis/language_v1beta2/classes.rb', line 4887 def initialize(**args) update!(**args) end |
Instance Attribute Details
#base_bleu_score ⇒ Float
BLEU score for base model.
Corresponds to the JSON property baseBleuScore
4880 4881 4882 |
# File 'lib/google/apis/language_v1beta2/classes.rb', line 4880 def base_bleu_score @base_bleu_score end |
#bleu_score ⇒ Float
BLEU score.
Corresponds to the JSON property bleuScore
4885 4886 4887 |
# File 'lib/google/apis/language_v1beta2/classes.rb', line 4885 def bleu_score @bleu_score end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
4892 4893 4894 4895 |
# File 'lib/google/apis/language_v1beta2/classes.rb', line 4892 def update!(**args) @base_bleu_score = args[:base_bleu_score] if args.key?(:base_bleu_score) @bleu_score = args[:bleu_score] if args.key?(:bleu_score) end |