var File_google_cloud_aiplatform_v1beta1_schema_predict_instance_image_classification_proto protoreflect.FileDescriptor
var File_google_cloud_aiplatform_v1beta1_schema_predict_instance_image_object_detection_proto protoreflect.FileDescriptor
var File_google_cloud_aiplatform_v1beta1_schema_predict_instance_image_segmentation_proto protoreflect.FileDescriptor
var File_google_cloud_aiplatform_v1beta1_schema_predict_instance_text_classification_proto protoreflect.FileDescriptor
var File_google_cloud_aiplatform_v1beta1_schema_predict_instance_text_extraction_proto protoreflect.FileDescriptor
var File_google_cloud_aiplatform_v1beta1_schema_predict_instance_text_sentiment_proto protoreflect.FileDescriptor
var File_google_cloud_aiplatform_v1beta1_schema_predict_instance_video_action_recognition_proto protoreflect.FileDescriptor
var File_google_cloud_aiplatform_v1beta1_schema_predict_instance_video_classification_proto protoreflect.FileDescriptor
var File_google_cloud_aiplatform_v1beta1_schema_predict_instance_video_object_tracking_proto protoreflect.FileDescriptor
Prediction input format for Image Classification.
type ImageClassificationPredictionInstance struct { // The image bytes or Cloud Storage URI to make the prediction on. Content string `protobuf:"bytes,1,opt,name=content,proto3" json:"content,omitempty"` // The MIME type of the content of the image. Only the images in below listed // MIME types are supported. // - image/jpeg // - image/gif // - image/png // - image/webp // - image/bmp // - image/tiff // - image/vnd.microsoft.icon MimeType string `protobuf:"bytes,2,opt,name=mime_type,json=mimeType,proto3" json:"mime_type,omitempty"` // contains filtered or unexported fields }
func (*ImageClassificationPredictionInstance) Descriptor() ([]byte, []int)
Deprecated: Use ImageClassificationPredictionInstance.ProtoReflect.Descriptor instead.
func (x *ImageClassificationPredictionInstance) GetContent() string
func (x *ImageClassificationPredictionInstance) GetMimeType() string
func (*ImageClassificationPredictionInstance) ProtoMessage()
func (x *ImageClassificationPredictionInstance) ProtoReflect() protoreflect.Message
func (x *ImageClassificationPredictionInstance) Reset()
func (x *ImageClassificationPredictionInstance) String() string
Prediction input format for Image Object Detection.
type ImageObjectDetectionPredictionInstance struct { // The image bytes or Cloud Storage URI to make the prediction on. Content string `protobuf:"bytes,1,opt,name=content,proto3" json:"content,omitempty"` // The MIME type of the content of the image. Only the images in below listed // MIME types are supported. // - image/jpeg // - image/gif // - image/png // - image/webp // - image/bmp // - image/tiff // - image/vnd.microsoft.icon MimeType string `protobuf:"bytes,2,opt,name=mime_type,json=mimeType,proto3" json:"mime_type,omitempty"` // contains filtered or unexported fields }
func (*ImageObjectDetectionPredictionInstance) Descriptor() ([]byte, []int)
Deprecated: Use ImageObjectDetectionPredictionInstance.ProtoReflect.Descriptor instead.
func (x *ImageObjectDetectionPredictionInstance) GetContent() string
func (x *ImageObjectDetectionPredictionInstance) GetMimeType() string
func (*ImageObjectDetectionPredictionInstance) ProtoMessage()
func (x *ImageObjectDetectionPredictionInstance) ProtoReflect() protoreflect.Message
func (x *ImageObjectDetectionPredictionInstance) Reset()
func (x *ImageObjectDetectionPredictionInstance) String() string
Prediction input format for Image Segmentation.
type ImageSegmentationPredictionInstance struct { // The image bytes to make the predictions on. Content string `protobuf:"bytes,1,opt,name=content,proto3" json:"content,omitempty"` // The MIME type of the content of the image. Only the images in below listed // MIME types are supported. // - image/jpeg // - image/png MimeType string `protobuf:"bytes,2,opt,name=mime_type,json=mimeType,proto3" json:"mime_type,omitempty"` // contains filtered or unexported fields }
func (*ImageSegmentationPredictionInstance) Descriptor() ([]byte, []int)
Deprecated: Use ImageSegmentationPredictionInstance.ProtoReflect.Descriptor instead.
func (x *ImageSegmentationPredictionInstance) GetContent() string
func (x *ImageSegmentationPredictionInstance) GetMimeType() string
func (*ImageSegmentationPredictionInstance) ProtoMessage()
func (x *ImageSegmentationPredictionInstance) ProtoReflect() protoreflect.Message
func (x *ImageSegmentationPredictionInstance) Reset()
func (x *ImageSegmentationPredictionInstance) String() string
Prediction input format for Text Classification.
type TextClassificationPredictionInstance struct { // The text snippet to make the predictions on. Content string `protobuf:"bytes,1,opt,name=content,proto3" json:"content,omitempty"` // The MIME type of the text snippet. The supported MIME types are listed // below. // - text/plain MimeType string `protobuf:"bytes,2,opt,name=mime_type,json=mimeType,proto3" json:"mime_type,omitempty"` // contains filtered or unexported fields }
func (*TextClassificationPredictionInstance) Descriptor() ([]byte, []int)
Deprecated: Use TextClassificationPredictionInstance.ProtoReflect.Descriptor instead.
func (x *TextClassificationPredictionInstance) GetContent() string
func (x *TextClassificationPredictionInstance) GetMimeType() string
func (*TextClassificationPredictionInstance) ProtoMessage()
func (x *TextClassificationPredictionInstance) ProtoReflect() protoreflect.Message
func (x *TextClassificationPredictionInstance) Reset()
func (x *TextClassificationPredictionInstance) String() string
Prediction input format for Text Extraction.
type TextExtractionPredictionInstance struct { // The text snippet to make the predictions on. Content string `protobuf:"bytes,1,opt,name=content,proto3" json:"content,omitempty"` // The MIME type of the text snippet. The supported MIME types are listed // below. // - text/plain MimeType string `protobuf:"bytes,2,opt,name=mime_type,json=mimeType,proto3" json:"mime_type,omitempty"` // 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. Key string `protobuf:"bytes,3,opt,name=key,proto3" json:"key,omitempty"` // contains filtered or unexported fields }
func (*TextExtractionPredictionInstance) Descriptor() ([]byte, []int)
Deprecated: Use TextExtractionPredictionInstance.ProtoReflect.Descriptor instead.
func (x *TextExtractionPredictionInstance) GetContent() string
func (x *TextExtractionPredictionInstance) GetKey() string
func (x *TextExtractionPredictionInstance) GetMimeType() string
func (*TextExtractionPredictionInstance) ProtoMessage()
func (x *TextExtractionPredictionInstance) ProtoReflect() protoreflect.Message
func (x *TextExtractionPredictionInstance) Reset()
func (x *TextExtractionPredictionInstance) String() string
Prediction input format for Text Sentiment.
type TextSentimentPredictionInstance struct { // The text snippet to make the predictions on. Content string `protobuf:"bytes,1,opt,name=content,proto3" json:"content,omitempty"` // The MIME type of the text snippet. The supported MIME types are listed // below. // - text/plain MimeType string `protobuf:"bytes,2,opt,name=mime_type,json=mimeType,proto3" json:"mime_type,omitempty"` // contains filtered or unexported fields }
func (*TextSentimentPredictionInstance) Descriptor() ([]byte, []int)
Deprecated: Use TextSentimentPredictionInstance.ProtoReflect.Descriptor instead.
func (x *TextSentimentPredictionInstance) GetContent() string
func (x *TextSentimentPredictionInstance) GetMimeType() string
func (*TextSentimentPredictionInstance) ProtoMessage()
func (x *TextSentimentPredictionInstance) ProtoReflect() protoreflect.Message
func (x *TextSentimentPredictionInstance) Reset()
func (x *TextSentimentPredictionInstance) String() string
Prediction input format for Video Action Recognition.
type VideoActionRecognitionPredictionInstance struct { // The Google Cloud Storage location of the video on which to perform the // prediction. Content string `protobuf:"bytes,1,opt,name=content,proto3" json:"content,omitempty"` // The MIME type of the content of the video. Only the following are // supported: video/mp4 video/avi video/quicktime MimeType string `protobuf:"bytes,2,opt,name=mime_type,json=mimeType,proto3" json:"mime_type,omitempty"` // The beginning, inclusive, of the video's time segment on which to perform // the prediction. Expressed as a number of seconds as measured from the // start of the video, with "s" appended at the end. Fractions are allowed, // up to a microsecond precision. TimeSegmentStart string `protobuf:"bytes,3,opt,name=time_segment_start,json=timeSegmentStart,proto3" json:"time_segment_start,omitempty"` // The end, exclusive, of the video's time segment on which to perform // the prediction. Expressed as a number of seconds as measured from the // start of the video, with "s" appended at the end. Fractions are allowed, // up to a microsecond precision, and "inf" or "Infinity" is allowed, which // means the end of the video. TimeSegmentEnd string `protobuf:"bytes,4,opt,name=time_segment_end,json=timeSegmentEnd,proto3" json:"time_segment_end,omitempty"` // contains filtered or unexported fields }
func (*VideoActionRecognitionPredictionInstance) Descriptor() ([]byte, []int)
Deprecated: Use VideoActionRecognitionPredictionInstance.ProtoReflect.Descriptor instead.
func (x *VideoActionRecognitionPredictionInstance) GetContent() string
func (x *VideoActionRecognitionPredictionInstance) GetMimeType() string
func (x *VideoActionRecognitionPredictionInstance) GetTimeSegmentEnd() string
func (x *VideoActionRecognitionPredictionInstance) GetTimeSegmentStart() string
func (*VideoActionRecognitionPredictionInstance) ProtoMessage()
func (x *VideoActionRecognitionPredictionInstance) ProtoReflect() protoreflect.Message
func (x *VideoActionRecognitionPredictionInstance) Reset()
func (x *VideoActionRecognitionPredictionInstance) String() string
Prediction input format for Video Classification.
type VideoClassificationPredictionInstance struct { // The Google Cloud Storage location of the video on which to perform the // prediction. Content string `protobuf:"bytes,1,opt,name=content,proto3" json:"content,omitempty"` // The MIME type of the content of the video. Only the following are // supported: video/mp4 video/avi video/quicktime MimeType string `protobuf:"bytes,2,opt,name=mime_type,json=mimeType,proto3" json:"mime_type,omitempty"` // The beginning, inclusive, of the video's time segment on which to perform // the prediction. Expressed as a number of seconds as measured from the // start of the video, with "s" appended at the end. Fractions are allowed, // up to a microsecond precision. TimeSegmentStart string `protobuf:"bytes,3,opt,name=time_segment_start,json=timeSegmentStart,proto3" json:"time_segment_start,omitempty"` // The end, exclusive, of the video's time segment on which to perform // the prediction. Expressed as a number of seconds as measured from the // start of the video, with "s" appended at the end. Fractions are allowed, // up to a microsecond precision, and "inf" or "Infinity" is allowed, which // means the end of the video. TimeSegmentEnd string `protobuf:"bytes,4,opt,name=time_segment_end,json=timeSegmentEnd,proto3" json:"time_segment_end,omitempty"` // contains filtered or unexported fields }
func (*VideoClassificationPredictionInstance) Descriptor() ([]byte, []int)
Deprecated: Use VideoClassificationPredictionInstance.ProtoReflect.Descriptor instead.
func (x *VideoClassificationPredictionInstance) GetContent() string
func (x *VideoClassificationPredictionInstance) GetMimeType() string
func (x *VideoClassificationPredictionInstance) GetTimeSegmentEnd() string
func (x *VideoClassificationPredictionInstance) GetTimeSegmentStart() string
func (*VideoClassificationPredictionInstance) ProtoMessage()
func (x *VideoClassificationPredictionInstance) ProtoReflect() protoreflect.Message
func (x *VideoClassificationPredictionInstance) Reset()
func (x *VideoClassificationPredictionInstance) String() string
Prediction input format for Video Object Tracking.
type VideoObjectTrackingPredictionInstance struct { // The Google Cloud Storage location of the video on which to perform the // prediction. Content string `protobuf:"bytes,1,opt,name=content,proto3" json:"content,omitempty"` // The MIME type of the content of the video. Only the following are // supported: video/mp4 video/avi video/quicktime MimeType string `protobuf:"bytes,2,opt,name=mime_type,json=mimeType,proto3" json:"mime_type,omitempty"` // The beginning, inclusive, of the video's time segment on which to perform // the prediction. Expressed as a number of seconds as measured from the // start of the video, with "s" appended at the end. Fractions are allowed, // up to a microsecond precision. TimeSegmentStart string `protobuf:"bytes,3,opt,name=time_segment_start,json=timeSegmentStart,proto3" json:"time_segment_start,omitempty"` // The end, exclusive, of the video's time segment on which to perform // the prediction. Expressed as a number of seconds as measured from the // start of the video, with "s" appended at the end. Fractions are allowed, // up to a microsecond precision, and "inf" or "Infinity" is allowed, which // means the end of the video. TimeSegmentEnd string `protobuf:"bytes,4,opt,name=time_segment_end,json=timeSegmentEnd,proto3" json:"time_segment_end,omitempty"` // contains filtered or unexported fields }
func (*VideoObjectTrackingPredictionInstance) Descriptor() ([]byte, []int)
Deprecated: Use VideoObjectTrackingPredictionInstance.ProtoReflect.Descriptor instead.
func (x *VideoObjectTrackingPredictionInstance) GetContent() string
func (x *VideoObjectTrackingPredictionInstance) GetMimeType() string
func (x *VideoObjectTrackingPredictionInstance) GetTimeSegmentEnd() string
func (x *VideoObjectTrackingPredictionInstance) GetTimeSegmentStart() string
func (*VideoObjectTrackingPredictionInstance) ProtoMessage()
func (x *VideoObjectTrackingPredictionInstance) ProtoReflect() protoreflect.Message
func (x *VideoObjectTrackingPredictionInstance) Reset()
func (x *VideoObjectTrackingPredictionInstance) String() string