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
e74c221b
Commit
e74c221b
authored
Sep 25, 2015
by
Davis King
Browse files
clarified spec
parent
cd1d1447
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
5 deletions
+7
-5
dlib/dnn/input_abstract.h
dlib/dnn/input_abstract.h
+7
-5
No files found.
dlib/dnn/input_abstract.h
View file @
e74c221b
...
...
@@ -20,11 +20,11 @@ namespace dlib
of the input layer is to convert an input_type into a tensor. Nothing more
and nothing less.
Note that there is no dlib::EXAMPLE_INPUT_LAYER type. It is shown here
purely to
document the interface that an input layer object must implement.
If you
are using some kind of image or matrix object as your input_type
then you
can use the provided dlib::input layer type defined below.
Otherwise, you
need to define your own custom input layer.
Note that there is no dlib::EXAMPLE_INPUT_LAYER type. It is shown here
purely to
document the interface that an input layer object must implement.
If you
are using some kind of image or matrix object as your input_type
then you
can use the provided dlib::input layer type defined below.
Otherwise, you
need to define your own custom input layer.
!*/
public:
...
...
@@ -73,6 +73,8 @@ namespace dlib
- Normally you would have #data.num_samples() == distance(begin,end) but
you can also expand the output by some integer factor so long as the loss
you use can deal with it correctly.
- The data in the ith sample in #data corresponds to
*(begin+i/sample_expansion_factor).
!*/
};
...
...
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