-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathtrain_test.prototxt
168 lines (158 loc) · 2.56 KB
/
train_test.prototxt
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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
name: "MPIIGaze"
layers {
name: "MPII_train"
type: HDF5_DATA
top: "data"
top: "label"
hdf5_data_param {
source: "/home/trakis/Downloads/MPIIGaze/Data/train_list.txt" #the bigger, the more accurate
batch_size: 1000
}
include: { phase: TRAIN }
}
layers {
name: "MPII_test"
type: HDF5_DATA
top: "data"
top: "label"
hdf5_data_param {
source: "/home/trakis/Downloads/MPIIGaze/Data/test_list.txt"
batch_size: 1000
}
include: { phase: TEST }
}
layers {
name: "cutLabel"
type: SLICE
bottom: "label"
top: "gaze"
top: "headpose"
slice_param {
slice_dim: 1
slice_point: 2
}
}
layers {
name: "conv1"
type: CONVOLUTION
bottom: "data"
top: "conv1"
blobs_lr: 1
blobs_lr: 2
convolution_param {
num_output: 20 #learn 20 filters
kernel_size: 5 #each filter is 5x5
stride: 1 #step 1 pixel between each filter application
weight_filler {
type: "gaussian" # initialize filters from a guassian
std: 0.1 # distribution with a stdev=0.1(default mean:0.0)
}
bias_filler {
type: "constant" #initializes biases to zero
}
}
}
layers {
name: "pool1"
type: POOLING
bottom: "conv1"
top: "pool1"
pooling_param {
pool: MAX
kernel_size: 2
stride: 2
}
}
layers {
name: "conv2"
type: CONVOLUTION
bottom: "pool1"
top: "conv2"
blobs_lr: 1
blobs_lr: 2
convolution_param {
num_output: 50
kernel_size: 5
stride: 1
weight_filler {
type: "gaussian"
std: 0.01
}
bias_filler {
type: "constant"
}
}
}
layers {
name: "pool2"
type: POOLING
bottom: "conv2"
top: "pool2"
pooling_param {
pool: MAX
kernel_size: 2
stride: 2
}
}
layers {
name: "ip1"
type: INNER_PRODUCT
bottom: "pool2"
top: "ip1"
blobs_lr: 1
blobs_lr: 2
inner_product_param {
num_output: 500
weight_filler {
type: "xavier"
}
bias_filler {
type: "constant"
}
}
}
layers {
name: "relu1"
type: RELU
bottom: "ip1"
top: "ip1"
}
layers {
name: "concat_headpose_eyeappearance"
type: CONCAT
bottom: "ip1"
bottom: "headpose"
top: "cat"
}
layers {
name: "ip2"
type: INNER_PRODUCT
bottom: "cat"
top: "ip2"
blobs_lr: 1
blobs_lr: 2
inner_product_param {
num_output: 2
weight_filler {
type: "xavier"
}
bias_filler {
type: "constant"
}
}
}
layers {
name: "accuracy"
type: ACCURACY
bottom: "ip2"
bottom: "gaze"
top: "accuracy"
include: { phase: TEST }
}
layers {
name: "loss"
type: EUCLIDEAN_LOSS
bottom: "ip2"
bottom: "gaze"
top: "loss"
}