-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathexample.yaml
More file actions
41 lines (32 loc) · 714 Bytes
/
Copy pathexample.yaml
File metadata and controls
41 lines (32 loc) · 714 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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
# @package _global_
# to execute this experiment run:
# python train.py experiment=example
defaults:
- override /data: mnist
- override /model: mnist
- override /callbacks: default
- override /trainer: default
# all parameters below will be merged with parameters from default configurations set above
# this allows you to overwrite only specified parameters
tags: ["mnist", "simple_dense_net"]
seed: 12345
trainer:
min_epochs: 10
max_epochs: 10
gradient_clip_val: 0.5
model:
optimizer:
lr: 0.002
net:
lin1_size: 128
lin2_size: 256
lin3_size: 64
compile: false
data:
batch_size: 64
logger:
wandb:
tags: ${tags}
group: "mnist"
aim:
experiment: "mnist"