Answered
Is There A Command Line Interface That Lets You Query And Download Models From The Clearml Model Registry The Way You Can With Mlflow? Example:
Is there a command line interface that lets you query and download models from the ClearML model registry the way you can with MLFlow? Example:
# search for the model version that should be deployed
mlflow search --experiment-name <experiment_name> --query "tags.is_deployed=true" --format json
# download the best one
mlflow models download -m <run_id> -o <output_directory>
# use other CLI tools to deploy the fetched model...
894 Views
1
Answer
one year ago
one year ago
Tags