generated from ashleve/lightning-hydra-template
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy path.env.example
More file actions
24 lines (19 loc) · 947 Bytes
/
.env.example
File metadata and controls
24 lines (19 loc) · 947 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# example of file for storing private and user specific environment variables, like keys or system paths
# rename it to ".env" (excluded from version control by default)
# .env is loaded by train.py automatically
# hydra allows you to reference variables in .yaml configs with special syntax: ${oc.env:MY_VAR}
### Data Paths ###
# in case your data path is not in PROJECT_ROOT/data, replace the following DATA_PATH variable by
# your own data path and override paths=custom in all your commands
ASCENT_DATA_PATH="./data"
### Logs Paths ###
# in case your logs path is not in PROJECT_ROOT/logs, replace the following LOGS_PATH variable by
# your own logs path and and override paths=custom in all your commands
ASCENT_LOGS_PATH="./logs"
### Other Paths ###
MY_VAR="/home/user/my/system/path"
### API keys ###
COMET_API_KEY=<your-comet-api-key>
WANDB_API_KEY=<your-wandb-api-key>
### SLURM config ###
SLURM_MAIL_USER="<mail-address-to-notify>"