NetsPresso Python Package
Project description
Start training models (including ViTs) with NetsPresso Trainer, compress and deploy your model with NetsPresso!
Website • Getting Started • Issues • Docs
Table of contents
Installation (Stable)
Prerequisites
- Python
>=3.10 - PyTorch
>=2.0.1
Install with pypi
pip install netspresso_trainer
Install with GitHub
pip install git+https://github.com/Nota-NetsPresso/netspresso-trainer.git@master
To install with editable mode,
git clone -b master https://github.com/Nota-NetsPresso/netspresso-trainer.git
pip install -e netspresso-trainer
Set-up with docker
Please clone this repository and refer to Dockerfile and docker-compose-example.yml.
For docker users, we provide more detailed guide in our Docs.
Getting started
Write your training script in train.py like:
from netspresso_trainer import train_cli
if __name__ == '__main__':
logging_dir = train_cli()
print(f"Training results are saved at: {logging_dir}")
Then, train your model with your own configuraiton:
python train.py\
--data config/data/huggingface/beans.yaml\
--augmentation config/augmentation/classification.yaml\
--model config/model/resnet/resnet50-classification.yaml\
--training config/training.yaml\
--logging config/logging.yaml\
--environment config/environment.yaml
Or you can start NetsPresso Trainer by just executing console script which has same feature.
netspresso-train\
--data config/data/huggingface/beans.yaml\
--augmentation config/augmentation/classification.yaml\
--model config/model/resnet/resnet50-classification.yaml\
--training config/training.yaml\
--logging config/logging.yaml\
--environment config/environment.yaml
Please refer to scripts/example_train.sh.
NetsPresso Trainer is compatible with NetsPresso service. We provide NetsPresso Trainer tutorial that contains whole procedure from model train to model compression and benchmark. Please refer to our colab tutorial.
Dataset preparation (Local)
NetsPresso Trainer is designed to accommodate a variety of tasks, each requiring different dataset formats. You can find the specific dataset formats for each task in our documentation.
If you are interested in utilizing open datasets, you can use them by following the instructions.
Image classification
Semantic segmentation
Object detection
Pose estimation
Dataset preparation (Huggingface)
NetsPresso Trainer is also compatible with huggingface dataset. To use datasets of huggingface, please check instructions in our documentations. This enables to utilize a wide range of pre-built datasets which are beneficial for various training scenarios.
Pretrained weights
Please refer to our official documentation for pretrained weights supported by NetsPresso Trainer.
Tensorboard
We provide basic tensorboard to track your training status. Run the tensorboard with the following command:
tensorboard --logdir ./outputs --port 50001 --bind_all
where PORT for tensorboard is 50001.
Note that the default directory of saving result will be ./outputs directory.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file netspresso_trainer-1.4.1.tar.gz.
File metadata
- Download URL: netspresso_trainer-1.4.1.tar.gz
- Upload date:
- Size: 175.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
00036a8450e21d782e2f57923cce471fd7899c194d488ddc09b6758123e5034e
|
|
| MD5 |
28fe5c93213ba8db911006598cea1ab3
|
|
| BLAKE2b-256 |
b6ec69091442281fea6468e0d95a7f9d16ff786c712811196c25f03e0e8cbfc5
|
File details
Details for the file netspresso_trainer-1.4.1-py3-none-any.whl.
File metadata
- Download URL: netspresso_trainer-1.4.1-py3-none-any.whl
- Upload date:
- Size: 305.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ddfae007d018530905625fba19c1b82f0e066950b494f81f32edf459f8928786
|
|
| MD5 |
4ddc4a455f50b0cad8349c12a6134329
|
|
| BLAKE2b-256 |
950ffaac42d9d3697283d4d9d34eaf8a726de22747fcaf8c4eb2ba2ba79df4f2
|