Class: Google::Apis::LanguageV2::XpsSpeechModelSpec

Inherits:
Object
  • Object
show all
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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ XpsSpeechModelSpec

Returns a new instance of XpsSpeechModelSpec.



3240
3241
3242
# File 'lib/google/apis/language_v2/classes.rb', line 3240

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

Instance Attribute Details

#dataset_idFixnum

Required for speech xps backend. Speech xps has to use dataset_id and model_id as the primary key in db so that speech API can query the db directly. Corresponds to the JSON property datasetId

Returns:

  • (Fixnum)


3228
3229
3230
# File 'lib/google/apis/language_v2/classes.rb', line 3228

def dataset_id
  @dataset_id
end

#languageString

Corresponds to the JSON property language

Returns:

  • (String)


3233
3234
3235
# File 'lib/google/apis/language_v2/classes.rb', line 3233

def language
  @language
end

#sub_model_specsArray<Google::Apis::LanguageV2::XpsSpeechModelSpecSubModelSpec>

Model specs for all submodels contained in this model. Corresponds to the JSON property subModelSpecs



3238
3239
3240
# File 'lib/google/apis/language_v2/classes.rb', line 3238

def sub_model_specs
  @sub_model_specs
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3245
3246
3247
3248
3249
# File 'lib/google/apis/language_v2/classes.rb', line 3245

def update!(**args)
  @dataset_id = args[:dataset_id] if args.key?(:dataset_id)
  @language = args[:language] if args.key?(:language)
  @sub_model_specs = args[:sub_model_specs] if args.key?(:sub_model_specs)
end