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
a867cb08
Commit
a867cb08
authored
May 23, 2014
by
Davis King
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
updated release notes
parent
22ff8327
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
32 additions
and
6 deletions
+32
-6
release_notes.xml
docs/docs/release_notes.xml
+32
-6
No files found.
docs/docs/release_notes.xml
View file @
a867cb08
...
...
@@ -12,12 +12,38 @@
<current>
New Features:
Non-Backwards Compatible Changes:
Bug fixes:
Other:
- Added the ability to set a previously trained function as a prior to the
svm_multiclass_linear_trainer, svm_c_linear_trainer, and svm_rank_trainer
objects.
- Added a user settable loss to the structural_assignment_trainer and
structural_track_association_trainer objects.
- Added the new split_on_first() and split_on_last() string manipulation functions.
- Added locally_change_current_dir, a RAII tool for switching between directories.
- You can now make a 1x1 matrix containing a single value by calling mat() on a single
scalar value.
- The point transform functions and frobmetric_training_sample are now serializable.
- Added a simplified operator
<<
and
>>
based syntax for serializing to and
from files. So now you can serialize to a file using a syntax of:
serialize("myfile.dat")
<<
myobject
<<
another_object;
and then load those objects from disk via:
deserialize("myfile.dat")
>>
myobject
>>
another_object;
An arbitrary number of objects can be serialize or deserialized by
chaining the
<<
and
>>
operators.
Non-Backwards Compatible Changes:
Bug fixes:
- Fixed a bug pointed out by Daniel Girardeau-Montaut. The covariance()
function didn't work on non-double valued matrices.
- Fixed a bug in the backtracking_line_search() function pointed out by
Ping-Chang Shih. The function ignored the max_iter parameter.
- Fixed a compiler error encountered when using clang 3.4 on Mac OS X 10.9.
Thanks to Martin Fergie for reporting this problem.
- Fixed a potential divide by zero in draw_fhog()
Other:
- Added an example program showing how to set a custom logger output hook.
- Made linear decision_functions which use sparse vectors much faster.
</current>
...
...
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