Class: Google::Apis::LanguageV2::XpsTranslationEvaluationMetrics
- Inherits:
-
Object
- Object
- Google::Apis::LanguageV2::XpsTranslationEvaluationMetrics
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/language_v2/classes.rb,
lib/google/apis/language_v2/representations.rb,
lib/google/apis/language_v2/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.
4567 4568 4569 |
# File 'lib/google/apis/language_v2/classes.rb', line 4567 def initialize(**args) update!(**args) end |
Instance Attribute Details
#base_bleu_score ⇒ Float
BLEU score for base model.
Corresponds to the JSON property baseBleuScore
4560 4561 4562 |
# File 'lib/google/apis/language_v2/classes.rb', line 4560 def base_bleu_score @base_bleu_score end |
#bleu_score ⇒ Float
BLEU score.
Corresponds to the JSON property bleuScore
4565 4566 4567 |
# File 'lib/google/apis/language_v2/classes.rb', line 4565 def bleu_score @bleu_score end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
4572 4573 4574 4575 |
# File 'lib/google/apis/language_v2/classes.rb', line 4572 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 |