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, What Could Be Possible Reason For Changing Hyperparameter From Ui Not Working? The Same Hyperparameter Changed In The Ui In The Cloned Experiment Gives Different Result Than When It Is Changed In The Config File And Run As New Experiment. The Two Expe

Hi, what could be possible reason for changing hyperparameter from UI not working? The same hyperparameter changed in the UI in the cloned experiment gives different result than when it is changed in the config file and run as new experiment. The two experiments have same code and the rest of hyperparameters and all the seeds are set.

  
  
Posted 9 months ago
Votes Newest

Answers 2


Hi, I am just having YAML file where I keep all the configurations and hyperparams and then for every training the first thing I do is I call a function which initializes the ClearML task and connects the config and returns it so that the rest of the code can use it.


def initialize_task(task_type=Task.TaskTypes.training):
    config = yaml.safe_load(open(r"params.yaml"))
    Task.ignore_requirements("pywin32")
    task = Task.init(project_name='X', task_name=config['TASK_NAME'], 
                    task_type=task_type, tags=config['TAGS'],
                    output_uri=False)
    task.connect(config)
    if not config['LOCAL']:
        task.execute_remotely(queue_name="default")
    logger = task.get_logger()
    return config, logger
  
  
Posted 9 months ago

Hi @<1566596960691949568:profile|UpsetWalrus59> , can you share the part of your code setting these hyperparams?

  
  
Posted 9 months ago
462 Views
2 Answers
9 months ago
9 months ago
Tags
Similar posts