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")
I see, there is a missmatch in getting started and artifacts documentation
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
Should be in /opt/clearml/data/fileserver
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
You can try to sudo docker exec -it clearml-fileserver /bin/bash
and see what you get when you do ls /mnt/fileserver
So how can you get the file back? Are you sure your SDK is configured to use your server?
Perhaps the SDK is configured to use another file server?
nope, it doesn't.... looks like a misconfigured local file name 🙂 - I assume you'll find it on your disk
how did you configure the ClearML SDK exactly?
ok it works 😉 There was a mistake during SDK configuration