Skip to content

Ge2yr/ml-utils-experiments

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

18 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

nn-benchmarks-baselines

Vanilla PyTorch training loops for MNIST / CIFAR-10 / CIFAR-100 with ResNet and a simple CNN.
Includes CSV logging, checkpoints, AMP (mixed precision), schedulers, and plots. No proprietary logic.

Quickstart (Windows PowerShell)

python -m venv .venv
. .\.venv\Scripts\Activate.ps1
pip install -r requirements.txt
python train.py --dataset cifar10 --model resnet18 --epochs 20 --augment --amp --out runs/cifar10_resnet18
python plots.py --log runs/cifar10_resnet18/log.csv
python eval.py --dataset cifar10 --model resnet18 --ckpt runs/cifar10_resnet18/checkpoints/best.pt

About

Clean, reproducible ML experiment scaffolding (datasets, training loop, plots).

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages