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
I'M Running Clearml Server Locally Using The Docker-Compose Method As Mentioned

I'm running ClearML Server Locally using the docker-compose method as mentioned https://clear.ml/docs/latest/docs/deploying_clearml/clearml_server_linux_mac when I create an account and test the server by following the steps in the client i get the following error:
clearml.backend_interface.session.SendError: Action failed <401/22: projects.get_all/v1.0 (Unauthorized (invalid credentials) (failed to locate provided credentials))> (name=^my\ project$, only_fields=['id'], shallow_search=False, search_hidden=True)I ran the clearml-init for my python project and pasted credentials which were generated throught my clearml webserver ui when prompted for them. I'm wondering what am I missing?

  
  
Posted 2 years ago
Votes Newest

Answers 34


I hope it can provide some clue for you...

  
  
Posted 2 years ago

SuccessfulKoala55 thanks alot for your help i greatly appreciate it, i think you are right that there is something happening with the request, I did some checking i can get it running on another computer (my non work computer), so i think you are right there must be something happening with my work related computer which is causing this to occur 😕 I'll keep trying to drill down on this issue on my work computer to see what the difference is, but I can atleast proceed now to as i got experiments working on another computer 😄 ! Again thanks a lot for your help SuccessfulKoala55 and AgitatedDove14 i greatly appreciate it!

  
  
Posted 2 years ago

With pleasure 😊

  
  
Posted 2 years ago

For those also experiencing Unauthorized (invalid credentials) (failed to locate provided credentials) and tracking down here:

I solved the issue by replacing the localhost in ~/clearml.conf with your actual IP address. This could be result from some firewall issues of the VM: https://github.com/allegroai/clearml/issues/158#issuecomment-653199211

SDK version: 1.9.0

Good luck!

  
  
Posted one year ago