File size: 961 Bytes
8652b14 681f346 8652b14 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | # 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: df_video_worldmemminecraft # 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: online # 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
|