From 3ffbbf1393bd31386429be3e09cbaee1f1cdb271 Mon Sep 17 00:00:00 2001 From: Muhammad Sakib Khan Inan Date: Thu, 9 Mar 2023 13:02:39 +0600 Subject: [PATCH] Added "output_uri=True" in the hook config When "output_uri" is set to True, it uploads the Artifacts or Models to the ClearML Server. --- examples/frameworks/openmmlab/openmmlab_cifar10.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/examples/frameworks/openmmlab/openmmlab_cifar10.py b/examples/frameworks/openmmlab/openmmlab_cifar10.py index 43dbfc33..4255dd07 100644 --- a/examples/frameworks/openmmlab/openmmlab_cifar10.py +++ b/examples/frameworks/openmmlab/openmmlab_cifar10.py @@ -79,7 +79,8 @@ if __name__ == '__main__': type='ClearMLLoggerHook', init_kwargs=dict( project_name='examples', - task_name='OpenMMLab cifar10' + task_name='OpenMMLab cifar10', + output_uri=True ) ), ]