Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -1666,8 +1666,7 @@ public void deleteModel(
* (as e.g. changing
* [node_number][google.cloud.automl.v1beta1.ImageObjectDetectionModelDeploymentMetadata.node_number])
* will reset the deployment state without pausing the model's availability.
* Only applicable for Text Classification, Image Object Detection and Tables;
* all other domains manage deployment automatically.
* Only applicable for Text Classification, Image Object Detection and Tables; all other domains manage deployment automatically.
* Returns an empty response in the
* [response][google.longrunning.Operation.response] field when it completes.
* </pre>
Expand Down Expand Up @@ -2276,8 +2275,7 @@ public void deleteModel(
* (as e.g. changing
* [node_number][google.cloud.automl.v1beta1.ImageObjectDetectionModelDeploymentMetadata.node_number])
* will reset the deployment state without pausing the model's availability.
* Only applicable for Text Classification, Image Object Detection and Tables;
* all other domains manage deployment automatically.
* Only applicable for Text Classification, Image Object Detection and Tables; all other domains manage deployment automatically.
* Returns an empty response in the
* [response][google.longrunning.Operation.response] field when it completes.
* </pre>
Expand Down Expand Up @@ -2687,8 +2685,7 @@ public com.google.longrunning.Operation deleteModel(
* (as e.g. changing
* [node_number][google.cloud.automl.v1beta1.ImageObjectDetectionModelDeploymentMetadata.node_number])
* will reset the deployment state without pausing the model's availability.
* Only applicable for Text Classification, Image Object Detection and Tables;
* all other domains manage deployment automatically.
* Only applicable for Text Classification, Image Object Detection and Tables; all other domains manage deployment automatically.
* Returns an empty response in the
* [response][google.longrunning.Operation.response] field when it completes.
* </pre>
Expand Down Expand Up @@ -3090,8 +3087,7 @@ protected AutoMlFutureStub build(io.grpc.Channel channel, io.grpc.CallOptions ca
* (as e.g. changing
* [node_number][google.cloud.automl.v1beta1.ImageObjectDetectionModelDeploymentMetadata.node_number])
* will reset the deployment state without pausing the model's availability.
* Only applicable for Text Classification, Image Object Detection and Tables;
* all other domains manage deployment automatically.
* Only applicable for Text Classification, Image Object Detection and Tables; all other domains manage deployment automatically.
* Returns an empty response in the
* [response][google.longrunning.Operation.response] field when it completes.
* </pre>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -183,6 +183,8 @@ public abstract static class PredictionServiceImplBase implements io.grpc.Bindab
* * Tables - Row, with column values matching the columns of the model,
* up to 5MB. Not available for FORECASTING
* [prediction_type][google.cloud.automl.v1beta1.TablesModelMetadata.prediction_type].
* * Text Sentiment - TextSnippet, content up 500 characters, UTF-8
* encoded.
* </pre>
*/
public void predict(
Expand All @@ -203,9 +205,10 @@ public void predict(
* method. Once the operation is done, [BatchPredictResult][google.cloud.automl.v1beta1.BatchPredictResult] is returned in
* the [response][google.longrunning.Operation.response] field.
* Available for following ML problems:
* * Image Classification
* * Image Object Detection
* * Video Classification
* * Video Object Tracking
* * Text Extraction
* * Video Object Tracking * Text Extraction
* * Tables
* </pre>
*/
Expand Down Expand Up @@ -279,6 +282,8 @@ protected PredictionServiceStub build(
* * Tables - Row, with column values matching the columns of the model,
* up to 5MB. Not available for FORECASTING
* [prediction_type][google.cloud.automl.v1beta1.TablesModelMetadata.prediction_type].
* * Text Sentiment - TextSnippet, content up 500 characters, UTF-8
* encoded.
* </pre>
*/
public void predict(
Expand All @@ -302,9 +307,10 @@ public void predict(
* method. Once the operation is done, [BatchPredictResult][google.cloud.automl.v1beta1.BatchPredictResult] is returned in
* the [response][google.longrunning.Operation.response] field.
* Available for following ML problems:
* * Image Classification
* * Image Object Detection
* * Video Classification
* * Video Object Tracking
* * Text Extraction
* * Video Object Tracking * Text Extraction
* * Tables
* </pre>
*/
Expand Down Expand Up @@ -364,6 +370,8 @@ protected PredictionServiceBlockingStub build(
* * Tables - Row, with column values matching the columns of the model,
* up to 5MB. Not available for FORECASTING
* [prediction_type][google.cloud.automl.v1beta1.TablesModelMetadata.prediction_type].
* * Text Sentiment - TextSnippet, content up 500 characters, UTF-8
* encoded.
* </pre>
*/
public com.google.cloud.automl.v1beta1.PredictResponse predict(
Expand All @@ -382,9 +390,10 @@ public com.google.cloud.automl.v1beta1.PredictResponse predict(
* method. Once the operation is done, [BatchPredictResult][google.cloud.automl.v1beta1.BatchPredictResult] is returned in
* the [response][google.longrunning.Operation.response] field.
* Available for following ML problems:
* * Image Classification
* * Image Object Detection
* * Video Classification
* * Video Object Tracking
* * Text Extraction
* * Video Object Tracking * Text Extraction
* * Tables
* </pre>
*/
Expand Down Expand Up @@ -440,6 +449,8 @@ protected PredictionServiceFutureStub build(
* * Tables - Row, with column values matching the columns of the model,
* up to 5MB. Not available for FORECASTING
* [prediction_type][google.cloud.automl.v1beta1.TablesModelMetadata.prediction_type].
* * Text Sentiment - TextSnippet, content up 500 characters, UTF-8
* encoded.
* </pre>
*/
public com.google.common.util.concurrent.ListenableFuture<
Expand All @@ -460,9 +471,10 @@ protected PredictionServiceFutureStub build(
* method. Once the operation is done, [BatchPredictResult][google.cloud.automl.v1beta1.BatchPredictResult] is returned in
* the [response][google.longrunning.Operation.response] field.
* Available for following ML problems:
* * Image Classification
* * Image Object Detection
* * Video Classification
* * Video Object Tracking
* * Text Extraction
* * Video Object Tracking * Text Extraction
* * Tables
* </pre>
*/
Expand Down
Loading