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 Everyone. If I Edit A File In Configuration Objects In Clearml Ui, Will The New Parameters Be Injected In My Code When I Run This?

Hi everyone. If I edit a file in configuration objects in clearML UI, will the new parameters be injected in my code when I run this?

  
  
Posted one year ago
Votes Newest

Answers 6


Hi PetiteRabbit11 . This snippet works for me:
` from clearml import Task
from pathlib2 import Path

t = Task.init()
config = t.connect_configuration(Path("config.yml"))
print(open(config).read()) Note the you need to use the return value of connect_configuration ` when you open the configuration file

  
  
Posted one year ago

SmugDolphin23 Hi. Do you know how to use some parameter of config.yaml file for hyperparameter optimization, like we do with args using DicreteParameterRange etc?

  
  
Posted one year ago

If i edit this yaml file and run the task again, the change is not reflected in the code

  
  
Posted one year ago

I am viewing a yaml file in clearML UI under configuration objects using task.connect_configuration

  
  
Posted one year ago

Oh yes! I was not using the return value, but rather the path to file. Thanks a lot

  
  
Posted one year ago

Hi PetiteRabbit11 , can you please elaborate on what you mean?

  
  
Posted one year ago