Unanswered
Hi! How Can I Use The Clearml Sdk To Check Parameters Set In
Hi DelightfulMosquito39 , you can use this:
from clearml.backend_api import Session
s = Session()
print(s.config.get("api"))
You can replace the api with sdk, or any other section in the configuration for example
from clearml.backend_api import Session
s = Session()
print(s.config.get("sdk"))
46 Views
0
Answers
3 months ago
2 months ago