register_model
Register a model into the MLflow registry, creating it if absent. Provide a model name, URI, and optional tags to organize versions.
Instructions
Register a model into the model registry. Creates the registered model if it doesn't exist.
Args: model_name: Name for the registered model. model_uri: URI of the model to register. Supports: - LoggedModel: 'models:/m-abc123' - Run artifact: 'runs:/run_id/artifact_path' tags: Optional dict of tags to set on the model version.
Examples: register_model("btc-classifier", "models:/m-abc123") register_model("btc-classifier", "runs:/abc123/model", tags={"framework": "lightgbm"})
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| tags | No | ||
| model_uri | Yes | ||
| model_name | Yes |