base
Evaluation(config, model_path, report_folder=None)
¶
Bases: Task
Base Evaluation Task with deployment models.
Parameters:
-
config
(
DictConfig
) –The experiment configuration
-
model_path
(
str
) –The model path.
-
report_folder
(
Optional[str]
) –The report folder. Defaults to None.
Raises:
-
ValueError
–If the experiment path is not provided
Source code in quadra/tasks/base.py
305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 |
|
deployment_model: RecursiveScriptModule
property
writable
¶
prepare()
¶
Prepare the evaluation.
Source code in quadra/tasks/base.py
333 334 335 |
|
LightningTask(config, checkpoint_path=None, run_test=False, report=False, export_type=None)
¶
Bases: Generic[DataModuleT]
, Task[DataModuleT]
Base Experiment Task.
Parameters:
-
config
(
DictConfig
) –The experiment configuration
-
checkpoint_path
(
Optional[str]
) –The path to the checkpoint to load the model from. Defaults to None.
-
run_test
(
bool
) –Whether to run the test after training. Defaults to False.
-
report
(
bool
) –Whether to generate a report. Defaults to False.
-
export_type
(
Optional[List[str]]
) –List of export method for the model, e.g. [torchscript]. Defaults to None.
Source code in quadra/tasks/base.py
102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 |
|
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
261 262 263 264 265 266 267 268 |
|
execute()
¶
Execute the experiment and all the steps.
Source code in quadra/tasks/base.py
270 271 272 273 274 275 276 277 278 279 280 |
|
finalize()
¶
Finalize the experiment.
Source code in quadra/tasks/base.py
243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 |
|
prepare()
¶
Prepare the experiment.
Source code in quadra/tasks/base.py
121 122 123 124 125 126 127 128 129 130 131 |
|
test()
¶
Test the model.
Source code in quadra/tasks/base.py
238 239 240 241 |
|
train()
¶
Train the model.
Source code in quadra/tasks/base.py
228 229 230 231 232 233 234 235 236 |
|
PlaceholderTask
¶
Bases: Task
Placeholder task.
execute()
¶
Execute the task and all the steps.
Source code in quadra/tasks/base.py
286 287 288 289 290 |
|
Task(config, export_type=None)
¶
Bases: Generic[DataModuleT]
Base Experiment Task.
Parameters:
-
config
(
DictConfig
) –The experiment configuration.
-
export_type
(
Optional[List[str]]
) –List of export method for the model, e.g. [torchscript]. Defaults to None.
Source code in quadra/tasks/base.py
31 32 33 34 35 36 |
|
datamodule: DataModuleT
property
writable
¶
execute()
¶
Execute the experiment and all the steps.
Source code in quadra/tasks/base.py
80 81 82 83 84 85 86 87 88 |
|
export()
¶
Export model for production.
Source code in quadra/tasks/base.py
68 69 70 |
|
finalize()
¶
Finalize the experiment.
Source code in quadra/tasks/base.py
76 77 78 |
|
generate_report()
¶
Generate a report.
Source code in quadra/tasks/base.py
72 73 74 |
|
prepare()
¶
Prepare the experiment.
Source code in quadra/tasks/base.py
44 45 46 |
|
save_config()
¶
Save the experiment configuration when running an Hydra experiment.
Source code in quadra/tasks/base.py
38 39 40 41 42 |
|
test()
¶
Test the model.
Source code in quadra/tasks/base.py
64 65 66 |
|
train()
¶
Train the model.
Source code in quadra/tasks/base.py
60 61 62 |
|