| 36 | |
| 37 | @dataclass |
| 38 | class CommonCfg: |
| 39 | wandb: WandbCfg |
| 40 | checkpoint: CheckpointCfg |
| 41 | trainer: TrainerCfg |
| 42 | flow: FlowPredictorCfg |
| 43 | dataset: list[DatasetCfg] |
| 44 | frame_sampler: FrameSamplerCfg |
| 45 | model: ModelCfg |
| 46 | loss: list[LossCfg] |
| 47 | visualizer: list[VisualizerCfg] |
| 48 | cropping: CroppingCfg |
| 49 | |
| 50 | |
| 51 | T = TypeVar("T") |
nothing calls this directly
no outgoing calls
no test coverage detected