-
-
Notifications
You must be signed in to change notification settings - Fork 654
Closed
Description
❓ Questions/Help/Support
Hello! I'd like to know how to transfer the ClearML configuration logs from pure PyTorch to PyTorch-Ignite, that is:
task = Task.init("project-name", task_name="task-name")
task.connect_configuration(config) # or task.connect({k: v for k, v in config.items()})
In official docs, I only found ClearMLLogger
class which implemented Task.init()
inside, but with no support for Task.connect()
. Is there any good solution to this problem in current verison of release?
Thanks!