Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
O
opencv_contrib
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
opencv_contrib
Commits
15358eb4
Commit
15358eb4
authored
Jul 15, 2016
by
Anna Petrovicheva
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Proto changes
parent
201b6b07
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
29 deletions
+10
-29
caffe.proto
modules/dnn/src/caffe/caffe.proto
+10
-29
No files found.
modules/dnn/src/caffe/caffe.proto
View file @
15358eb4
...
@@ -98,19 +98,6 @@ message PermuteParameter {
...
@@ -98,19 +98,6 @@ message PermuteParameter {
repeated
uint32
order
=
1
;
repeated
uint32
order
=
1
;
}
}
/// Message that stores parameters used by FlattenLayer
message
FlattenParameter
{
// The first axis to flatten: all preceding axes are retained in the output.
// May be negative to index from the end (e.g., -1 for the last axis).
optional
int32
axis
=
1
[
default
=
1
];
// The last axis to flatten: all following axes are retained in the output.
// May be negative to index from the end (e.g., the default -1 for the last
// axis).
optional
int32
end_axis
=
2
[
default
=
-
1
];
}
// Message that stores parameters used by NormalizeBBoxLayer
// Message that stores parameters used by NormalizeBBoxLayer
message
NormalizeBBoxParameter
{
message
NormalizeBBoxParameter
{
optional
bool
across_spatial
=
1
[
default
=
true
];
optional
bool
across_spatial
=
1
[
default
=
true
];
...
@@ -146,18 +133,6 @@ message PriorBoxParameter {
...
@@ -146,18 +133,6 @@ message PriorBoxParameter {
repeated
float
variance
=
6
;
repeated
float
variance
=
6
;
}
}
// The normalized bounding box [0, 1] w.r.t. the input image size.
message
NormalizedBBox
{
optional
float
xmin
=
1
;
optional
float
ymin
=
2
;
optional
float
xmax
=
3
;
optional
float
ymax
=
4
;
optional
int32
label
=
5
;
optional
bool
difficult
=
6
;
optional
float
score
=
7
;
optional
float
size
=
8
;
}
// Message that store parameters used by DetectionOutputLayer
// Message that store parameters used by DetectionOutputLayer
message
DetectionOutputParameter
{
message
DetectionOutputParameter
{
// Number of classes to be predicted. Required!
// Number of classes to be predicted. Required!
...
@@ -186,6 +161,13 @@ message DetectionOutputParameter {
...
@@ -186,6 +161,13 @@ message DetectionOutputParameter {
optional
float
visualize_threshold
=
11
;
optional
float
visualize_threshold
=
11
;
}
}
message
NonMaximumSuppressionParameter
{
// Threshold to be used in nms.
optional
float
nms_threshold
=
1
[
default
=
0.3
];
// Maximum number of results to be kept.
optional
int32
top_k
=
2
;
}
message
Datum
{
message
Datum
{
optional
int32
channels
=
1
;
optional
int32
channels
=
1
;
optional
int32
height
=
2
;
optional
int32
height
=
2
;
...
@@ -484,13 +466,12 @@ message LayerParameter {
...
@@ -484,13 +466,12 @@ message LayerParameter {
optional
ConvolutionParameter
convolution_param
=
106
;
optional
ConvolutionParameter
convolution_param
=
106
;
optional
CropParameter
crop_param
=
137
;
optional
CropParameter
crop_param
=
137
;
optional
DataParameter
data_param
=
107
;
optional
DataParameter
data_param
=
107
;
optional
DetectionOutputParameter
detection_output_param
=
14
2
;
optional
DetectionOutputParameter
detection_output_param
=
14
1
;
optional
DropoutParameter
dropout_param
=
108
;
optional
DropoutParameter
dropout_param
=
108
;
optional
DummyDataParameter
dummy_data_param
=
109
;
optional
DummyDataParameter
dummy_data_param
=
109
;
optional
EltwiseParameter
eltwise_param
=
110
;
optional
EltwiseParameter
eltwise_param
=
110
;
optional
ExpParameter
exp_param
=
111
;
optional
ExpParameter
exp_param
=
111
;
optional
FlattenParameter
flatten_param
=
135
;
optional
FlattenParameter
flatten_param
=
135
;
optional
FlattenParameter
flatten_param
=
139
;
optional
HDF5DataParameter
hdf5_data_param
=
112
;
optional
HDF5DataParameter
hdf5_data_param
=
112
;
optional
HDF5OutputParameter
hdf5_output_param
=
113
;
optional
HDF5OutputParameter
hdf5_output_param
=
113
;
optional
HingeLossParameter
hinge_loss_param
=
114
;
optional
HingeLossParameter
hinge_loss_param
=
114
;
...
@@ -501,12 +482,12 @@ message LayerParameter {
...
@@ -501,12 +482,12 @@ message LayerParameter {
optional
LRNParameter
lrn_param
=
118
;
optional
LRNParameter
lrn_param
=
118
;
optional
MemoryDataParameter
memory_data_param
=
119
;
optional
MemoryDataParameter
memory_data_param
=
119
;
optional
MVNParameter
mvn_param
=
120
;
optional
MVNParameter
mvn_param
=
120
;
optional
NormalizeBBoxParameter
normalize_bbox_param
=
1
40
;
optional
NormalizeBBoxParameter
normalize_bbox_param
=
1
39
;
optional
PermuteParameter
permute_param
=
138
;
optional
PermuteParameter
permute_param
=
138
;
optional
PoolingParameter
pooling_param
=
121
;
optional
PoolingParameter
pooling_param
=
121
;
optional
PowerParameter
power_param
=
122
;
optional
PowerParameter
power_param
=
122
;
optional
PReLUParameter
prelu_param
=
131
;
optional
PReLUParameter
prelu_param
=
131
;
optional
PriorBoxParameter
prior_box_param
=
14
1
;
optional
PriorBoxParameter
prior_box_param
=
14
0
;
optional
PythonParameter
python_param
=
130
;
optional
PythonParameter
python_param
=
130
;
optional
ReductionParameter
reduction_param
=
136
;
optional
ReductionParameter
reduction_param
=
136
;
optional
ReLUParameter
relu_param
=
123
;
optional
ReLUParameter
relu_param
=
123
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment