-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.yaml
59 lines (57 loc) · 1.11 KB
/
config.yaml
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
49
50
51
52
53
54
55
56
57
58
59
# Task to run.
task: spectral_unet_fl
# Default config
default:
runtime:
cuda: true
logging:
# Logging to Weights and Bias dashboard
wandb:
project_name: null
# Saving checkpoint to S3
checkpoint:
save_name: null
save_epochs: null
training:
epochs: 1
batch_size: 1
subsample: null
# Environment-specific config
envs:
# Running on AWS webserver
aws:
runtime:
cuda: true
# Running on beefy desktop with GPU
desktop:
runtime:
cuda: true
# Running on wimpy laptop, no GPU
laptop:
runtime:
cuda: false
# Task-specific config
tasks:
# Spectral U-net with feature loss
spectral_unet_fl:
logging:
wandb:
project_name: spectral-u-net
envs:
aws:
logging:
checkpoint:
save_name: spectral-u-net
training:
epochs: 6
batch_size: 64
desktop:
training:
epochs: 5
batch_size: 16
subsample: 128
laptop:
training:
epochs: 5
batch_size: 1
subsample: 512