m-chrzan.xyz
aboutsummaryrefslogtreecommitdiff
path: root/experiments/net.yaml
diff options
context:
space:
mode:
authorMarcin Chrzanowski <m@m-chrzan.xyz>2021-05-04 16:08:14 +0200
committerMarcin Chrzanowski <m@m-chrzan.xyz>2021-05-04 16:08:14 +0200
commit2511b220955998e088964b7ce01b5714bea50e29 (patch)
tree8dc6582bd645915c112cb3b75e956753ad20b05c /experiments/net.yaml
parent742cd10f8b96718d711c785ab9472bc5b7a92c2a (diff)
Add base net config
Diffstat (limited to 'experiments/net.yaml')
-rw-r--r--experiments/net.yaml38
1 files changed, 38 insertions, 0 deletions
diff --git a/experiments/net.yaml b/experiments/net.yaml
new file mode 100644
index 0000000..68e171f
--- /dev/null
+++ b/experiments/net.yaml
@@ -0,0 +1,38 @@
+type: classification
+lr: 0.01
+batch_size: 100
+batch_norm: true
+epochs: 30
+augmentations:
+ - rotation: 0
+convolutions:
+ - in_channels: 1
+ out_channels: 8
+ size: 11
+ padding: 5
+ - in_channels: 8
+ out_channels: 16
+ - in_channels: 16
+ out_channels: 16
+ - in_channels: 16
+ out_channels: 16
+ max_pool: true
+ - in_channels: 16
+ out_channels: 32
+ max_pool: true
+ - in_channels: 32
+ out_channels: 64
+ max_pool: true
+ - in_channels: 64
+ out_channels: 128
+ - in_channels: 128
+ out_channels: 256
+linears:
+ - in_features: 2304
+ out_features: 1024
+ - in_features: 1024
+ out_features: 512
+ - in_features: 512
+ out_features: 150
+ - in_features: 150
+ out_features: 150