[docs]@dataclassclassDeepLearningSubtaskConfig(OptimizationSubtaskConfig):"""Deep Learning ``subtask`` config. Args: compile: Whether to compile the :class:`.BaseLitModule` before training. Requires :paramref:`OptimizationSubtaskConfig.device` to be set to ``"gpu"`` & a CUDA 7+ compatible GPU. save_every_n_train_steps: The frequency at which to save training checkpoints. ckpt_path: The path to a checkpoint to resume training from. """compile:bool=Falsesave_every_n_train_steps:int|None=1ckpt_path:str|None="last"