Unanswered
Hi. Inside A Notebook When I Cerate A New Clearml Task And Then Run Sklearn Gridsearchcv , Clearml Uploads A Lot Of Model.
Is There A Way To Force Clearml Not To Upload These Models?
Related Question Is What Are These Models Anyway? Their Name Only Contai
Interesting proposal. Why use the "post" callback and not the "pre" callback?
I guess i need to do something like the following after the task was created:
` from clearml.binding.frameworks import WeightsFileHandler
def callback(_, model_info):
model_info.name = "my new name"
return model_info
WeightsFileHandler.add_pre_callback(callback) `
141 Views
0
Answers
2 years ago
one year ago