updated docs

This commit is contained in:
Davis King 2019-12-14 14:07:20 -05:00
parent b0e3c36020
commit 591331f941
3 changed files with 34 additions and 1 deletions

View File

@ -256,6 +256,14 @@
<name>Deep Learning Semantic Segmentation</name>
<link>dnn_semantic_segmentation_ex.cpp.html</link>
</item>
<item>
<name>Deep Learning Instance Segmentation</name>
<link>dnn_instance_segmentation_ex.cpp.html</link>
</item>
<item>
<name>Deep Learning Instance Segmentation Trainer</name>
<link>dnn_instance_segmentation_train_ex.cpp.html</link>
</item>
<item>
<name>Deep Learning Vehicle Detection</name>
<link>dnn_mmod_find_cars_ex.cpp.html</link>

View File

@ -541,6 +541,8 @@ Davis E. King. <a href="http://jmlr.csail.mit.edu/papers/volume10/king09a/king09
<example>dnn_face_recognition_ex.cpp.html</example>
<example>dnn_semantic_segmentation_ex.cpp.html</example>
<example>dnn_semantic_segmentation_train_ex.cpp.html</example>
<example>dnn_instance_segmentation_ex.cpp.html</example>
<example>dnn_instance_segmentation_train_ex.cpp.html</example>
</examples>
</component>

View File

@ -11,6 +11,29 @@
<!-- ************************************************************************************** -->
<current>
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
the objective function and automatically tune themselves to balance solver
overhead vs objective function execution time.
- Improved handling of label and ignore boxes in loss_mmod layer.
See here for more details: https://github.com/davisking/dlib/issues/1894
- Better auto-detection of build configurations on some platforms.
- Shiny new deep instance segmentation examples:
dnn_instance_segmentation_ex.cpp and dnn_instance_segmentation_train_ex.cpp.
Non-Backwards Compatible Changes:
Bug fixes:
- Fix build error in some versions of visual studio in some setups.
- Fix find_max() going into an infinite loop in some cases when a
non-differentiable function is given.
</current>
<!-- ************************************************************************************** -->
<old name="19.18" date="Sep 22, 2019">
New Features and Improvements:
- Make dlib.full_object_detection take list of dlib.point or dlib.points.
- CMake scripts will automatically include the Intel MKL's iomp dll in the
@ -35,7 +58,7 @@ Bug fixes:
- Various improvements to CMake built scripts to handle unusual system configurations.
- Fixed bug in multi-GPU training of semantic segmentation models.
</current>
</old>
<!-- ************************************************************************************** -->