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
<no title>

  • Hi, I want to setup task that can "overwrite configuration on the UI". Found some reference in the doc but couldn't make it work yet. I feel it should be very simple, so I feel I am missing something. In the clearml doc, it says In the info panel, CONFIGURATION > HYPERPARAMETERS > Args > Hover and click EDIT. But I don't see "edit" in the hyperparameters, but I did find "user properties" is editable. So I gave it a try. But from testing, I don't really see the argument I added in the user properties get reflected when I run the task again (steps I use is reset and enqueue after saving edit in user properties). I attach the testing script I am using in the thread for reference, is there something I am missing to use that feature?
  
  
Posted one month ago
Votes Newest

Answers 3


Thanks John! This is exactly it! need to reset the task first then the edit feature will show up

  
  
Posted one month ago

ScrawnyCrocodile51 , you can edit the hyper params when a task is in draft mode

  
  
Posted one month ago

PROJECT_NAME = "test"
TASK_NAME = "test_connect"
QUEUE_NAME = "default"
task = Task.init(project_name=PROJECT_NAME, task_name=TASK_NAME)

config = {
    "name": "foo",
    "arg1": "bar",
}
task.connect(config)

task.execute_remotely(queue_name=QUEUE_NAME)
# ------------- end of setup -------------

def dummy_op(config):
    pprint(config)

    return config


dummy_op(config)

Sreenshot also provided to show what "edit" button only appear in user property not hyperparamter
image
image

  
  
Posted one month ago
184 Views
3 Answers
one month ago
one month ago
Tags
Similar posts