Efficient workflow and reproducibility are extremely important components in every machine learning projects, which enable to:
PyTorch Lightning and Hydra serve as the foundation upon this template. Such reasonable technology stack for deep learning prototyping offers a comprehensive and seamless solution, allowing you to effortlessly explore different tasks across a variety of hardware accelerators such as CPUs, multi-GPUs, and TPUs. Furthermore, it includes a curated collection of best practices and extensive documentation for greater clarity and comprehension.
This template could be used as is for some basic tasks like Classification, Segmentation or Metric Learning, or be easily extended for any other tasks due to high-level modularity and scalable structure.
As a baseline I have used gorgeous Lightning Hydra Template, reshaped and polished it, and implemented more features which can improve overall efficiency of workflow and reproducibility.
# clone template git clone https://github.com/gorodnitskiy/yet-another-lightning-hydra-template cd yet-another-lightning-hydra-template # install requirements pip install -r requirements.txt
Or run the project in docker. See more in Docker section.
PyTorch Lightning - a lightweight deep learning framework / PyTorch wrapper for professional AI researchers and machine learning engineers who need maximal flexibility without sacrificing performance at scale.
Hydra - a framework that simplifies configuring complex applications. The key feature is the ability to dynamically create a hierarchical configuration by composition and override it through config files and the command line.
The structure of a machine learning project can vary depending on the specific requirements and goals of the project, as well as the tools and frameworks being used. However, here is a general outline of a common directory structure for a machine learning project:
src/data/logs/tests/notebooks/, docs/, etc.In this particular case, the directory structure looks like:
├── configs <- Hydra configuration files
│ ├── callbacks <- Callbacks configs
│ ├── datamodule <- Datamodule configs
│ ├── debug <- Debugging configs
│ ├── experiment <- Experiment configs
│ ├── extras <- Extra utilities configs
│ ├── hparams_search <- Hyperparameter search configs
│ ├── hydra <- Hydra settings configs
│ ├── local <- Local configs
│ ├── logger <- Logger configs
│ ├── module <- Module configs
│ ├── paths <- Project paths configs
│ ├── trainer <- Trainer configs
│ │
│ ├── eval.yaml <- Main config for evaluation
│ └── train.yaml <- Main config for training
│
├── data <- Project data
├── logs <- Logs generated by hydra, lightning loggers, etc.
├── notebooks <- Jupyter notebooks.
├── scripts <- Shell scripts
│
├── src <- Source code
│ ├── callbacks <- Additional callbacks
│ ├── datamodules <- Lightning datamodules
│ ├── modules <- Lightning modules
│ ├── utils <- Utility scripts
│ │
│ ├── eval.py <- Run evaluation
│ └── train.py <- Run training
│
├── tests <- Tests of any kind
│
├── .dockerignore <- List of files ignored by docker
├── .gitattributes <- List of additional attributes to pathnames
├── .gitignore <- List of files ignored by git
├── .pre-commit-config.yaml <- Configuration of pre-commit hooks for code formatting
├── Dockerfile <- Dockerfile
├── Makefile <- Makefile with commands like `make train` or `make test`
├── pyproject.toml <- Configuration options for testing and linting
├── requirements.txt <- File for installing python dependencies
├── setup.py <- File for installing project as a package
└── README.md
Before starting a project, you need to think about the following things to unsure in results reproducibility:
This template could be used as is for some basic tasks like Classification, Segmentation or Metric Learning approach, but if you need to do something more complex, here it is a general workflow:
python src/train.py experiment=experiment_name.yaml
# using Hydra multirun mode python src/train.py -m hparams_search=mnist_optuna
python src/train.py -m logger=csv module.optimizer.weight_decay=0.,0.00001,0.0001
The template contains example with MNIST classification, which uses for tests by the way.
If you run python src/train.py, you will get something like this:

At the start, you need to create PyTorch Dataset for you task. It has to include __getitem__ and __len__ methods.
Maybe you can use as is or easily modify already implemented Datasets in the template.
See more details in PyTorch documentation.
Also, it could be useful to see section about how it is possible to save data for training and evaluation.
Then, you need to create DataModule using PyTorch Lightning DataModule API. By default, API has the following methods:
prepare_data (optional): perform data operations on CPU via a single process, like load and preprocess data, etc.setup (optional): perform data operations on every GPU, like train/val/test splits, create datasets, etc.train_dataloader: used to generate the training dataloader(s)val_dataloader: used to generate the validation dataloader(s)test_dataloader: used to generate the test dataloader(s)predict_dataloader (optional): used to generate the prediction dataloader(s)</details>from typing import Any, Dict, List, Optional, Union from torch.utils.data import DataLoader, Dataset from pytorch_lightning import LightningDataModule class YourDataModule(LightningDataModule): def __init__(self, *args: Any, **kwargs: Any) -> None: super().__init__() self.train_set: Optional[Dataset] = None self.valid_set: Optional[Dataset] = None self.test_set: Optional[Dataset] = None self.predict_set: Optional[Dataset] = None ... def prepare_data(self) -> None: # (Optional) Perform data operations on CPU via a single process # - load data # - preprocess data # - etc. ... def setup(self, stage: str) -> None: # (Optional) Perform data operations on every GPU: # - count number of classes # - build vocabulary # - perform train/val/test splits # - create datasets # - apply transforms (which defined explicitly in your datamodule) # - etc. if not self.train_set and not self.valid_set and not self.test_set: self.train_set = ... self.valid_set = ... self.test_set = ... if (stage == "predict") and not self.predict_set: self.predict_set = ... def train_dataloader(self) -> Union[DataLoader, List[DataLoader], Dict[str, DataLoader]]: # Used to generate the training dataloader(s) # This is the dataloader that the Trainer `fit()` method uses return DataLoader(self.train_set, ...) def val_dataloader(self) -> Union[DataLoader, List[DataLoader]]: # Used to generate the validation dataloader(s) # This is the dataloader that the Trainer `fit()` and `validate()` methods uses return DataLoader(self.valid_set, ...) def test_dataloader(self) -> Union[DataLoader, List[DataLoader]]: # Used to generate the test dataloader(s) # This is the dataloader that the Trainer `test()` method uses return DataLoader(self.test_set, ...) def predict_dataloader(self) -> Union[DataLoader, List[DataLoader]]: # Used to generate the prediction dataloader(s) # This is the dataloader that the Trainer `predict()` method uses return DataLoader(self.predict_set, ...) def teardown(self, stage: str) -> None: # Used to clean-up when the run is finished ...
See examples of datamodule configs in configs/datamodule folder.
By default, the template contains the following DataModules:
train_dataloader, val_dataloader and
test_dataloader return single DataLoader, predict_dataloader returns list of DataLoaderstrain_dataloader return dict of DataLoaders,
val_dataloader, test_dataloader and predict_dataloader return list of DataLoadersIn the template, DataModules has _get_dataset_ method to simplify Datasets instantiation.
Next, your need to create LightningModule using PyTorch Lightning LightningModule API. Minimum API has the following methods:
forward: use for inference only (separate from training_step)training_step: the complete training loopvalidation_step: the complete validation looptest_step: the complete test looppredict_step: the complete prediction loopconfigure_optimizers: define optimizers and LR schedulersAlso, you can override optional methods for each step to perform additional logic:
training_step_end: training step end operationstraining_epoch_end: training epoch end operationsvalidation_step_end: validation step end operationsvalidation_epoch_end: validation epoch end operationstest_step_end: test step end operationstest_epoch_end: test epoch end operations</details>from typing import Any from pytorch_lightning import LightningModule class LitModel(LightningModule): def __init__(self, *args: Any, **kwargs: Any): super().__init__() ... def forward(self, *args: Any, **kwargs: Any): ... def training_step(self, *args: Any, **kwargs: Any): ... def training_step_end(self, step_output: Any): ... def training_epoch_end(self, outputs: Any): ... def validation_step(self, *args: Any, **kwargs: Any): ... def validation_step_end(self, step_output: Any): ... def validation_epoch_end(self, outputs: Any): ... def test_step(self, *args: Any, **kwargs: Any): ... def test_step_end(self, step_output: Any): ... def test_epoch_end(self, outputs: Any): ... def configure_optimizers(self): ... def any_extra_hook(self, *args: Any, **kwargs: Any): ...
In the template, LightningModule has model_step method to adjust repeated operations, like forward or loss
calculation, which are required in training_step, validation_step and test_step.
The template offers the following Metrics API:
main metric: main metric, which also uses for all callbacks or trackers like model_checkpoint, early_stopping
or scheduler.monitor.valid_best metric: use for tracking the best validation metric. Usually it can be MaxMetric or MinMetric.additional metrics: additional metrics.Each metric config should contain _target_ key with metric class name and other parameters which are required by
metric. The template allows to use any metrics, for example from
torchmetrics or implemented by yourself (see examples in
modules/metrics/components/ or torchmetrics API).
See more details about implemented Metrics API and metrics config as a part of
network configs in configs/module/network folder.
Metric config example:
metrics: main: _target_: "torchmetrics.Accuracy" task: "binary" valid_best: _target_: "torchmetrics.MaxMetric" additional: AUROC: _target_: "torchmetrics.AUROC" task: "binary"
Also, the template includes few manually implemented metrics:
The template offers the following Losses API:
_target_ key with loss class name and other parameters which are required by loss.weight string in name will be wrapped by torch.tensor and cast to torch.float type before
passing to loss due to requirements from most of the losses.The template allows to use any losses, for example from
PyTorch or implemented by yourself (see examples in
modules/losses/components/).
See more details about implemented Losses API and loss config as a part of
network configs in configs/module/network folder.
Loss config examples:
loss: _target_: "torch.nn.CrossEntropyLoss"
loss: _target_: "torch.nn.BCEWithLogitsLoss" pos_weight: [0.25]
loss: _target_:


阿里Qoder团队推出的桌面端AI智能体
QoderWork 是阿里推出的本地优先桌面 AI 智能体,适配 macOS14+/Windows10+,以自然语言交 互实现文件管理、数据分析、AI 视觉生成、浏览器自动化等办公任务,自主拆解执行复杂工作流,数据本地运行零上传,技能市场可无限扩展,是高效的 Agentic 生产力办公助手。


全球首个AI音乐社区
音述AI是全球首个AI音乐社区,致力让每个人都能用音乐表达自我。音述AI提供零门槛AI创作工具,独创GETI法则帮助用户精准定义音乐风格,AI润色功能支持自动优化作品质感。音述AI支持交流讨论、二次创作与价值变现。针对中文用户的语言习惯与文化背景进行专门优化,支持国风融合、C-pop等本土音乐标签,让技术更好地承载人文表达。


一站式搞定所有学习需求
不再被海量信息淹没,开始真正理解知识。Lynote 可摘要 YouTube 视频、PDF、文章等内容。即时创建笔记,检测 AI 内容并下载资料,将您的学习效率提升 10 倍。


为AI短剧协作而生
专为AI短剧协作而生的AniShort正式发布,深度重构AI短剧全流程生产模式,整合创意策划、制作执行、实时协作、在线审片、资产复用等全链路功能,独创无限画布、双轨并行工业化工作流与Ani智能体助手,集成多款主流AI大模型,破解素材零散、版本混乱、沟通低效等行业痛点,助力3人团队效率提升800%,打造标准化、可追溯的AI短剧量产体系,是AI短剧团队协同创作、提升制作效率的核心工具。


能听懂你表达的视频模型
Seedance two是基于seedance2.0的中国大模型,支持图像、视频、音频、文本四种模态输入,表达方式更丰富,生成也更可控。


国内直接访问,限时3折
输入简单文字,生成想要的图片,纳米香蕉中文站基于 Google 模型的 AI 图片生成网站,支持文字生图、图生图。官网价格限时3折活动


职场AI,就用扣子
AI办公助手,复杂任务高效处理。办公效率低?扣子空间AI助手支持播客生成、PPT制作、网页开发及报告写作,覆盖科研、商业、舆情等领域的专家Agent 7x24小时响应,生活工作无缝切换,提升50%效率!


多风格AI绘画神器
堆友平台由阿里巴巴设计团队创建,作为一款AI驱动的设计工具,专为设计师提供一站式增长服务。功能覆盖海量3D素材、AI绘画、实时渲染以及专业抠图,显著提升设计品质和效率。平台不仅提供工具,还是一个促进创意交流和个人发展的空间,界面友好,适合所有级别的设计师和创意工作者。


零代码AI应用开发平台
零代码AI应用开发平台,用户只需一句话简单描述需求,AI能自动生成小程序、APP或H5网页应用,无需编写代码。


免费创建高清无水印Sora视频
Vora是一个免费创建高清无水印Sora视频的AI工具
最新AI工具、AI资讯
独家AI资源、AI项目落地

微信扫一扫关注公众号