Class: Google::Apis::TranslateV3::Model
- Inherits:
-
Object
- Object
- Google::Apis::TranslateV3::Model
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/translate_v3/classes.rb,
lib/google/apis/translate_v3/representations.rb,
lib/google/apis/translate_v3/representations.rb more...
Overview
A trained translation model.
Instance Attribute Summary collapse
-
#create_time ⇒ String
Output only.
-
#dataset ⇒ String
The dataset from which the model is trained, in form of
projects/
project- number-or-id/locations/
location_id/datasets/
dataset_id`Corresponds to the JSON property
dataset`. -
#display_name ⇒ String
The name of the model to show in the interface.
-
#name ⇒ String
The resource name of the model, in form of
projects/
project-number-or-id/ locations/
location_id/models/
model_id`Corresponds to the JSON property
name`. -
#source_language_code ⇒ String
Output only.
-
#target_language_code ⇒ String
Output only.
-
#test_example_count ⇒ Fixnum
Output only.
-
#train_example_count ⇒ Fixnum
Output only.
-
#update_time ⇒ String
Output only.
-
#validate_example_count ⇒ Fixnum
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Model
constructor
A new instance of Model.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ Model
Returns a new instance of Model.
1741 1742 1743 |
# File 'lib/google/apis/translate_v3/classes.rb', line 1741 def initialize(**args) update!(**args) end |
Instance Attribute Details
#create_time ⇒ String
Output only. Timestamp when the model resource was created, which is also when
the training started.
Corresponds to the JSON property createTime
1690 1691 1692 |
# File 'lib/google/apis/translate_v3/classes.rb', line 1690 def create_time @create_time end |
#dataset ⇒ String
The dataset from which the model is trained, in form of projects/
project-
number-or-id/locations/
location_id/datasets/
dataset_id`
Corresponds to the JSON property
dataset`
1696 1697 1698 |
# File 'lib/google/apis/translate_v3/classes.rb', line 1696 def dataset @dataset end |
#display_name ⇒ String
The name of the model to show in the interface. The name can be up to 32
characters long and can consist only of ASCII Latin letters A-Z and a-z,
underscores (_), and ASCII digits 0-9.
Corresponds to the JSON property displayName
1703 1704 1705 |
# File 'lib/google/apis/translate_v3/classes.rb', line 1703 def display_name @display_name end |
#name ⇒ String
The resource name of the model, in form of projects/
project-number-or-id/
locations/
location_id/models/
model_id`
Corresponds to the JSON property
name`
1709 1710 1711 |
# File 'lib/google/apis/translate_v3/classes.rb', line 1709 def name @name end |
#source_language_code ⇒ String
Output only. The BCP-47 language code of the source language.
Corresponds to the JSON property sourceLanguageCode
1714 1715 1716 |
# File 'lib/google/apis/translate_v3/classes.rb', line 1714 def source_language_code @source_language_code end |
#target_language_code ⇒ String
Output only. The BCP-47 language code of the target language.
Corresponds to the JSON property targetLanguageCode
1719 1720 1721 |
# File 'lib/google/apis/translate_v3/classes.rb', line 1719 def target_language_code @target_language_code end |
#test_example_count ⇒ Fixnum
Output only. Number of examples (sentence pairs) used to test the model.
Corresponds to the JSON property testExampleCount
1724 1725 1726 |
# File 'lib/google/apis/translate_v3/classes.rb', line 1724 def test_example_count @test_example_count end |
#train_example_count ⇒ Fixnum
Output only. Number of examples (sentence pairs) used to train the model.
Corresponds to the JSON property trainExampleCount
1729 1730 1731 |
# File 'lib/google/apis/translate_v3/classes.rb', line 1729 def train_example_count @train_example_count end |
#update_time ⇒ String
Output only. Timestamp when this model was last updated.
Corresponds to the JSON property updateTime
1734 1735 1736 |
# File 'lib/google/apis/translate_v3/classes.rb', line 1734 def update_time @update_time end |
#validate_example_count ⇒ Fixnum
Output only. Number of examples (sentence pairs) used to validate the model.
Corresponds to the JSON property validateExampleCount
1739 1740 1741 |
# File 'lib/google/apis/translate_v3/classes.rb', line 1739 def validate_example_count @validate_example_count end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 |
# File 'lib/google/apis/translate_v3/classes.rb', line 1746 def update!(**args) @create_time = args[:create_time] if args.key?(:create_time) @dataset = args[:dataset] if args.key?(:dataset) @display_name = args[:display_name] if args.key?(:display_name) @name = args[:name] if args.key?(:name) @source_language_code = args[:source_language_code] if args.key?(:source_language_code) @target_language_code = args[:target_language_code] if args.key?(:target_language_code) @test_example_count = args[:test_example_count] if args.key?(:test_example_count) @train_example_count = args[:train_example_count] if args.key?(:train_example_count) @update_time = args[:update_time] if args.key?(:update_time) @validate_example_count = args[:validate_example_count] if args.key?(:validate_example_count) end |