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.
This commit is contained in:
Muhammad Sakib Khan Inan 2023-03-09 13:02:39 +06:00 committed by GitHub
parent 37dde23bc9
commit 3ffbbf1393
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -79,7 +79,8 @@ if __name__ == '__main__':
type='ClearMLLoggerHook', type='ClearMLLoggerHook',
init_kwargs=dict( init_kwargs=dict(
project_name='examples', project_name='examples',
task_name='OpenMMLab cifar10' task_name='OpenMMLab cifar10',
output_uri=True
) )
), ),
] ]