-
Notifications
You must be signed in to change notification settings - Fork 374
Expand file tree
/
Copy pathlayers.gc.cfg
More file actions
112 lines (98 loc) · 1.11 KB
/
layers.gc.cfg
File metadata and controls
112 lines (98 loc) · 1.11 KB
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
[data]
type=data
dataIdx=0
[labels]
type=data
dataIdx=1
[conv32a]
type=conv
inputs=data
filters=16
padding=0
stride=1
filterSize=3
channels=3
neuron=relu
initW=0.3
initB=1
partialSum=1
sharedBiases=true
gpu=0
[conv32b]
type=conv
inputs=data
filters=16
padding=0
stride=1
filterSize=3
channels=3
neuron=relu
initW=0.3
initB=1
partialSum=1
sharedBiases=true
gpu=1
[conv32c]
type=conv
inputs=data
filters=16
padding=0
stride=1
filterSize=3
channels=3
neuron=relu
initW=0.3
initB=1
partialSum=1
sharedBiases=true
gpu=2
[rnorm1a]
type=cmrnorm
inputs=conv32a
channels=16
size=5
[rnorm1b]
type=cmrnorm
inputs=conv32b
channels=16
size=5
[rnorm1c]
type=cmrnorm
inputs=conv32c
channels=16
size=5
[fc16a]
type=fc
outputs=16
inputs=rnorm1a,rnorm1b,rnorm1c
initW=0.1,0.1,0.1
gpu=0
[fc16b]
type=fc
outputs=16
inputs=rnorm1b,rnorm1c,rnorm1a
initW=0.1,0.1,0.1
gpu=1
[fc16c]
type=fc
outputs=16
inputs=rnorm1c,rnorm1a,rnorm1a
initW=0.1,0.1,0.1
gpu=2
[concat]
type=concat
inputs=fc16a,fc16c,fc16b
[fc10]
type=fc
inputs=concat
outputs=10
initW=0.08
gpu=0
[probs]
type=softmax
inputs=fc10
gpu=0
[logreg]
type=cost.logreg
inputs=labels,probs
gpu=0