Examples: query, "exact match", wildcard*, wild?ard, wild*rd
Fuzzy search: cake~ (finds cakes, bake)
Term boost: "red velvet"^4, chocolate^2
Field grouping: tags:(+work -"fun-stuff")
Escaping: Escape characters +-&|!(){}[]^"~*?:\ with \, e.g. \+
Range search: properties.timestamp:[1587729413488 TO *] (inclusive), properties.title:{A TO Z}(excluding A and Z)
Combinations: chocolate AND vanilla, chocolate OR vanilla, (chocolate OR vanilla) NOT "vanilla pudding"
Field search: properties.title:"The Title" AND text
Answered
Sorry About Posting It In That. I'M Looking For Help With On-Prem Instalation. I Can'T Get Fileserver To Work. I Sucessfuly Created Project And A Task, Pass Some Params, But Then I Got Error Name Got Multiple Values. I Tried Without Key Word And It Passed

Sorry about posting it in that. I'm looking for help with on-prem instalation.
I can't get fileserver to work.
I sucessfuly created project and a task, pass some params, but then I got error name got multiple values. I tried without key word and it passed.
I can see file in artifacts
but getting 404 when try to open it
Here is configuration of API from client
Logs from fileserver which doesn't say much
And running containers. 
Maybe you can help me with that.

  
  
Posted 2 years ago
Votes Newest

Answers 21


how did you configure the ClearML SDK exactly?

  
  
Posted 2 years ago

and provided all 3 paths

  
  
Posted 2 years ago

right

  
  
Posted 2 years ago

ok it works 😉 There was a mistake during SDK configuration

  
  
Posted 2 years ago

You're using linux, right?

  
  
Posted 2 years ago

Can I see your docker compose?

  
  
Posted 2 years ago

path looks right

  
  
Posted 2 years ago

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

  
  
Posted 2 years ago

So how can you get the file back? Are you sure your SDK is configured to use your server?

  
  
Posted 2 years ago

empty.

  
  
Posted 2 years ago

empty as well

  
  
Posted 2 years ago

what is strange I did this by clearml-init

  
  
Posted 2 years ago

thanks will try it in a minute

  
  
Posted 2 years ago

there wasn't path for webserver

  
  
Posted 2 years ago

I see, there is a missmatch in getting started and artifacts documentation

  
  
Posted 2 years ago

nope, it doesn't.... looks like a misconfigured local file name 🙂 - I assume you'll find it on your disk

  
  
Posted 2 years ago

Perhaps the SDK is configured to use another file server?

  
  
Posted 2 years ago

You can try to sudo docker exec -it clearml-fileserver /bin/bash and see what you get when you do ls /mnt/fileserver

  
  
Posted 2 years ago

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

  
  
Posted 2 years ago

Should be in /opt/clearml/data/fileserver

  
  
Posted 2 years ago

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")or
task.upload_artifact(name="data", artifact_object="./posts.csv")

  
  
Posted 2 years ago
617 Views
21 Answers
2 years ago
one year ago
Tags