I want to access the Workspace object in my train.py script, when running in an Estimator.
I currently can access the Run object, using the following code:
run = Run.get_context()
But I cannot seem to get my hands on the Workspace object in my training script. I would use this mostly to get access to the Datastores and Datasets (as I would hope to keep all data set references inside the training script, instead of passing them as input datasets)
Any idea if/how this is possible ?