Class: Google::Apis::LanguageV1beta2::XpsSpeechEvaluationMetricsSubModelEvaluationMetric

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ XpsSpeechEvaluationMetricsSubModelEvaluationMetric

Returns a new instance of XpsSpeechEvaluationMetricsSubModelEvaluationMetric.



3508
3509
3510
# File 'lib/google/apis/language_v1beta2/classes.rb', line 3508

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

Instance Attribute Details

#biasing_model_typeString

Type of the biasing model. Corresponds to the JSON property biasingModelType

Returns:

  • (String)


3465
3466
3467
# File 'lib/google/apis/language_v1beta2/classes.rb', line 3465

def biasing_model_type
  @biasing_model_type
end

#is_enhanced_modelBoolean Also known as: is_enhanced_model?

If true then it means we have an enhanced version of the biasing models. Corresponds to the JSON property isEnhancedModel

Returns:

  • (Boolean)


3470
3471
3472
# File 'lib/google/apis/language_v1beta2/classes.rb', line 3470

def is_enhanced_model
  @is_enhanced_model
end

#num_deletionsFixnum

Corresponds to the JSON property numDeletions

Returns:

  • (Fixnum)


3476
3477
3478
# File 'lib/google/apis/language_v1beta2/classes.rb', line 3476

def num_deletions
  @num_deletions
end

#num_insertionsFixnum

Corresponds to the JSON property numInsertions

Returns:

  • (Fixnum)


3481
3482
3483
# File 'lib/google/apis/language_v1beta2/classes.rb', line 3481

def num_insertions
  @num_insertions
end

#num_substitutionsFixnum

Corresponds to the JSON property numSubstitutions

Returns:

  • (Fixnum)


3486
3487
3488
# File 'lib/google/apis/language_v1beta2/classes.rb', line 3486

def num_substitutions
  @num_substitutions
end

#num_utterancesFixnum

Number of utterances used in the wer computation. Corresponds to the JSON property numUtterances

Returns:

  • (Fixnum)


3491
3492
3493
# File 'lib/google/apis/language_v1beta2/classes.rb', line 3491

def num_utterances
  @num_utterances
end

#num_wordsFixnum

Number of words over which the word error rate was computed. Corresponds to the JSON property numWords

Returns:

  • (Fixnum)


3496
3497
3498
# File 'lib/google/apis/language_v1beta2/classes.rb', line 3496

def num_words
  @num_words
end

#sentence_accuracyFloat

Below fields are used for debugging purposes Corresponds to the JSON property sentenceAccuracy

Returns:

  • (Float)


3501
3502
3503
# File 'lib/google/apis/language_v1beta2/classes.rb', line 3501

def sentence_accuracy
  @sentence_accuracy
end

#werFloat

Word error rate (standard error metric used for speech recognition). Corresponds to the JSON property wer

Returns:

  • (Float)


3506
3507
3508
# File 'lib/google/apis/language_v1beta2/classes.rb', line 3506

def wer
  @wer
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
# File 'lib/google/apis/language_v1beta2/classes.rb', line 3513

def update!(**args)
  @biasing_model_type = args[:biasing_model_type] if args.key?(:biasing_model_type)
  @is_enhanced_model = args[:is_enhanced_model] if args.key?(:is_enhanced_model)
  @num_deletions = args[:num_deletions] if args.key?(:num_deletions)
  @num_insertions = args[:num_insertions] if args.key?(:num_insertions)
  @num_substitutions = args[:num_substitutions] if args.key?(:num_substitutions)
  @num_utterances = args[:num_utterances] if args.key?(:num_utterances)
  @num_words = args[:num_words] if args.key?(:num_words)
  @sentence_accuracy = args[:sentence_accuracy] if args.key?(:sentence_accuracy)
  @wer = args[:wer] if args.key?(:wer)
end