Class: Google::Cloud::AIPlatform::V1::Examples::ExampleGcsSource
- Inherits:
-
Object
- Object
- Google::Cloud::AIPlatform::V1::Examples::ExampleGcsSource
- 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
-
#data_format ⇒ ::Google::Cloud::AIPlatform::V1::Examples::ExampleGcsSource::DataFormat
The format in which instances are given, if not specified, assume it's JSONL format.
-
#gcs_source ⇒ ::Google::Cloud::AIPlatform::V1::GcsSource
The Cloud Storage location for the input instances.
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.
474 475 476 477 478 479 480 481 482 483 484 485 486 |
# File 'proto_docs/google/cloud/aiplatform/v1/explanation.rb', line 474 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.
474 475 476 477 478 479 480 481 482 483 484 485 486 |
# File 'proto_docs/google/cloud/aiplatform/v1/explanation.rb', line 474 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 |