Skip to content
Felix Dittrich edited this page Jan 17, 2025 · 5 revisions

Welcome to the doctr wiki!

Maintainer notes

Release process

Then build the conda package and upload to anaconda:

conda build purge
conda build purge-all
rm -rf conda-dist/
BUILD_VERSION='X.Y.Z' python setup.py sdist
mkdir conda-dist
conda-build ./conda/ -c pytorch --output-folder conda-dist
ls -l conda-dist/noarch/*conda

anaconda upload conda-dist/noarch/*conda -u mindee

Training process

Classification & Orientation

--epochs 40
- default config (`batch_size` adjusted to machine capacity)

Recognition

--epochs 20
- default config (`batch_size` adjusted to machine capacity)

Detection

TODO: Adjust after experiments

--epochs 25
-b 4
--grad_accumulation 16 (effective bs of 64)
--rotation
--eval-straight (faster eval)
--save-interval-epoch
--optim adamw
--lr 0.0001