R/deployTFModel.R

Defines functions deployTFModel

Documented in deployTFModel

#' Deploy a TensorFlow saved model
#'
#' Deploys a directory containing a TensorFlow saved model.
#'
#' @param ... Additional arguments to [deployApp()].
#'
#' @family Deployment functions
#' @export
deployTFModel <- function(...) {
  deployApp(appMode = "tensorflow-saved-model", ...)
}
rstudio/rsconnect documentation built on July 6, 2024, 4:40 a.m.