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
9e67724d
Commit
9e67724d
authored
Aug 31, 2017
by
Davis King
Browse files
Clarified spec
parent
b8dc0044
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 @
9e67724d
...
@@ -428,6 +428,13 @@ namespace dlib
...
@@ -428,6 +428,13 @@ namespace dlib
defined above. In particular, it defines a fully connected layer that
defined above. In particular, it defines a fully connected layer that
takes an input tensor and multiplies it by a weight matrix and outputs the
takes an input tensor and multiplies it by a weight matrix and outputs the
results.
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() == get_num_outputs()
- OUT.nr() == 1
- OUT.nc() == 1
!*/
!*/
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