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.
498 499 500 501 502 503 504 505 506 507 508 509 510 |
# File 'proto_docs/google/cloud/aiplatform/v1/explanation.rb', line 498 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.
498 499 500 501 502 503 504 505 506 507 508 509 510 |
# File 'proto_docs/google/cloud/aiplatform/v1/explanation.rb', line 498 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 |