Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
D
dlib
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
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
钟尚武
dlib
Commits
1ee143d4
Commit
1ee143d4
authored
Jul 06, 2016
by
Davis King
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'faq-changes' of
git://github.com/e-fominov/dlib
into e-fominov-faq-changes
parents
cf421243
ed98216e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
26 additions
and
0 deletions
+26
-0
faq.xml
docs/docs/faq.xml
+26
-0
No files found.
docs/docs/faq.xml
View file @
1ee143d4
...
...
@@ -329,5 +329,31 @@ cross_validate_trainer_threaded(trainer,
<!-- ************************************************************************* -->
<questions
group=
"DNN"
>
<question
text=
"Why can't I use DNN module with Visual Studio?"
>
The reason for creating the dlib DNN tools is to provide a clean C++ API for
doing this kind of machine learning. Such an API was noticeably lacking
from all the other DNN libraries. DNN module is written with C++ 11 standard.
Unfortunately, Visual Studio does not support all C++ 11 standard requirements
(for the state of VS 2015 Update 3). Hopefully, future versions of Visual Studio
will work better.
</question>
<question
text=
"Why can't change network architecture at runtime?"
>
A major design goal of this API is to let users create new loss layers,
computational layers, and solvers without needing to understand or even look
at the dlib internals. A lot of the API decisions are based on what makes the
interface a user needs to implement for new layer creation simple, and if
you look at it you will find that it's far simpler than many other known
DNN libraries.
Since it takes several days to train models, needing to recompile to change
the network architecture isn't a big deal.
DNN module is designed to work in production enviroment where you need maximal
possible performance and reliability.
</question>
</questions>
<!-- ************************************************************************* -->
</doc>
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