Advanced tidymodels
We have a decision tree, tree_fit
, to model whether or not a plot of land in Washington is forested or not.
How do we use our model in production?
Learn more at https://vetiver.rstudio.com
How do we use our model in production?
library(plumber)
pr() %>%
vetiver_api(v)
#> # Plumber router with 4 endpoints, 4 filters, and 1 sub-router.
#> # Use `pr_run()` on this object to start the API.
#> ├──[queryString]
#> ├──[body]
#> ├──[cookieParser]
#> ├──[sharedSecret]
#> ├──/logo
#> │ │ # Plumber static router serving from directory: /Users/max/Library/R/arm64/4.3/library/vetiver
#> ├──/metadata (GET)
#> ├──/ping (GET)
#> ├──/predict (POST)
#> └──/prototype (GET)
Learn more at https://vetiver.rstudio.com
Run the vetiver
chunk in your .qmd
.
Check out the automated visual documentation.
05:00