Releases: rstudio/vetiver-r
vetiver 0.2.5
- Fixed bug in generating plumber files (#257).
vetiver 0.2.4
- Fixed how plumber files are generated for
board_url()
(#241).
vetiver 0.2.3
- Updated test involving renv and rsconnect (#230).
vetiver 0.2.2
vetiver 0.2.1
-
Added support for keras (#164), recipes (#179), and luz (#187, @dfalbel).
-
Moved where
required_pkgs
metadata is stored remotely, from the binary blob to plain text YAML (#176). -
Added an optional renv lockfile that can be stored remotely in model metadata, with a new
check_renv
argument for reading/writing (#154, #192). -
Exposed a new
base_image
argument for creating Dockerfiles (#182). -
Added new
vetiver_deploy_sagemaker()
function plusvetiver_endpoint_sagemaker()
and other needed functionality for deploying on Amazon SageMaker (#186, @DyfanJones). -
Added new additional GET endpoint for model
/metadata
(#194).
vetiver 0.2.0
Breaking changes
- The arguments for dealing with a model's input data prototype have changed from using
ptype
to usingprototype
(#166):- In
vetiver_model()
, now usesave_prototype
. - In
vetiver_api()
, now usecheck_prototype
.
- In
Other improvements
-
Added support for k-Prototypes clustering from clustMixType (#163, thanks to @galen-ft).
-
Now vendor renv directly in package (#157).
-
Fixed how
vetiver_ptype()
finds predictors for models (lm()
andglm()
) with interactions (#160). -
New argument added to
vetiver_write_docker()
to pass in additional packages to be installed, such asrequired_pkgs(board)
(#159). -
New function
vetiver_prepare_docker()
creates all necessary files to deploy a basic vetiver model via Docker (#165). -
Fixed a bug in handling all-
NA
columns when predicting on avetiver_endpoint()
(#169).
vetiver 0.1.8
-
Trailing slashes are now removed from
vetiver_endpoint()
(#134). -
Added
augment
method for vetiver endpoint (#141). -
Added
apt-get clean
to Dockerfile to reduce container size (#142, thanks to @csgillespie). -
Fixed bug where not all system requirements were added to the Dockerfile (#142, thanks to @csgillespie).
-
Added bundle support for relevant models (#145).
-
Fixed bug in generating Dockerfiles when explicitly requiring the stats package (#147).
vetiver 0.1.7
vetiver 0.1.6
-
The lockfile created by
vetiver_write_docker()
can now be named via the argumentlockfile
, and its default isvetiver_renv.lock
(#100). -
Switched the default for
overwrite
invetiver_pin_metrics()
fromTRUE
toFALSE
. UsingFALSE
is a better choice for interactive use whileTRUE
is probably the right choice for reports or dashboards that are executed on a schedule (#104). -
Added an optional
EXPOSE PORT
line to the generated Dockerfile, to help out Docker Desktop users (#105). -
Added model monitoring dashboard template (#98). To knit the example vetiver monitoring dashboard, execute
vetiver::pin_example_kc_housing_model()
to set up demo model and metrics pins. -
The OpenAPI spec generated for a vetiver model now includes the model version when applicable.
-
Added option to write a Plumber file without packages listed for RStudio Connect purposes (#112).
-
Added new function
vetiver_create_rsconnect_bundle()
as an alternative deployment strategy (#113).
vetiver 0.1.5
-
Add functions for model monitoring (#92).
-
Update all URLs in package for new documentation sites.