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 Tried To Delete Some Parameters From Args, But It Is Prohibited When Task Is Running. How Can I Make A Task Leave Only Necessary Hyperparameters In Clearml Gui After Running A Task? I Want To Get Only Specified Args Parameters When I Clone And Start

Hi,
I tried to delete some parameters from Args, but it is prohibited when task is running.
How can I make a task leave only necessary hyperparameters in ClearML GUI after running a task? I want to get only specified Args parameters when I clone and start this task next time.
2021-03-03 13:43:23,880 - clearml.Task - ERROR - Action failed <400/110: tasks.delete_hyper_params/v1.0 (Invalid task status: expected=created, status=in_progress)> (task=4d98a338978d4001bf41b460f185a416, hyperparams=[{'section': 'Args', 'name': 'T_0'}])

  
  
Posted 3 years ago
Votes Newest

Answers 4


Sure :
task = Task.init(..., auto_connect_arg_parser={'arg_not_to_log': False})This will cause all argparse to automatically be logged (and later editable) with the exception of the argument arg_not_to_log
Notice that if you have --arg-something, to exclude it add to the dict arg_something': False

  
  
Posted 3 years ago

Thank you, it is excellent solution for me!

  
  
Posted 3 years ago

I want to remove argparse arguments from code and I hope to update list of args in UI for next executions or cloning from this task.

  
  
Posted 3 years ago

Hi ApprehensiveFox95
You mean from code remove the argparse arguments ?
Or post execution in the UI?

  
  
Posted 3 years ago