ClearML How to get configurable hyperparameters?

293 views Asked by At

How do I get args like epochs to show up in the UI configuration panel under hyperparameters? I want to be able to change number of epochs and learning rate from within the UI.

1

There are 1 answers

2
Martin.B On BEST ANSWER

You can use argparse - ClearML will auto-magically log all parameters in the task's configuration section (under hyper-parameters section) - see this example. You can also just connect any dictionary (see this example)