-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathconfig.example.env
More file actions
48 lines (42 loc) · 1.7 KB
/
config.example.env
File metadata and controls
48 lines (42 loc) · 1.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
# DeepElbe local environment configuration template.
#
# Copy this file to config.local.env and edit the values for your machine.
# Do not copy config.local.env into a public repository.
# Do not store access tokens or API keys here. Use login tools, environment
# variables outside the repository, or your scheduler/CI secret store.
# Python/runtime paths.
export PYTHON_BIN="./.deepelbe_venv/bin/python"
export DATA_ROOT="."
export CHECKPOINT_ROOT="runs/checkpoints"
# Common experiment date and lag defaults.
export START_DATE="1996-01-01"
export END_DATE="2024-12-31"
export TRAIN_END="2015-12-31"
export VAL_END="2019-12-31"
export N_MIN="1"
export N_MAX="7"
export BATCH_SIZE="128"
export LR="1e-3"
export EPOCHS="200"
export FEATURE_STANDARDIZATION="1"
# Optional: override hidden layers used by training wrapper scripts.
# export HIDDEN="256 128"
# W&B defaults. Use `wandb login` or WANDB_API_KEY outside this file for auth.
export WANDB_PROJECT="DeepElbe"
export WANDB_ENTITY="your_wandb_entity"
export WANDB_MODE="offline"
export WANDB_DIR="${PWD}"
export WANDB_SERVICE_TRANSPORT="tcp"
# Data download defaults.
export STATION_CODE="01975"
export DWD_BASE_URL="https://opendata.dwd.de/climate_environment/CDC/observations_germany/climate/hourly/"
export WSV_BASE_URL="https://www.kuestendaten.de/DE/dynamisch/appl/data/daten_prod/prodNeuProd/direct_download"
# Slurm settings passed by submit_with_config.sh as sbatch command-line options.
export SLURM_ACCOUNT="your_project_account"
export SLURM_PARTITION="your_partition"
export SLURM_LOG_DIR="slurm_logs"
# Sweep launcher defaults.
export CONFIG_GLOB="sweeps/*_sweep.yaml"
export AGENT_COUNT_OXYGEN_LEVEL="30"
export AGENT_COUNT_HYPOXIA="30"
export AGENT_COUNT_DEFAULT="30"