predict.vetiver_endpoint: Post new data to a deployed model API endpoint and return...

View source: R/endpoint.R

predict.vetiver_endpointR Documentation

Post new data to a deployed model API endpoint and return predictions

Description

Post new data to a deployed model API endpoint and return predictions

Usage

## S3 method for class 'vetiver_endpoint'
predict(object, new_data, ...)

Arguments

object

A model API endpoint object created with vetiver_endpoint().

new_data

New data for making predictions, such as a data frame.

...

Extra arguments passed to httr::POST()

Value

A tibble of model predictions with as many rows as in new_data.

See Also

augment.vetiver_endpoint()

Examples


if (FALSE) {
endpoint <- vetiver_endpoint("http://127.0.0.1:8088/predict")
predict(endpoint, mtcars[4:7, -1])
}



tidymodels/vetiver documentation built on March 25, 2024, 6 p.m.