feat: metadata used for training the models

This commit is contained in:
Robin Meersman 2025-12-17 20:49:23 +01:00
parent bb86371665
commit 834c0bd238

9
training.md Normal file
View file

@ -0,0 +1,9 @@
# Meta information about training
* training size: 2048 for optuna, 209715 for full training
* context sizes used: 128, 256
```bash
uv run python ./results/[cnn,autoencoder] train --method [full,optuna] \
--data-root ./data --dataset [genome,enwik9] --context [128,256] --size [2048,209715] \
--model-save-path ./models/<name> --model-load-path <path if full trainig, output from optuna>
```