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, I Logged My Params To Clearml Like This:

Hi, I logged my params to clearml like this:
params_dictionary = {'max_depth': 20, 'max_features': 2} wandb.config = params_dictionaryAnd load them like this:
a_task = Task.get_task(task_id='bcaadab553304488b514c125befcc446') params = a_task.get_parameters()the value I got in params is:
params = {'General/max_depth': '20', 'General/max_features': '2'}
You can see the additional 'General/' in the keys string.
Is there a way to avoid this in the process so I'll get the same dict I logged?

  
  
Posted one year ago
Votes Newest

Answers 5


Do you need to pull it later somewhere? Is there a specific use case?
Because I think you can get the params dict back via code as a the same dict

  
  
Posted one year ago

When you want to connect your parameters and other objects. Please take as look here:
https://clear.ml/docs/latest/docs/references/sdk/task#connect
You can find a usage example in
https://github.com/allegroai/clearml/blob/master/examples/reporting/hyper_parameters.py

  
  
Posted one year ago

Also, did you run task.init() and task.connect()

  
  
Posted one year ago

HappyDove3 you can get some more insight on the different configuration methods and how to use theme https://clear.ml/docs/latest/docs/fundamentals/hyperparameters

  
  
Posted one year ago

When should I run task.connect() ?

  
  
Posted one year ago