Description Usage Arguments Value Details Predefined Docker images See Also Examples
Configure the R environment to be used for training or web service
deployments. When you submit a run or deploy a model, Azure ML builds a
Docker image and creates a conda environment with your specifications from
your Environment
object within that Docker container.
If the custom_docker_image
parameter
is not set, Azure ML will build a predefined base image (CPU or GPU
depending on the use_gpu
flag) and install any R packages specified in the
cran_packages
, github_packages
, or custom_url_packages
parameters.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | r_environment(
name,
version = NULL,
environment_variables = NULL,
r_version = NULL,
rscript_path = NULL,
snapshot_date = NULL,
cran_packages = NULL,
github_packages = NULL,
custom_url_packages = NULL,
bioconductor_packages = NULL,
custom_docker_image = NULL,
image_registry_details = NULL,
use_gpu = FALSE,
shm_size = NULL
)
|
name |
A string of the name of the environment. |
version |
A string of the version of the environment. |
environment_variables |
A named list of environment variables names and values. These environment variables are set on the process where the user script is being executed. |
r_version |
The version of R to be installed. |
rscript_path |
The Rscript path to use if an environment build is not required. The path specified gets used to call the user script. |
snapshot_date |
Date of MRAN snapshot to use. |
cran_packages |
A list of |
github_packages |
A list of |
custom_url_packages |
A character vector of packages to be installed from local directory or custom URL. |
bioconductor_packages |
A character vector of packages to be installed from Bioconductor. |
custom_docker_image |
A string of the name of the Docker image from
which the image to use for training or deployment will be built. If not set,
a predefined Docker image will be used. To use an image from a private Docker
repository, you will also have to specify the |
image_registry_details |
A |
use_gpu |
Indicates whether the environment should support GPUs.
If |
shm_size |
A string for the size of the Docker container's shared
memory block. For more information, see
Docker run reference
If not set, a default value of |
The Environment
object.
Once built, the Docker image appears in the Azure Container Registry associated with your workspace, by default. The repository name has the form azureml/azureml_<uuid>. The unique identifier (uuid) part corresponds to a hash computed from the environment configuration. This allows the service to determine whether an image corresponding to the given environment already exists for reuse.
If you make changes to an existing environment, such as adding an R package, a new version of the environment is created when you either submit a run, deploy a model, or manually register the environment. The versioning allows you to view changes to the environment over time.
When submitting a training job or deploying a model, Azure ML runs your
training script or scoring script within a Docker container. If no custom
Docker image is specified with the custom_docker_image
parameter, Azure
ML will build a predefined CPU or GPU Docker image. The predefine images extend
the Ubuntu 16.04 Azure ML base images
and include the following dependencies:
Dependencies | Version | Remarks |
azuremlsdk | latest | (from GitHub) |
R | 3.6.0 | - |
Commonly used R packages | - | 80+ of the most popular R packages for data science, including the IRKernel, dplyr, shiny, ggplot2, tidyr, caret, and nnet. For the full list of packages included, see here. |
Python | 3.7.0 | - |
azureml-defaults | latest | azureml-defaults contains the
azureml-core and applicationinsights packages of the Python SDK that
are required for tasks such as logging metrics, uploading artifacts, and
deploying models. (from pip) |
rpy2 | latest | (from conda) |
CUDA (GPU image only) | 10.0 | CuDNN (version 7) is also included |
estimator()
, inference_config()
1 2 3 4 5 6 7 | # The following example defines an environment that will build the default
# base CPU image.
## Not run:
r_env <- r_environment(name = 'myr_env',
version = '1')
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.