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

Hi! How can I use the ClearML SDK to check parameters set in clearml.conf ? Is there a dict somewhere inside clearml.config.... ? Specifically, I would like to check the value of s3.use_credentials_chain .

  
  
Posted 4 days ago
Votes Newest

Answers


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 4 days ago
28 Views
1 Answer
4 days ago
4 days ago
Tags