Reputation: 11
My colleague made a notebook in SageMaker but I want to copy that notebook into SageMaker Studio so that future collaborations and changes are smoother. From Studio, I can't see anything that relates it to SageMaker classic.
Any advice?
Upvotes: 1
Views: 1268
Reputation: 5578
If it's a single notebook download the notebook from Jupyter in the notebook instance (in Jupyter File menu), then upload it to Studio notebooks.
If it's many notebooks, from the notebook instance open a terminal to copy them to S3, the in Studio, copy from S3 to the Studio storage.
aws s3 cp /tmp/my_notebook s3://my_bucket/my_notebook
aws s3 cp s3://my_bucket/my_notebook /tmp/my_notebook
Upvotes: 1