Class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1SchemaPredictInstanceTextExtractionPredictionInstance
- Inherits:
-
Object
- Object
- Google::Apis::AiplatformV1::GoogleCloudAiplatformV1SchemaPredictInstanceTextExtractionPredictionInstance
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/aiplatform_v1/classes.rb,
lib/google/apis/aiplatform_v1/representations.rb,
lib/google/apis/aiplatform_v1/representations.rb
Overview
Prediction input format for Text Extraction.
Instance Attribute Summary collapse
-
#content ⇒ String
The text snippet to make the predictions on.
-
#key ⇒ String
This field is only used for batch prediction.
-
#mime_type ⇒ String
The MIME type of the text snippet.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudAiplatformV1SchemaPredictInstanceTextExtractionPredictionInstance
constructor
A new instance of GoogleCloudAiplatformV1SchemaPredictInstanceTextExtractionPredictionInstance.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudAiplatformV1SchemaPredictInstanceTextExtractionPredictionInstance
Returns a new instance of GoogleCloudAiplatformV1SchemaPredictInstanceTextExtractionPredictionInstance.
23122 23123 23124 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 23122 def initialize(**args) update!(**args) end |
Instance Attribute Details
#content ⇒ String
The text snippet to make the predictions on.
Corresponds to the JSON property content
23105 23106 23107 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 23105 def content @content end |
#key ⇒ String
This field is only used for batch prediction. If a key is provided, the batch
prediction result will by mapped to this key. If omitted, then the batch
prediction result will contain the entire input instance. Vertex AI will not
check if keys in the request are duplicates, so it is up to the caller to
ensure the keys are unique.
Corresponds to the JSON property key
23114 23115 23116 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 23114 def key @key end |
#mime_type ⇒ String
The MIME type of the text snippet. The supported MIME types are listed below. -
text/plain
Corresponds to the JSON property mimeType
23120 23121 23122 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 23120 def mime_type @mime_type end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
23127 23128 23129 23130 23131 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 23127 def update!(**args) @content = args[:content] if args.key?(:content) @key = args[:key] if args.key?(:key) @mime_type = args[:mime_type] if args.key?(:mime_type) end |