|
| 1 | +# -*- coding: utf-8 -*- |
| 2 | + |
| 3 | +# Copyright 2020 Google LLC |
| 4 | +# |
| 5 | +# Licensed under the Apache License, Version 2.0 (the "License"); |
| 6 | +# you may not use this file except in compliance with the License. |
| 7 | +# You may obtain a copy of the License at |
| 8 | +# |
| 9 | +# http://www.apache.org/licenses/LICENSE-2.0 |
| 10 | +# |
| 11 | +# Unless required by applicable law or agreed to in writing, software |
| 12 | +# distributed under the License is distributed on an "AS IS" BASIS, |
| 13 | +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 14 | +# See the License for the specific language governing permissions and |
| 15 | +# limitations under the License. |
| 16 | +# |
| 17 | + |
| 18 | +from google.cloud.aiplatform.v1beta1.schema.predict.instance_v1beta1.types.image_classification import ( |
| 19 | + ImageClassificationPredictionInstance, |
| 20 | +) |
| 21 | +from google.cloud.aiplatform.v1beta1.schema.predict.instance_v1beta1.types.image_object_detection import ( |
| 22 | + ImageObjectDetectionPredictionInstance, |
| 23 | +) |
| 24 | +from google.cloud.aiplatform.v1beta1.schema.predict.instance_v1beta1.types.image_segmentation import ( |
| 25 | + ImageSegmentationPredictionInstance, |
| 26 | +) |
| 27 | +from google.cloud.aiplatform.v1beta1.schema.predict.instance_v1beta1.types.text_classification import ( |
| 28 | + TextClassificationPredictionInstance, |
| 29 | +) |
| 30 | +from google.cloud.aiplatform.v1beta1.schema.predict.instance_v1beta1.types.text_extraction import ( |
| 31 | + TextExtractionPredictionInstance, |
| 32 | +) |
| 33 | +from google.cloud.aiplatform.v1beta1.schema.predict.instance_v1beta1.types.text_sentiment import ( |
| 34 | + TextSentimentPredictionInstance, |
| 35 | +) |
| 36 | +from google.cloud.aiplatform.v1beta1.schema.predict.instance_v1beta1.types.video_action_recognition import ( |
| 37 | + VideoActionRecognitionPredictionInstance, |
| 38 | +) |
| 39 | +from google.cloud.aiplatform.v1beta1.schema.predict.instance_v1beta1.types.video_classification import ( |
| 40 | + VideoClassificationPredictionInstance, |
| 41 | +) |
| 42 | +from google.cloud.aiplatform.v1beta1.schema.predict.instance_v1beta1.types.video_object_tracking import ( |
| 43 | + VideoObjectTrackingPredictionInstance, |
| 44 | +) |
| 45 | + |
| 46 | +__all__ = ( |
| 47 | + "ImageClassificationPredictionInstance", |
| 48 | + "ImageObjectDetectionPredictionInstance", |
| 49 | + "ImageSegmentationPredictionInstance", |
| 50 | + "TextClassificationPredictionInstance", |
| 51 | + "TextExtractionPredictionInstance", |
| 52 | + "TextSentimentPredictionInstance", |
| 53 | + "VideoActionRecognitionPredictionInstance", |
| 54 | + "VideoClassificationPredictionInstance", |
| 55 | + "VideoObjectTrackingPredictionInstance", |
| 56 | +) |
0 commit comments