Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Download an entire folder from AWS sagemaker to laptop

I have a folder with predicted masks on AWS Sagemaker. ( It has 4 folders inside it and lot of files inside those folders. ) I want to download the entire folder to my laptop. This might sound so simple and easy, but I could not find a way to do it. Appreciate any help.

Thanks

like image 405
Newbie Avatar asked Feb 28 '19 17:02

Newbie


People also ask

How do I download from Amazon SageMaker?

Choose the + next to the node that you want to export. Choose Export to. Choose Amazon SageMaker Feature Store (via Jupyter Notebook). Run the Jupyter Notebook.

Where are SageMaker notebooks stored?

In Amazon SageMaker Studio, your SageMaker Studio notebooks and data can be stored in the following locations: An S3 bucket – When you onboard to Studio and enable shareable notebook resources, SageMaker shares notebook snapshots and metadata in an Amazon Simple Storage Service (Amazon S3) bucket.

Can I PIP install in SageMaker?

SageMaker notebooks support the following package installation tools: conda install. pip install.


1 Answers

You can do that by opening a terminal on sagemaker. Navigate to the path where your folder is. Run the command to zip it

zip -r -X archive_name.zip folder_to_compress

You will find the zipped folder. You can then select it and download it.

like image 150
Amy123 Avatar answered Sep 20 '22 15:09

Amy123