You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A lightweight machine learning toolkit for researchers.
NNCore is a library that provides common functionalities for Machine Learning and Deep Learning researchers. This project aims at helping users focus more on science but not engineering during research. The essential functionalities include but are not limited to:
Universal I/O APIs
Efficient implementations of layers and losses that are not included in PyTorch
Extended methods for distributed training
More powerful data loading techniques
An engine that can take over the whole training and testing process, with all the baby-sitting works (stage control, optimizer configuration, lr scheduling, checkpoint management, metrics & tensorboard writing, etc.) done automatically. See an example for details.
Note that some methods in the library work with PyTorch 2.0+, but the installation of PyTorch is not necessary.
Continuous Integration
Platform / Python Version
3.9
3.10
3.11
3.12
Ubuntu 22.04
Ubuntu 24.04
macOS 14.x
macOS 15.x
Windows Server 2025
Installation
You may install nncore directly from PyPI
pip install nncore
or manually from source
git clone https://github.com/yeliudev/nncore.git
cd nncore
pip install -e .
Getting Started
Please refer to our documentation for how to incorporate nncore into your projects.
Acknowledgements
This library is licensed under the MIT License. Part of the code in this project is modified from mmcv and fvcore with many thanks to the original authors.
About
📦 A lightweight machine learning toolkit for researchers, providing common model design & learning functionalities.