Class: Google::Cloud::AIPlatform::V1::Examples::ExampleGcsSource

Inherits:
Object
  • Object
show all
Extended by:
Protobuf::MessageExts::ClassMethods
Includes:
Protobuf::MessageExts
Defined in:
proto_docs/google/cloud/aiplatform/v1/explanation.rb

Overview

The Cloud Storage input instances.

Defined Under Namespace

Modules: DataFormat

Instance Attribute Summary collapse

Instance Attribute Details

#data_format::Google::Cloud::AIPlatform::V1::Examples::ExampleGcsSource::DataFormat

Returns The format in which instances are given, if not specified, assume it's JSONL format. Currently only JSONL format is supported.

Returns:



482
483
484
485
486
487
488
489
490
491
492
493
494
# File 'proto_docs/google/cloud/aiplatform/v1/explanation.rb', line 482

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

  # The format of the input example instances.
  module DataFormat
    # Format unspecified, used when unset.
    DATA_FORMAT_UNSPECIFIED = 0

    # Examples are stored in JSONL files.
    JSONL = 1
  end
end

#gcs_source::Google::Cloud::AIPlatform::V1::GcsSource

Returns The Cloud Storage location for the input instances.

Returns:



482
483
484
485
486
487
488
489
490
491
492
493
494
# File 'proto_docs/google/cloud/aiplatform/v1/explanation.rb', line 482

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

  # The format of the input example instances.
  module DataFormat
    # Format unspecified, used when unset.
    DATA_FORMAT_UNSPECIFIED = 0

    # Examples are stored in JSONL files.
    JSONL = 1
  end
end