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 Am Running A Clearml Task. It Is Training A Transformer Model Using Huggingface. I Have Disabled All Callbacks From The Trainer, And In The Task.Init Have Set All The Auto_Connect_Frameworks To False. However, The Model Checkpoints, The Optimizer, S

Hi! I am running a clearml task. It is training a transformer model using huggingface. I have disabled all callbacks from the trainer, and in the task.init have set all the auto_connect_frameworks to False. However, the model checkpoints, the optimizer, scheduler, scaler and random state are still logged in the artifacts? How do I disable the artifacts logging?

  
  
Posted 17 days ago
Votes Newest

Answers


is the training running in a subprocess from the one that starts the ClearML task? I've noticed a bug that subprocesses ignore the parent's auto_connect_frameworks settings and always run with all frameworks

  
  
Posted 17 days ago
362 Views
1 Answer
17 days ago
17 days ago
Tags