[][src]Struct gcp_client::google::cloud::automl::v1beta1::prediction_service_client::PredictionServiceClient

pub struct PredictionServiceClient<T> { /* fields omitted */ }

AutoML Prediction API.

On any input that is documented to expect a string parameter in snake_case or kebab-case, either of those cases is accepted.

Implementations

impl<T> PredictionServiceClient<T> where
    T: GrpcService<BoxBody>,
    T::ResponseBody: Body + HttpBody + Send + 'static,
    T::Error: Into<StdError>,
    <T::ResponseBody as HttpBody>::Error: Into<StdError> + Send
[src]

pub fn new(inner: T) -> Self[src]

pub fn with_interceptor(inner: T, interceptor: impl Into<Interceptor>) -> Self[src]

pub async fn predict<'_>(
    &'_ mut self,
    request: impl IntoRequest<PredictRequest>
) -> Result<Response<PredictResponse>, Status>
[src]

Perform an online prediction. The prediction result will be directly returned in the response. Available for following ML problems, and their expected request payloads:

  • Image Classification - Image in .JPEG, .GIF or .PNG format, image_bytes up to 30MB.
  • Image Object Detection - Image in .JPEG, .GIF or .PNG format, image_bytes up to 30MB.
  • Text Classification - TextSnippet, content up to 60,000 characters, UTF-8 encoded.
  • Text Extraction - TextSnippet, content up to 30,000 characters, UTF-8 NFC encoded.
  • Translation - TextSnippet, content up to 25,000 characters, UTF-8 encoded.
  • 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.

pub async fn batch_predict<'_>(
    &'_ mut self,
    request: impl IntoRequest<BatchPredictRequest>
) -> Result<Response<Operation>, Status>
[src]

Perform a batch prediction. Unlike the online [Predict][google.cloud.automl.v1beta1.PredictionService.Predict], batch prediction result won't be immediately available in the response. Instead, a long running operation object is returned. User can poll the operation result via [GetOperation][google.longrunning.Operations.GetOperation] 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
  • Tables

Trait Implementations

impl<T: Clone> Clone for PredictionServiceClient<T>[src]

impl<T> Debug for PredictionServiceClient<T>[src]

Auto Trait Implementations

impl<T> !RefUnwindSafe for PredictionServiceClient<T>

impl<T> Send for PredictionServiceClient<T> where
    T: Send

impl<T> Sync for PredictionServiceClient<T> where
    T: Sync

impl<T> Unpin for PredictionServiceClient<T> where
    T: Unpin

impl<T> !UnwindSafe for PredictionServiceClient<T>

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> IntoRequest<T> for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 

impl<T> WithSubscriber for T[src]