Question about ClearML models and metadata.
I'm using the web interface for ClearML. I create an trained an output_model that was stored in ClearML from a training process and on the web app I manually added some metadata to the model. In a separate task, I loaded the model as an input_model as seen here:
if cfg.clearml.get("model_url", None):
# Get the model info from the remote storage
input_model = InputModel().import_model(weights_url=cfg.clearml.model_url)
# connect the model to the current task
input_model.connect(task)
# download the model to a temporary local folder
model_path = input_model.get_local_copy()
Now when I try and run input_model.get_all_metadata() I get {}. I expected to get the metadata. What am I doing wrong? 😄