updated docs

pull/2118/head
Davis King 4 years ago
parent 3d738e1c2d
commit 610aa6349a

@ -224,10 +224,18 @@
<name>Deep Learning Introduction Part 2</name>
<link>dnn_introduction2_ex.cpp.html</link>
</item>
<item>
<name>Deep Learning Introduction Part 3</name>
<link>dnn_introduction3_ex.cpp.html</link>
</item>
<item>
<name>Deep Learning Imagenet Classifier</name>
<link>dnn_imagenet_ex.cpp.html</link>
</item>
<item>
<name>Deep Learning DCGAN</name>
<link>dnn_dcgan_train_ex.cpp.html</link>
</item>
<item>
<name>Deep Learning Imagenet Trainer </name>
<link>dnn_imagenet_train_ex.cpp.html</link>

@ -204,6 +204,14 @@ Davis E. King. <a href="http://jmlr.csail.mit.edu/papers/volume10/king09a/king09
<name>avg_pool</name>
<link>dlib/dnn/layers_abstract.h.html#avg_pool_</link>
</item>
<item>
<name>leaky_relu</name>
<link>dlib/dnn/layers_abstract.h.html#leaky_relu_</link>
</item>
<item>
<name>mish</name>
<link>dlib/dnn/layers_abstract.h.html#mish_</link>
</item>
<item>
<name>relu</name>
<link>dlib/dnn/layers_abstract.h.html#relu_</link>
@ -269,6 +277,14 @@ Davis E. King. <a href="http://jmlr.csail.mit.edu/papers/volume10/king09a/king09
<name>loss_binary_log</name>
<link>dlib/dnn/loss_abstract.h.html#loss_binary_log_</link>
</item>
<item>
<name>loss_multiclass_log_weighted</name>
<link>dlib/dnn/loss_abstract.h.html#loss_multiclass_log_weighted_</link>
</item>
<item>
<name>loss_binary_log_per_pixel</name>
<link>dlib/dnn/loss_abstract.h.html#loss_binary_log_per_pixel_</link>
</item>
<item>
<name>loss_multimulticlass_log</name>
<link>dlib/dnn/loss_abstract.h.html#loss_multimulticlass_log_</link>
@ -527,6 +543,8 @@ Davis E. King. <a href="http://jmlr.csail.mit.edu/papers/volume10/king09a/king09
<examples>
<example>dnn_introduction_ex.cpp.html</example>
<example>dnn_introduction2_ex.cpp.html</example>
<example>dnn_introduction3_ex.cpp.html</example>
<example>dnn_dcgan_train_ex.cpp.html</example>
<example>dnn_inception_ex.cpp.html</example>
<example>dnn_imagenet_ex.cpp.html</example>
<example>dnn_imagenet_train_ex.cpp.html</example>

@ -11,6 +11,34 @@
<!-- ************************************************************************************** -->
<current>
New Features and Improvements:
- Added CUDA implementation for loss_mean_squared_per_channel_and_pixel.
- Added DCGAN example in examples/dnn_dcgan_train_ex.cpp
- Added transfer learning example in examples/dnn_introduction3_ex.cpp
- Added leaky_relu activation layer
- Added mish activation layer
- Added loss_multiclass_log_weighted
- Added loss_binary_log_per_pixel
- Minor API simplifications in deep learning tooling.
- imglab can automatically select the number of image clusters when --cluster 0 is given.
- Added a relative epsilon termination option to svm_c_linear_trainer
- Support new version of OpenCV that doesn't have IplImage anymore.
Non-Backwards Compatible Changes:
Bug fixes:
- Corrected interpolate_bilinear for lab_pixel.
- Fix build errors in CUDA 10.2
- Make equal_error_rate() handle degenerate case where all scores are equal.
- Fix DLIB_ISO_CPP_ONLY not working
- Fix build errors in C++20 build mode.
- Fixed function_evaluation_request::set() invalidating function_evaluation_request::x()
</current>
<!-- ************************************************************************************** -->
<old name="19.19" date="Dec 14, 2019">
New Features and Improvements:
- Made find_min_global() and find_max_global() much faster when using them
to optimize inexpensive functions. These tools now measure the runtime of
@ -29,7 +57,7 @@ Bug fixes:
- Fix find_max() going into an infinite loop in some cases when a
non-differentiable function is given.
</current>
</old>
<!-- ************************************************************************************** -->

@ -132,6 +132,8 @@
<term file="dlib/dnn/loss_abstract.h.html" name="loss_binary_hinge_" include="dlib/dnn.h"/>
<term file="dlib/dnn/loss_abstract.h.html" name="loss_binary_log_" include="dlib/dnn.h"/>
<term file="dlib/dnn/loss_abstract.h.html" name="loss_multimulticlass_log_" include="dlib/dnn.h"/>
<term file="dlib/dnn/loss_abstract.h.html" name="loss_multiclass_log_weighted_" include="dlib/dnn.h"/>
<term file="dlib/dnn/loss_abstract.h.html" name="loss_binary_log_per_pixel_" include="dlib/dnn.h"/>
<term file="dlib/dnn/loss_abstract.h.html" name="loss_multiclass_log_" include="dlib/dnn.h"/>
<term file="dlib/dnn/loss_abstract.h.html" name="loss_multiclass_log_per_pixel_" include="dlib/dnn.h"/>
<term file="dlib/dnn/loss_abstract.h.html" name="loss_multiclass_log_per_pixel_weighted_" include="dlib/dnn.h"/>
@ -170,6 +172,8 @@
<term file="dlib/dnn/layers_abstract.h.html" name="max_pool_" include="dlib/dnn.h"/>
<term file="dlib/dnn/layers_abstract.h.html" name="avg_pool_" include="dlib/dnn.h"/>
<term file="dlib/dnn/layers_abstract.h.html" name="relu_" include="dlib/dnn.h"/>
<term file="dlib/dnn/layers_abstract.h.html" name="leaky_relu_" include="dlib/dnn.h"/>
<term file="dlib/dnn/layers_abstract.h.html" name="mish_" include="dlib/dnn.h"/>
<term file="dlib/dnn/layers_abstract.h.html" name="prelu_" include="dlib/dnn.h"/>
<term file="dlib/dnn/layers_abstract.h.html" name="sig_" include="dlib/dnn.h"/>
<term file="dlib/dnn/layers_abstract.h.html" name="htan_" include="dlib/dnn.h"/>

Loading…
Cancel
Save