Should be in /opt/clearml/data/fileserver
how did you configure the ClearML SDK exactly?
So how can you get the file back? Are you sure your SDK is configured to use your server?
You can try to sudo docker exec -it clearml-fileserver /bin/bash
and see what you get when you do ls /mnt/fileserver
nope, it doesn't.... looks like a misconfigured local file name 🙂 - I assume you'll find it on your disk
ok it works 😉 There was a mistake during SDK configuration
I see, there is a missmatch in getting started and artifacts documentation
Hi SillyDeer57 ,
I don't think you have a server issue - it's simply a mis-use of the SDK... See https://github.com/allegroai/clearml/blob/master/examples/reporting/artifacts.py , when calling task.upload_artifact
- you are indeed passing the name twice, you should do:task.upload_artifact("data", "./posts.csv")
ortask.upload_artifact(name="data", artifact_object="./posts.csv")
It worked, but where I should see files uploaded that way on my filesystem? /opt/clearml/data/filesystem is still empty. However I got artifact back properly. Thanks
curl
https://raw.githubusercontent.com/allegroai/clearml-server/master/docker/docker-compose.yml -o ./docker-compose.yml
one thing I changed is port for webapp
Perhaps the SDK is configured to use another file server?