R/workspace.R
load_workspace_from_config.Rd
Returns a Workspace
object for an existing Azure Machine Learning
workspace by reading the workspace configuration from a file. The method
provides a simple way of reusing the same workspace across multiple files or
projects. Users can save the workspace ARM properties using
write_workspace_config()
, and use this method to load the same workspace
in different files or projects without retyping the workspace ARM properties.
load_workspace_from_config(path = NULL, file_name = NULL)
path | A string of the path to the config file or starting directory for search. The parameter defaults to starting the search in the current directory. |
---|---|
file_name | A string that will override the config file name to search for when path is a directory path. |
The Workspace
object.
write_workspace_config()