How to transfer 10 - 15 images from local to specific folder in Network volume
Hi, I'm beginner of programming, so my question could be messy.
I'm trying to transfer 10 - 15 images to network volume when I deploy pod with api request(I'm using data center that doesn't support S3-api)
[What I made so far]
1. python code that I can use api request with variable(e.g. ORD_183)
2. If 10 - 15 images are already exist in a folder(e.g. /workspace/input_images/ORD_183)
3. Training starts
[What I need]
1. Api request to deploy pod with job_id as variable (done)
2. Make a folder in network volume. Folder structure is /workspace/input_images/{job_id} (struggling)
3. Transfer 10 - 15 images to /workspace/input_images/{job_id} (struggling)
4. Start training (done)
3 Replies
Can you use sftp to upload to that directory?
Unknown User•3mo ago
Message Not Public
Sign In & Join Server To View
I found other way! Thanks 😄