Copy output from remote
get your output to S3
In the Float16 project, each project has its own remote storage that automatically stores Python files and output files generated during run or deploy commands. This tutorial will guide you through copying output files from remote storage to your personal AWS S3 storage.
An active Float16 project
AWS S3 storage credentials
Step 1 : Prepare Your Script
Create a Python script (e.g., test_output.py
) that generates an output file
Step 2 : Run your script
First, start your project and then run the script
you will got successfully response from CLI.
Step 3 : Check Remote Storage
Check the files in your remote storage
Step 4 : Copy Output to S3
Use the following command to copy your output to AWS S3
Replace the placeholders with your actual AWS S3 credentials:
<YOUR_S3_URI_DESTINATION>
: Your S3 bucket destination path<YOUR_S3_ACCESS_KEY>
: Your AWS access key<YOUR_S3_SECRET_KEY>
: Your AWS secret key<YOUR_S3_REGION>
: Your S3 bucket region
After running the command, check your specified S3 destination path. You should find the output.txt
file successfully copied.
Congratulations! You've learned how to copy output files from Float16's remote storage to your AWS S3 storage.
Explore More
Learn how to use Float16 CLI for various use cases in our tutorials.
Happy coding with Float16 Serverless GPU!
Last updated