-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcaffe.proto
More file actions
38 lines (37 loc) · 1.94 KB
/
caffe.proto
File metadata and controls
38 lines (37 loc) · 1.94 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
optional MultiBatchDataParameter multi_batch_data_param = xxxxxxx;
message MultiBatchDataParameter{
// Specify the data source.
optional string source = 1;
// Specify the batch size.
optional uint32 batch_size = 4 [default = 1];
// The rand_skip variable is for the data layer to skip a few data points
// to avoid all asynchronous sgd clients to start at the same point. The skip
// point would be set as rand_skip * rand(0,1). Note that rand_skip should not
// be larger than the number of keys in the database.
optional uint32 rand_skip = 7 [default = 0];
// Whether or not ImageLayer should shuffle the list of files at every epoch.
optional bool shuffle = 8 [default = false];
// It will also resize images if new_height or new_width are not zero.
optional uint32 new_height = 9 [default = 0];
optional uint32 new_width = 10 [default = 0];
// Specify if the images are color or gray
optional bool is_color = 11 [default = true];
// DEPRECATED. See TransformationParameter. For data pre-processing, we can do
// simple scaling and subtracting the data mean, if provided. Note that the
// mean subtraction is always carried out before scaling.
optional float scale = 2 [default = 1];
optional string mean_file = 3;
// DEPRECATED. See TransformationParameter. Specify if we would like to randomly
// crop an image.
optional uint32 crop_size = 5 [default = 0];
// DEPRECATED. See TransformationParameter. Specify if we want to randomly mirror
// data.
optional bool mirror = 6 [default = false];
optional string root_folder = 12 [default = ""];
// how many identities in one batch (identity_num_per_batch * img_num_per_identity should be equal to batch_size)
optional uint32 identity_num_per_batch = 13 [default = 1];
// how many images belong to one identites
optional uint32 img_num_per_identity = 14 [default = 1];
optional bool rand_gray = 15 [default = false];
optional bool rand_identity = 16 [default = true];
}