Class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1RougeSpec
- Inherits:
-
Object
- Object
- Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1RougeSpec
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/aiplatform_v1beta1/classes.rb,
lib/google/apis/aiplatform_v1beta1/representations.rb,
lib/google/apis/aiplatform_v1beta1/representations.rb
Overview
Spec for rouge score metric - calculates the recall of n-grams in prediction as compared to reference - returns a score ranging between 0 and 1.
Instance Attribute Summary collapse
-
#rouge_type ⇒ String
Optional.
-
#split_summaries ⇒ Boolean
(also: #split_summaries?)
Optional.
-
#use_stemmer ⇒ Boolean
(also: #use_stemmer?)
Optional.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1RougeSpec
constructor
A new instance of GoogleCloudAiplatformV1beta1RougeSpec.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1RougeSpec
Returns a new instance of GoogleCloudAiplatformV1beta1RougeSpec.
24149 24150 24151 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 24149 def initialize(**args) update!(**args) end |
Instance Attribute Details
#rouge_type ⇒ String
Optional. Supported rouge types are rougen[1-9], rougeL, and rougeLsum.
Corresponds to the JSON property rougeType
24135 24136 24137 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 24135 def rouge_type @rouge_type end |
#split_summaries ⇒ Boolean Also known as: split_summaries?
Optional. Whether to split summaries while using rougeLsum.
Corresponds to the JSON property splitSummaries
24140 24141 24142 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 24140 def split_summaries @split_summaries end |
#use_stemmer ⇒ Boolean Also known as: use_stemmer?
Optional. Whether to use stemmer to compute rouge score.
Corresponds to the JSON property useStemmer
24146 24147 24148 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 24146 def use_stemmer @use_stemmer end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
24154 24155 24156 24157 24158 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 24154 def update!(**args) @rouge_type = args[:rouge_type] if args.key?(:rouge_type) @split_summaries = args[:split_summaries] if args.key?(:split_summaries) @use_stemmer = args[:use_stemmer] if args.key?(:use_stemmer) end |