Model Runs API
Description
A model run is a single execution instance or epoch of a specific Model.
Module
This module defines the ModelRun class, which represents a run of a model, including metadata, associations to models, and run information.
It includes methods for creating, retrieving, updating, and deleting model runs, as well as methods for checking existence, searching, and managing associations with models.
This module includes the following methods:
exists: Check if a model run with the given parameters exists.create: Create a new model run.get: Retrieve a model run by its info and name.get_by_id: Retrieve a model run by its ID.get_all: Retrieve all model runs.search: Search for model runs based on various criteria.update: Update the details of a model run.delete: Delete a model run.refresh: Refresh the model run's data from the database.get_info: Get the additional information of the model run.set_info: Set the additional information of the model run.- Association methods for models.
ModelRun
Bases: APIBase
Represents a run of a model, including metadata, associations to models, and run information.
Attributes:
| Name | Type | Description |
|---|---|---|
id |
Optional[ID]
|
The unique identifier of the model run. |
model_id |
Optional[ID]
|
The ID of the associated model. |
model_run_info |
Optional[dict]
|
Additional information about the model run. |
Source code in gemini/api/model_run.py
39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 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 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 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 167 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 202 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 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 | |
__repr__()
__str__()
associate_model(model_name)
Associate this model run with a model.
Examples:
>>> model_run = ModelRun.get_by_id(UUID('12345678-1234-1234-1234-123456789012'))
>>> model = model_run.associate_model(model_name="example_model")
>>> print(model)
Model(id=UUID('...'), model_name='example_model', ...)
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
model_name
|
str
|
The name of the model to associate. |
required |
Returns: Optional["Model"]: The associated model, or None if an error occurred.
Source code in gemini/api/model_run.py
belongs_to_model(model_name)
Check if this model run is associated with a specific model.
Examples:
>>> model_run = ModelRun.get_by_id(UUID('12345678-1234-1234-1234-123456789012'))
>>> is_associated = model_run.belongs_to_model(model_name="example_model")
>>> print(is_associated)
True
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
model_name
|
str
|
The name of the model to check. |
required |
Returns: bool: True if associated, False otherwise.
Source code in gemini/api/model_run.py
create(model_run_info=None, model_name=None)
classmethod
Create a new model run.
Examples:
>>> model_run = ModelRun.create(model_run_info={"run_id": "12345"}, model_name="example_model")
>>> print(model_run)
ModelRun(id=UUID('...'), model_id=None, model_run_info={'run_id': '12345'})
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
model_run_info
|
dict
|
The run information for the new model run. |
None
|
model_name
|
str
|
The name of the model. Defaults to None. |
None
|
Returns: Optional["ModelRun"]: The created model run, or None if an error occurred.
Source code in gemini/api/model_run.py
delete()
Delete the model run.
Examples:
>>> model_run = ModelRun.get_by_id(UUID('12345678-1234-1234-1234-123456789012'))
>>> success = model_run.delete()
>>> print(success)
True
Returns:
| Name | Type | Description |
|---|---|---|
bool |
bool
|
True if the model run was deleted, False otherwise. |
Source code in gemini/api/model_run.py
exists(model_run_info, model_name=None)
classmethod
Check if a model run with the given parameters exists.
Examples:
>>> ModelRun.exists(model_run_info={"run_id": "12345"}, model_name="example_model")
True
>>> ModelRun.exists(model_run_info={"run_id": "67890"}, model_name="non_existent_model")
False
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
model_run_info
|
dict
|
The run information to check. |
required |
model_name
|
str
|
The name of the model. Defaults to None. |
None
|
Returns: bool: True if the model run exists, False otherwise.
Source code in gemini/api/model_run.py
get(model_run_info, model_name=None)
classmethod
Retrieve a model run by its info and name.
Examples:
>>> model_run = ModelRun.get(model_run_info={"run_id": "12345"}, model_name="example_model")
>>> print(model_run)
ModelRun(id=UUID('...'), model_id=None, model_run_info={'run_id': '12345'})
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
model_run_info
|
dict
|
The run information to search for. |
required |
model_name
|
str
|
The name of the model. Defaults to None. |
None
|
Returns: Optional["ModelRun"]: The model run, or None if not found.
Source code in gemini/api/model_run.py
get_all(limit=None, offset=None)
classmethod
Retrieve all model runs.
Examples:
>>> model_runs = ModelRun.get_all()
>>> print(model_runs)
[ModelRun(id=UUID('...'), model_id=None, model_run_info={}), ModelRun(id=UUID('...'), model_id=None, model_run_info={})]
Returns:
| Type | Description |
|---|---|
Optional[List[ModelRun]]
|
Optional[List["ModelRun"]]: List of all model runs, or None if not found. |
Source code in gemini/api/model_run.py
get_associated_model()
Get the model associated with this model run.
Examples:
>>> model_run = ModelRun.get_by_id(UUID('12345678-1234-1234-1234-123456789012'))
>>> model = model_run.get_associated_model()
>>> print(model)
Model(id=UUID('...'), model_name='example_model', ...)
Returns:
| Type | Description |
|---|---|
Optional[Model]
|
Optional["Model"]: The associated model, or None if not found. |
Source code in gemini/api/model_run.py
get_by_id(id)
classmethod
Retrieve a model run by its ID.
Examples:
>>> model_run = ModelRun.get_by_id(UUID('12345678-1234-1234-1234-123456789012'))
>>> print(model_run)
ModelRun(id=UUID('12345678-1234-1234-1234-123456789012'), model_id=None, model_run_info={})
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
id
|
UUID | int | str
|
The ID of the model run. |
required |
Returns: Optional["ModelRun"]: The model run, or None if not found.
Source code in gemini/api/model_run.py
get_info()
Get the additional information of the model run.
Examples:
>>> model_run = ModelRun.get_by_id(UUID('12345678-1234-1234-1234-123456789012'))
>>> info = model_run.get_info()
>>> print(info)
{'run_id': '12345', 'start_time': '2023-10-01T12:00:00Z'}
Returns:
| Type | Description |
|---|---|
Optional[dict]
|
Optional[dict]: The model run's info, or None if not found. |
Source code in gemini/api/model_run.py
refresh()
Refresh the model run's data from the database. It is rarely called by the user as it is automatically called on access.
Examples:
>>> model_run = ModelRun.get_by_id(UUID('12345678-1234-1234-1234-123456789012'))
>>> refreshed_run = model_run.refresh()
>>> print(refreshed_run)
ModelRun(id=UUID('12345678-1234-1234-1234-123456789012'), model_id=None, model_run_info={})
Returns:
| Type | Description |
|---|---|
Optional[ModelRun]
|
Optional["ModelRun"]: The refreshed model run, or None if an error occurred. |
Source code in gemini/api/model_run.py
search(model_run_info=None, model_name=None)
classmethod
Search for model runs based on various criteria.
Examples:
>>> model_runs = ModelRun.search(model_run_info={"run_id": "12345"}, model_name="example_model")
>>> print(model_runs)
[ModelRun(id=UUID('...'), model_id=None, model_run_info={'run_id': '12345'})]
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
model_run_info
|
dict
|
The run information to search for. Defaults to None. |
None
|
model_name
|
str
|
The name of the model. Defaults to None. |
None
|
Returns: Optional[List["ModelRun"]]: List of matching model runs, or None if not found.
Source code in gemini/api/model_run.py
set_info(model_run_info)
Set the additional information of the model run.
Examples:
>>> model_run = ModelRun.get_by_id(UUID('12345678-1234-1234-1234-123456789012'))
>>> updated_run = model_run.set_info(model_run_info={"run_id": "67890", "start_time": "2023-10-01T12:00:00Z"})
>>> print(updated_run)
ModelRun(id=UUID('12345678-1234-1234-1234-123456789012'), model_id=None, model_run_info={'run_id': '67890', 'start_time': '2023-10-01T12:00:00Z'})
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
model_run_info
|
dict
|
The new run information to set. |
required |
Returns: Optional["ModelRun"]: The updated model run, or None if an error occurred.
Source code in gemini/api/model_run.py
unassociate_model()
Unassociate this model run from its model.
Examples:
>>> model_run = ModelRun.get_by_id(UUID('12345678-1234-1234-1234-123456789012'))
>>> model = model_run.unassociate_model()
>>> print(model)
Model(id=UUID('...'), model_name='example_model', ...)
Returns:
| Type | Description |
|---|---|
Optional[Model]
|
Optional["Model"]: The unassociated model, or None if an error occurred. |
Source code in gemini/api/model_run.py
update(model_run_info=None)
Update the details of the model run.
Examples:
>>> model_run = ModelRun.get_by_id(UUID('12345678-1234-1234-1234-123456789012'))
>>> updated_run = model_run.update(model_run_info={"run_id": "67890"})
>>> print(updated_run)
ModelRun(id=UUID('12345678-1234-1234-1234-123456789012'), model_id=None, model_run_info={'run_id': '67890'})
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
model_run_info
|
dict
|
The new run information. Defaults to None. |
None
|
Returns: Optional["ModelRun"]: The updated model run, or None if an error occurred.