Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
OpenDAS
dlib
Commits
7bb7f8a2
Commit
7bb7f8a2
authored
Dec 23, 2015
by
Davis King
Browse files
Clarified spec
parent
18695b7b
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
0 deletions
+7
-0
dlib/dnn/layers_abstract.h
dlib/dnn/layers_abstract.h
+7
-0
No files found.
dlib/dnn/layers_abstract.h
View file @
7bb7f8a2
...
@@ -380,6 +380,13 @@ namespace dlib
...
@@ -380,6 +380,13 @@ namespace dlib
In particular, it defines a convolution layer that takes an input tensor
In particular, it defines a convolution layer that takes an input tensor
(nominally representing an image) and convolves it with a set of filters
(nominally representing an image) and convolves it with a set of filters
and then outputs the results.
and then outputs the results.
The dimensions of the tensors output by this layer are as follows (letting
IN be the input tensor and OUT the output tensor):
- OUT.num_samples() == IN.num_samples()
- OUT.k() == num_filters()
- OUT.nr() == 1+(IN.nr()-nr()%2)/stride_y()
- OUT.nc() == 1+(IN.nc()-nc()%2)/stride_x()
!*/
!*/
public:
public:
...
...
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