|
1 | 1 | # @package _global_ |
2 | 2 |
|
| 3 | +# specify here default configuration |
| 4 | +# order of defaults determines the order in which configs override each other |
3 | 5 | defaults: |
4 | 6 | - _self_ |
5 | | - - data: mnist # choose datamodule with `test_dataloader()` for evaluation |
6 | | - - model: mnist |
7 | | - - logger: null |
8 | | - - trainer: default |
9 | | - - paths: default |
| 7 | + - data: butterfly_coords |
| 8 | + - model: predictive_geoclip |
| 9 | + - callbacks: default |
| 10 | + - logger: ${oc.env:LOGGER,wandb} |
| 11 | + - trainer: ${oc.env:TRAINER_PROFILE,default} |
| 12 | + - paths: ${oc.env:STORAGE_MODE,local} |
10 | 13 | - extras: default |
11 | 14 | - hydra: default |
| 15 | + - metrics: butterfly_predictive |
12 | 16 |
|
| 17 | + # experiment configs allow for version control of specific hyperparameters |
| 18 | + # e.g. best hyperparameters for given model and datamodule |
| 19 | + - experiment: null |
| 20 | + |
| 21 | + # config for hyperparameter optimization |
| 22 | + - hparams_search: null |
| 23 | + |
| 24 | + # optional local config for machine/user specific settings |
| 25 | + # it's optional since it doesn't need to exist and is excluded from version control |
| 26 | + - optional local: default |
| 27 | + |
| 28 | + # debugging config (enable through command line, e.g. `python train.py debug=default) |
| 29 | + - debug: null |
| 30 | + |
| 31 | +# task name, determines output directory path |
13 | 32 | task_name: "eval" |
14 | 33 |
|
| 34 | +# tags to help you identify your experiments |
| 35 | +# you can overwrite this in experiment configs |
| 36 | +# overwrite from command line with `python train.py tags="[first_tag, second_tag]"` |
15 | 37 | tags: ["dev"] |
16 | 38 |
|
| 39 | +# seed for random number generators in pytorch, numpy and python.random |
| 40 | +seed: 12345 |
| 41 | + |
17 | 42 | # passing checkpoint path is necessary for evaluation |
18 | | -ckpt_path: ??? |
| 43 | +ckpt_path: aether/logs/train/runs/2026-03-15_13-15-08/checkpoints/epoch_098.ckpt |
0 commit comments