We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f2b0fa7 commit e23e44eCopy full SHA for e23e44e
src/sagemaker/local/image.py
@@ -344,6 +344,11 @@ def _prepare_training_volumes(
344
volumes = []
345
346
volumes.append(_Volume(model_dir, "/opt/ml/model"))
347
+
348
+ # Mount the metadata directory on the notebook instance,
349
+ # this is used by some DeepEngine libraries
350
+ volumes.append(_Volume("/opt/ml/metadata", "/opt/ml/metadata"))
351
352
# Set up the channels for the containers. For local data we will
353
# mount the local directory to the container. For S3 Data we will download the S3 data
354
# first.
0 commit comments