Class: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaTrainCustomModelRequest

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/discoveryengine_v1alpha/classes.rb,
lib/google/apis/discoveryengine_v1alpha/representations.rb,
lib/google/apis/discoveryengine_v1alpha/representations.rb

Overview

Request message for SearchTuningService.TrainCustomModel method.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudDiscoveryengineV1alphaTrainCustomModelRequest

Returns a new instance of GoogleCloudDiscoveryengineV1alphaTrainCustomModelRequest.



7068
7069
7070
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 7068

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#error_configGoogle::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaImportErrorConfig

Configuration of destination for Import related errors. Corresponds to the JSON property errorConfig



7055
7056
7057
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 7055

def error_config
  @error_config
end

#gcs_training_inputGoogle::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaTrainCustomModelRequestGcsTrainingInput

Cloud Storage training data input. Corresponds to the JSON property gcsTrainingInput



7060
7061
7062
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 7060

def gcs_training_input
  @gcs_training_input
end

#model_typeString

Model to be trained. Supported values are: * search-tuning: Fine tuning the search system based on data provided. Corresponds to the JSON property modelType

Returns:

  • (String)


7066
7067
7068
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 7066

def model_type
  @model_type
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



7073
7074
7075
7076
7077
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 7073

def update!(**args)
  @error_config = args[:error_config] if args.key?(:error_config)
  @gcs_training_input = args[:gcs_training_input] if args.key?(:gcs_training_input)
  @model_type = args[:model_type] if args.key?(:model_type)
end