-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest.json
40 lines (40 loc) · 837 Bytes
/
test.json
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
[
{
"type": "layer",
"torch_module": "nn.Conv2d",
"in_channels": 1,
"out_channels": 6,
"kernel_size": [2, 2],
"stride": [1, 1],
"padding": [0, 0]
},
{
"type": "layer",
"torch_module": "nn.ReLU"
},
{
"type": "layer",
"torch_module": "nn.MaxPool2d",
"kernel_size": [2, 2],
"stride": [2, 2]
},
{
"type": "layer",
"torch_module": "nn.Conv2d",
"in_channels": 6,
"out_channels": 16,
"kernel_size": [5, 5],
"stride": [1, 1],
"padding": [0, 0]
},
{
"type": "layer",
"torch_module": "nn.ReLU"
},
{
"type": "layer",
"torch_module": "nn.MaxPool2d",
"kernel_size": [2, 2],
"stride": [2, 2]
}
]