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
Hi, Is There A Way To Get The Project Name Of A Model From The Sdk. The Property

Hi,
Is there a way to get the project name of a model from the SDK. The property project of a model returns its id, I'd like to get the project name but I don't find any interface in the sdk to get project informations

  
  
Posted 11 months ago
Votes Newest

Answers 3


Yup we too had to implement a lots of little things for ClearML in our tooling library due to it being pretty bare bone in some area

  
  
Posted 11 months ago

Hey Mathias,

The project SDK is pretty barebone and according to the doc you should use the REST API for further actions , the simplest approach would be to simply use the project id on the POST /projects.get_by_id endpoint .

Best regards,

  
  
Posted 11 months ago

Hey @<1523702000586330112:profile|FierceHamster54>
Thanks for the info, that's unfortunate it's not available through the sdk. Let's bypass the SDK to achieve this ^^

  
  
Posted 11 months ago