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.



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

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)


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

def dataset_id
  @dataset_id
end

#languageString

Corresponds to the JSON property language

Returns:

  • (String)


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

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



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

def sub_model_specs
  @sub_model_specs
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



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

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