Class: Google::Apis::DialogflowV2::GoogleCloudDialogflowV2EvaluationConfig
- Inherits:
-
Object
- Object
- Google::Apis::DialogflowV2::GoogleCloudDialogflowV2EvaluationConfig
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/dialogflow_v2/classes.rb,
lib/google/apis/dialogflow_v2/representations.rb,
lib/google/apis/dialogflow_v2/representations.rb
Overview
The configuration for model evaluation.
Instance Attribute Summary collapse
-
#datasets ⇒ Array<Google::Apis::DialogflowV2::GoogleCloudDialogflowV2InputDataset>
Required.
-
#smart_compose_config ⇒ Google::Apis::DialogflowV2::GoogleCloudDialogflowV2EvaluationConfigSmartComposeConfig
Smart compose specific configuration for evaluation job.
-
#smart_reply_config ⇒ Google::Apis::DialogflowV2::GoogleCloudDialogflowV2EvaluationConfigSmartReplyConfig
Smart reply specific configuration for evaluation job.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDialogflowV2EvaluationConfig
constructor
A new instance of GoogleCloudDialogflowV2EvaluationConfig.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDialogflowV2EvaluationConfig
Returns a new instance of GoogleCloudDialogflowV2EvaluationConfig.
9397 9398 9399 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 9397 def initialize(**args) update!(**args) end |
Instance Attribute Details
#datasets ⇒ Array<Google::Apis::DialogflowV2::GoogleCloudDialogflowV2InputDataset>
Required. Datasets used for evaluation.
Corresponds to the JSON property datasets
9385 9386 9387 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 9385 def datasets @datasets end |
#smart_compose_config ⇒ Google::Apis::DialogflowV2::GoogleCloudDialogflowV2EvaluationConfigSmartComposeConfig
Smart compose specific configuration for evaluation job.
Corresponds to the JSON property smartComposeConfig
9390 9391 9392 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 9390 def smart_compose_config @smart_compose_config end |
#smart_reply_config ⇒ Google::Apis::DialogflowV2::GoogleCloudDialogflowV2EvaluationConfigSmartReplyConfig
Smart reply specific configuration for evaluation job.
Corresponds to the JSON property smartReplyConfig
9395 9396 9397 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 9395 def smart_reply_config @smart_reply_config end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
9402 9403 9404 9405 9406 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 9402 def update!(**args) @datasets = args[:datasets] if args.key?(:datasets) @smart_compose_config = args[:smart_compose_config] if args.key?(:smart_compose_config) @smart_reply_config = args[:smart_reply_config] if args.key?(:smart_reply_config) end |