base
Evaluation(config, model_path, device=None)
¶
Bases: Generic[DataModuleT]
, Task[DataModuleT]
Base Evaluation Task with deployment models.
Parameters:
-
config
(
DictConfig
) –The experiment configuration
-
model_path
(
str
) –The model path.
-
device
(
Optional[str]
, default:None
) –Device to use for evaluation. If None, the device is automatically determined.
Source code in quadra/tasks/base.py
323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 |
|
deployment_model: BaseEvaluationModel
property
writable
¶
Deployment model.
prepare()
¶
Prepare the evaluation.
Source code in quadra/tasks/base.py
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 |
|
LightningTask(config, checkpoint_path=None, run_test=False, report=False)
¶
Bases: Generic[DataModuleT]
, Task[DataModuleT]
Base Experiment Task.
Parameters:
-
config
(
DictConfig
) –The experiment configuration
-
checkpoint_path
(
Optional[str]
, default:None
) –The path to the checkpoint to load the model from. Defaults to None.
-
run_test
(
bool
, default:False
) –Whether to run the test after training. Defaults to False.
-
report
(
bool
, default:False
) –Whether to generate a report. Defaults to False.
Source code in quadra/tasks/base.py
103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 |
|
callbacks: List[Callback]
property
writable
¶
List[Callback]: The callbacks.
devices: Union[int, List[int]]
property
writable
¶
List[int]: The devices ids.
logger: List[Logger]
property
writable
¶
List[Logger]: The loggers.
module: LightningModule
property
writable
¶
trainer: Trainer
property
writable
¶
add_callback(callback)
¶
Add a callback to the trainer.
Parameters:
-
callback
(
Callback
) –The callback to add
Source code in quadra/tasks/base.py
281 282 283 284 285 286 287 288 |
|
execute()
¶
Execute the experiment and all the steps.
Source code in quadra/tasks/base.py
290 291 292 293 294 295 296 297 298 299 300 |
|
finalize()
¶
Finalize the experiment.
Source code in quadra/tasks/base.py
262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 |
|
prepare()
¶
Prepare the experiment.
Source code in quadra/tasks/base.py
120 121 122 123 124 125 126 127 128 129 130 131 132 |
|
test()
¶
Test the model.
Source code in quadra/tasks/base.py
242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 |
|
train()
¶
Train the model.
Source code in quadra/tasks/base.py
231 232 233 234 235 236 237 238 239 240 |
|
PlaceholderTask
¶
Bases: Task
Placeholder task.
execute()
¶
Execute the task and all the steps.
Source code in quadra/tasks/base.py
306 307 308 309 310 |
|
Task(config)
¶
Bases: Generic[DataModuleT]
Base Experiment Task.
Parameters:
-
config
(
DictConfig
) –The experiment configuration.
Source code in quadra/tasks/base.py
33 34 35 36 37 38 |
|
datamodule: DataModuleT
property
writable
¶
execute()
¶
Execute the experiment and all the steps.
Source code in quadra/tasks/base.py
82 83 84 85 86 87 88 89 90 |
|
export()
¶
Export model for production.
Source code in quadra/tasks/base.py
70 71 72 |
|
finalize()
¶
Finalize the experiment.
Source code in quadra/tasks/base.py
78 79 80 |
|
generate_report()
¶
Generate a report.
Source code in quadra/tasks/base.py
74 75 76 |
|
prepare()
¶
Prepare the experiment.
Source code in quadra/tasks/base.py
46 47 48 |
|
save_config()
¶
Save the experiment configuration when running an Hydra experiment.
Source code in quadra/tasks/base.py
40 41 42 43 44 |
|
test()
¶
Test the model.
Source code in quadra/tasks/base.py
66 67 68 |
|
train()
¶
Train the model.
Source code in quadra/tasks/base.py
62 63 64 |
|