Class: Google::Cloud::Translate::V3::DatasetInputConfig

Inherits:
Object
  • Object
show all
Extended by:
Protobuf::MessageExts::ClassMethods
Includes:
Protobuf::MessageExts
Defined in:
proto_docs/google/cloud/translate/v3/automl_translation.rb

Overview

Input configuration for datasets.

Defined Under Namespace

Classes: InputFile

Instance Attribute Summary collapse

Instance Attribute Details

#input_files::Array<::Google::Cloud::Translate::V3::DatasetInputConfig::InputFile>

Returns Files containing the sentence pairs to be imported to the dataset.

Returns:



41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
# File 'proto_docs/google/cloud/translate/v3/automl_translation.rb', line 41

class DatasetInputConfig
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # An input file.
  # @!attribute [rw] usage
  #   @return [::String]
  #     Optional. Usage of the file contents. Options are TRAIN|VALIDATION|TEST,
  #     or UNASSIGNED (by default) for auto split.
  # @!attribute [rw] gcs_source
  #   @return [::Google::Cloud::Translate::V3::GcsInputSource]
  #     Google Cloud Storage file source.
  class InputFile
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end
end