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
Unanswered
Hi! How Can I Use The Clearml Sdk To Check Parameters Set In


Hi @<1788378337601654784:profile|DelightfulMosquito39> , you can use this:

from clearml.backend_api import Session

s = Session()
print(s.config.get("api")) 

You can replace the api with sdk, or any other section in the configuration for example

from clearml.backend_api import Session

s = Session()
print(s.config.get("sdk"))
  
  
Posted 5 days ago
5 Views
0 Answers
5 days ago
5 days ago