predict
**kw) predict(endpoint, data,
Make a prediction from model endpoint
Parameters
Name | Type | Description | Default |
---|---|---|---|
endpoint | URI path to endpoint | required | |
data | Union[dict, pd.DataFrame, pd.Series] | Name of endpoint | required |
Returns
Name | Type | Description |
---|---|---|
dict | Endpoint_name and list of endpoint_fx output |
Examples
>>> import vetiver
>>> X, y = vetiver.get_mock_data()
>>> endpoint = vetiver.vetiver_endpoint(url='http://127.0.0.1:8000/predict')
>>> vetiver.predict(endpoint, X)