Installs TensorFlow Probability
install_tfprobability(
method = c("auto", "virtualenv", "conda"),
conda = "auto",
version = "default",
tensorflow = "default",
extra_packages = NULL,
...
)
Installation method ("virtualenv" or "conda")
The path to a conda
executable. Use "auto"
to allow reticulate
to
automatically find an appropriate conda
binary. See Finding Conda for more details.
Version of Keras to install. Specify "default" to install the latest release. Otherwise specify an alternate version (e.g. "2.2.2").
TensorFlow version to install. Specify "default" to install the CPU version of the latest release. Specify "gpu" to install the GPU version of the latest release.
You can also provide a full major.minor.patch specification (e.g. "1.1.0"), appending "-gpu" if you want the GPU version (e.g. "1.1.0-gpu").
Alternatively, you can provide the full URL to an installer binary (e.g. for a nightly binary).
Additional PyPI packages to install along with Keras and TensorFlow.
Other arguments passed to tensorflow::install_tensorflow()
.
invisible