model_manager
AbstractModelManager
¶
Bases: ABC
Abstract class for model managers.
delete_model(model_name, version, description=None)
abstractmethod
¶
Delete a model with the given version.
Source code in quadra/utils/model_manager.py
46 47 48 |
|
download_model(model_name, version, output_path)
abstractmethod
¶
Download the model with the given version to the given output path.
Source code in quadra/utils/model_manager.py
63 64 65 |
|
get_latest_version(model_name)
abstractmethod
¶
Get the latest version of a model for all the possible stages or filtered by stage.
Source code in quadra/utils/model_manager.py
38 39 40 |
|
register_best_model(experiment_name, metric, model_name, description, tags=None, mode='max', model_path='deployment_model')
abstractmethod
¶
Register the best model from an experiment.
Source code in quadra/utils/model_manager.py
50 51 52 53 54 55 56 57 58 59 60 61 |
|
register_model(model_location, model_name, description, tags=None)
abstractmethod
¶
Register a model in the model registry.
Source code in quadra/utils/model_manager.py
32 33 34 35 36 |
|
transition_model(model_name, version, stage, description=None)
abstractmethod
¶
Transition the model with the given version to a new stage.
Source code in quadra/utils/model_manager.py
42 43 44 |
|
MlflowModelManager()
¶
Bases: AbstractModelManager
Model manager for Mlflow.
Source code in quadra/utils/model_manager.py
71 72 73 74 75 76 77 78 79 |
|
delete_model(model_name, version, description=None)
¶
Delete a model.
Parameters:
-
model_name
(
str
) –The name of the model
-
version
(
int
) –The version of the model
-
description
(
str | None
, default:None
) –Why the model was deleted, this will be added to the model changelog
Source code in quadra/utils/model_manager.py
168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 |
|
download_model(model_name, version, output_path)
¶
Download the model with the given version to the given output path.
Parameters:
-
model_name
(
str
) –The name of the model
-
version
(
int
) –The version of the model
-
output_path
(
str
) –The path to save the model to
Source code in quadra/utils/model_manager.py
275 276 277 278 279 280 281 282 283 284 285 286 287 288 |
|
get_latest_version(model_name)
¶
Get the latest version of a model.
Parameters:
-
model_name
(
str
) –The name of the model
Returns:
-
ModelVersion
–The model version
Source code in quadra/utils/model_manager.py
116 117 118 119 120 121 122 123 124 125 126 127 128 |
|
register_best_model(experiment_name, metric, model_name, description=None, tags=None, mode='max', model_path='deployment_model')
¶
Register the best model from an experiment.
Parameters:
-
experiment_name
(
str
) –The name of the experiment
-
metric
(
str
) –The metric to use to determine the best model
-
model_name
(
str
) –The name of the model after it is registered
-
description
(
str | None
, default:None
) –A description of the model, this will be added to the model changelog
-
tags
(
dict[str, Any] | None
, default:None
) –A dictionary of tags to add to the model
-
mode
(
Literal['max', 'min']
, default:'max'
) –The mode to use to determine the best model, either "max" or "min"
-
model_path
(
str
, default:'deployment_model'
) –The path to the model within the experiment run
Returns:
-
ModelVersion | None
–The registered model version if successful, otherwise None
Source code in quadra/utils/model_manager.py
203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 |
|
register_model(model_location, model_name, description=None, tags=None)
¶
Register a model in the model registry.
Parameters:
-
model_location
(
str
) –The model uri
-
model_name
(
str
) –The name of the model after it is registered
-
description
(
str | None
, default:None
) –A description of the model, this will be added to the model changelog
-
tags
(
dict[str, Any] | None
, default:None
) –A dictionary of tags to add to the model
Returns:
-
ModelVersion
–The model version
Source code in quadra/utils/model_manager.py
81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 |
|
transition_model(model_name, version, stage, description=None)
¶
Transition a model to a new stage.
Parameters:
-
model_name
(
str
) –The name of the model
-
version
(
int
) –The version of the model
-
stage
(
str
) –The stage of the model
-
description
(
str | None
, default:None
) –A description of the transition, this will be added to the model changelog
Source code in quadra/utils/model_manager.py
130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 |
|