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
333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 |
|
deployment_model: BaseEvaluationModel
property
writable
¶
Deployment model.
prepare()
¶
Prepare the evaluation.
Source code in quadra/tasks/base.py
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 |
|
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
291 292 293 294 295 296 297 298 |
|
execute()
¶
Execute the experiment and all the steps.
Source code in quadra/tasks/base.py
300 301 302 303 304 305 306 307 308 309 310 |
|
finalize()
¶
Finalize the experiment.
Source code in quadra/tasks/base.py
272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 |
|
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
251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 |
|
train()
¶
Train the model.
Source code in quadra/tasks/base.py
240 241 242 243 244 245 246 247 248 249 |
|
PlaceholderTask
¶
Bases: Task
Placeholder task.
execute()
¶
Execute the task and all the steps.
Source code in quadra/tasks/base.py
316 317 318 319 320 |
|
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 |
|