File size: 1,146 Bytes
b47a1ce 5dc5f97 b47a1ce | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | # configuration parsing starts here
defaults:
- experiment: exp_video # experiment yaml file name in configurations/experiments folder [fixme]
- dataset: video_minecraft # dataset yaml file name in configurations/dataset folder [fixme]
- algorithm: dememwm_memory_dit # algorithm yaml file name in configurations/algorithm folder [fixme]
- cluster: null # optional, cluster yaml file name in configurations/cluster folder. Leave null for local compute
debug: false # global debug flag will be passed into configuration of experiment, dataset and algorithm
wandb:
entity: turlin # wandb account name / organization name [fixme]
project: worldmem # wandb project name; if not provided, defaults to root folder name [fixme]
mode: offline # set wandb logging to online, offline or dryrun
resume: null # wandb run id to resume logging and loading checkpoint from
load: null # wandb run id containing checkpoint or a path to a checkpoint file
auto_resume: true # automatically resume training from output_dir/checkpoints when available
resume_ckpt_path: null # explicit full Lightning checkpoint path for deterministic training resume
|