-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconvnet_cuda.json
73 lines (73 loc) · 1.71 KB
/
convnet_cuda.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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"layers": [
{
"_realType": "ConvoLayer",
"name": "C1",
"momentum": 0.9,
"weightDecay": 0.0005,
"windowSizeX": 5,
"windowSizeY": 5,
"strideX": 1,
"strideY": 1,
"padWidth": 0,
"padHeight": 0,
"inputDepth": 1,
"outputDepth": 32
},
{
"_realType": "MaxPoolLayer",
"name" : "MP1",
"windowSizeX": 2,
"windowSizeY": 2
},
{
"_realType": "ConvoLayer",
"name": "C3",
"momentum": 0.9,
"weightDecay": 0.0005,
"windowSizeX": 4,
"windowSizeY": 4,
"strideX": 1,
"strideY": 1,
"inputDepth": 32,
"outputDepth": 64
},
{
"_realType": "MaxPoolLayer",
"name": "MP2",
"windowSizeX": 3,
"windowSizeY": 3
},
{
"_realType": "LinearLayer",
"name": "L6",
"momentum": 0.9,
"weightDecay": 0.0005,
"numInputs": 576,
"numOutputs": 100
},
{
"_realType": "TanhNeuronLayer",
"name": "L6-NL"
},
{
"_realType": "LinearLayer",
"name": "L7",
"momentum": 0.9,
"weightDecay": 0.0005,
"numInputs": 100,
"numOutputs": 10
},
{
"_realType": "SoftmaxLayer",
"name": "soft"
}
],
"cost": {
"_realType": "LogLossCost"
},
"device": {
"_realType": "cuda",
"deviceId": 0
}
}