Davis King
4e97b79900
Fix travis file.
2018-03-30 07:37:27 -04:00
Davis King
cd2c6e3a5b
Added travis tests to make sure we work with old versions of cmake.
2018-03-30 07:25:59 -04:00
Davis King
2fdc731077
Print cmake version used.
2018-03-30 07:01:15 -04:00
davemers0160
1dec97d69c
Downsample layer ( #1212 )
...
Added resize_to_ layer
2018-03-29 21:03:08 -04:00
Davis King
cc0542b3be
clarified comment
2018-03-28 09:59:20 -04:00
Davis King
b8da437edf
Fixed bug in global_function_search's constructor taking initial function
...
evaluations. It wasn't assigning these values into the entire state of the
solver, causing it to be a little busted if used.
2018-03-27 18:28:41 -04:00
Davis King
674e31ee8d
Updated docs
2018-03-26 16:48:48 -04:00
Davis King
6ed561a381
Fix int handling in cblas
2018-03-23 14:59:32 -04:00
Davis King
23ab5e0861
Added USE_64BIT_LAPACK_INTEGERS macro to control the type of integers used when calling fortran
2018-03-22 12:14:55 -04:00
Davis King
53de13102c
Added CBLAS_INT_TYPE for this version of the cblas binding as well.
2018-03-22 12:14:16 -04:00
Davis King
0ef7198eb3
Added a CBLAS_INT_TYPE macro to control the int type used by cblas.
2018-03-22 12:13:31 -04:00
Davis King
e71f6bced3
Added tag v19.10 for changeset c8b794f274df
2018-03-19 07:21:57 -04:00
Davis King
021cbbb1c2
Created release v19.10
2018-03-19 07:21:57 -04:00
Davis King
2d50a51520
Updated sphinx stuff so it outputs documentation for the new submodules.
2018-03-18 17:52:33 -04:00
Davis King
37f82c7f25
updated docs
2018-03-18 17:21:23 -04:00
Davis King
66d6d68fbd
updated docs
2018-03-18 12:59:58 -04:00
Davis King
82c7e5f66e
cleanup
2018-03-18 12:52:03 -04:00
Davis King
5858f61a7f
A bit of cleanup
2018-03-18 11:59:35 -04:00
Davis King
88834d34e6
Fixed grammar
2018-03-18 11:34:55 -04:00
Davis King
86eaaf45ac
merged
2018-03-18 09:09:07 -04:00
Davis King
c5689ea24e
Fixed random forest feature extraction serialization.
2018-03-18 08:12:23 -04:00
Davis King
60a4af67e8
Added more unit tests
2018-03-17 17:10:44 -04:00
Davis King
2cff3f4e00
Added a note about disabling LTO
2018-03-17 17:10:31 -04:00
Davis King
594fa8c7b1
Fixed typo in comment
2018-03-17 17:09:02 -04:00
Davis King
3e781f6f61
Added interface to the global_function_search object.
2018-03-17 17:00:08 -04:00
Davis King
11ed263066
Added more docs and tests.
2018-03-17 10:22:02 -04:00
Davis King
62cd23ce66
updated faq
2018-03-17 07:19:32 -04:00
Davis King
40998905a0
Added a random forest regression tool.
2018-03-14 17:28:51 -04:00
Davis King
8b419e43a7
Fixed memory leak in java swig array binding tool.
2018-03-13 19:14:44 -04:00
Davis King
65b62c1bc9
merged
2018-03-12 20:56:46 -04:00
Davis King
30a3e352d8
merged
2018-03-12 20:55:17 -04:00
Davis King
83057123b9
Added check_serialized_version().
2018-03-12 20:51:21 -04:00
Lukas-Buricin
b44e784a52
Fixed VS 2017 level-3 warnings ( #1193 )
2018-03-12 11:05:52 -04:00
Davis King
e26e09d3fa
Fixed tabbing and formatting
2018-03-10 08:49:20 -05:00
Davis King
2b9de7f4a9
renamed file
2018-03-10 08:21:21 -05:00
Davis King
d30f87b62c
Fixed tabbing and layout
2018-03-10 08:19:09 -05:00
jjaloszy2
973f453630
Clear flags ( #1190 )
...
Set istream flags to 0 in old_deserialize_floating_point. This was flagged by [[nodiscard]] warning in MS compiler.
2018-03-09 21:06:58 -05:00
Kagami Hiiragi
ad88bbe8c6
Allow to set arbitrary cmake opts from setup.py ( #1189 )
...
Fixes #1188
2018-03-09 19:14:12 -05:00
Davis King
d7647e83b4
merged
2018-03-08 15:13:03 -05:00
Davis King
306cd1a242
Improved isotonic_regression class.
2018-03-07 15:51:32 -05:00
Davis King
cb481f2725
Changed cmake scripts for building MATLAB mex files to not explicitly link to
...
any BLAS or LAPACK. Instead, let it get determined at mex load time so that
it will definitely use whatever BLAS and LAPACK matlab is using.
2018-03-07 12:21:00 -05:00
Davis King
881ce1744d
Clarified issue template.
2018-03-04 08:53:25 -05:00
Davis King
49ec319ce4
Added rect_filter and find_optimal_rect_filter() to python API.
2018-03-03 18:45:16 -05:00
Davis King
0bdc9ce5b4
Added another rect_filter constructor.
2018-03-03 17:53:09 -05:00
Davis King
1c26be904c
Added operator + support for dlib.rectangle.
2018-03-03 17:21:23 -05:00
Davis King
4e01b7790b
Cleanup
2018-03-03 16:46:00 -05:00
Davis King
4ec6b1f06c
Fixed build problem on windows.
2018-03-02 22:57:28 -05:00
Davis King
67d0ef0291
Added momentum_filter and rect_filter as well as find_optimal_momentum_filter()
...
and find_optimal_rect_filter()
2018-03-02 22:47:40 -05:00
Juha Reunanen
cf5e25a95f
Problem: integer overflow when calculating sizes (may happen e.g. with very large images) ( #1148 )
...
* Problem: integer overflow when calculating sizes (may happen e.g. with very large images)
Solution: change some types from (unsigned) long to size_t
# Conflicts:
# dlib/dnn/tensor.h
* Fix the fact that std::numeric_limits<unsigned long>::max() isn't always the same number
* Revert serialization changes
* Review fix: use long long instead of size_t
* From long to long long all the way
* Change more types to (hopefully) make the compiler happy
* Change many more types to size_t
* Change even more types to size_t
* Minor type changes
2018-03-01 07:27:29 -05:00
Davis King
1cf6dbf423
Changed to 5 point layout since it works better.
2018-02-28 22:07:28 -05:00