Commit Graph
13571 Commits
Author SHA1 Message Date
stereomatchingkiss 3d1aae40bb change Predict to const function 2015-11-11 16:28:33 +08:00
stereomatchingkiss c1e25a37f1 1 : change the option name of command line
2 : allow users to reuse trained results
3 : allow users to test the predict results of test data
2015-10-30 10:15:53 +08:00
stereomatchingkiss 2fc0278cfe 1 : change file name
2 : fix make file, should not add the cpp into SOURCES
2015-10-29 23:38:29 +08:00
stereomatchingkiss 60fcc4bc0b refine messages 2015-10-29 12:34:14 +08:00
stereomatchingkiss ec4bdf27e9 implement command line programs of softmaxRegression 2015-10-29 12:17:41 +08:00
Ryan Curtin 22cf1a3511 Minor style fixes. 2015-10-23 09:38:18 -04:00
ryan 29b89eb8ae Don't issue a warning for one-column CSVs. 2015-10-22 13:46:58 -04:00
Ryan Curtin d1dfaa8e09 Add Serialize(). 2015-10-22 15:11:07 +00:00
Ryan Curtin 9ae893ee70 Allow ownership of data matrix. 2015-10-22 15:11:07 +00:00
Ryan Curtin 757971aedb Initialize baseCases and scores correctly. 2015-10-22 15:11:07 +00:00
Ryan Curtin 5584483a1a Allow access to number of base cases and scores. 2015-10-22 15:11:07 +00:00
ryan c81893381e Add a test to ensure that doing monochromatic dual-tree search resets bounds. 2015-10-20 11:08:36 -04:00
ryan d02f7c456b For monochromatic dual-tree search, the bounds may need to be reset.
This only happens when monochromatic dual-tree search is performed twice.
2015-10-20 11:08:10 -04:00
Ryan Curtin 00eccfdb0d Refactor allkfn program. 2015-10-20 13:47:48 +00:00
Ryan Curtin b25508fea0 Fix function signature. 2015-10-20 13:47:48 +00:00
Ryan Curtin eadb92a8d2 Fix grammar issue. 2015-10-20 13:47:48 +00:00
Ryan Curtin 9c5b690c28 Fix definition. 2015-10-20 13:47:48 +00:00
Ryan Curtin 609fddb1ee Add 'ball' option for -t. 2015-10-20 13:47:48 +00:00
Ryan Curtin c75abf248c Fix -Wunused. 2015-10-20 13:47:47 +00:00
Ryan Curtin abce06073c Add ball tree support to NSModel. 2015-10-20 13:47:47 +00:00
Ryan Curtin c7f92a5f62 Give name of tree in output. 2015-10-20 13:47:47 +00:00
marcus 67e0a132c7 Widen tolerance slightly and disable non-deterministic behavior by setting the shuffle parameter to false. 2015-10-20 11:41:27 +02:00
marcus a8215ba479 Add a test for ADAM. 2015-10-20 11:34:45 +02:00
marcus 612affdea6 Add a test for AdaDelta. 2015-10-20 11:34:45 +02:00
Ryan Curtin fecf1194c1 Complete refactoring of allknn program.
Allows saving models and selection of different tree types.

My plan is to deploy this idea to all of mlpack's dual-tree algorithms; I'll
also add ball trees.
2015-10-19 16:02:56 -04:00
Ryan Curtin 3f4e6a84e9 Handle zero-size cover trees... sort of. 2015-10-19 16:02:56 -04:00
Ryan Curtin fffc24d3fa Fix initialization. 2015-10-19 16:02:56 -04:00
Ryan Curtin 2e50e0306d Update test API. 2015-10-19 16:02:56 -04:00
Ryan Curtin 95d1357f44 Use rvalue references to prevent copies. 2015-10-19 16:02:56 -04:00
Ryan Curtin 89e4f430f6 Add std::move constructor for datasets. 2015-10-19 16:02:56 -04:00
Ryan Curtin 1b1a3fa0e3 Fix mappings for rvalue reference constructors. 2015-10-19 16:02:56 -04:00
Ryan Curtin d9d69fcc7f Make some test sets smaller for speed. 2015-10-19 16:02:56 -04:00
Ryan Curtin 852571af23 Fix casting error. 2015-10-19 16:02:55 -04:00
Ryan Curtin 7ec97d059f Add rvalue reference constructor. 2015-10-19 16:02:55 -04:00
Ryan Curtin 10d7140ef0 Add rvalue reference constructors. 2015-10-19 16:02:55 -04:00
Ryan Curtin 4956dca501 The minimum Armadillo requirement is now 3.6.0.
So the ifdefs aren't necessary.
2015-10-19 16:02:55 -04:00
Ryan Curtin 9f51ae1730 Test move constructors. 2015-10-19 16:02:55 -04:00
Ryan Curtin 55ea6aafd1 Add move constructors. 2015-10-19 16:02:55 -04:00
Ryan Curtin 25fde1e048 Fix extraneous template parameter list. 2015-10-19 16:02:55 -04:00
Ryan Curtin 9ed5c236ed Add a helper class for knn model saving. 2015-10-19 16:02:55 -04:00
Ryan Curtin b44979b736 Add access to the reference set. 2015-10-19 16:02:55 -04:00
ryan 09cd0d67f2 Check isinf() too. 2015-10-19 07:56:54 -04:00
ryan ecf36c506a Use easier-to-understand isnan(). 2015-10-19 07:53:59 -04:00
Marcus Edel 6e86d1070e Merge pull request #462 from stereomatchingkiss/FixOIVSInitBug
fix constructor bug(oivs_init.hpp)
2015-10-18 23:31:54 +02:00
stereomatchingkiss badba6568a remove data member epsilon since it only needed by constructor 2015-10-19 03:14:24 +08:00
stereomatchingkiss 069911fdf8 fix constructor bug 2015-10-18 09:34:44 +08:00
Marcus Edel 1190791f07 Use the correct number of feature maps in the network description (thanks Ngap wei Tham for pointing it out). 2015-10-17 15:19:07 +02:00
Marcus Edel 54f77d383d Add a test for RMSProp. 2015-10-16 14:17:57 +02:00
Marcus Edel 68157b9f81 Add ADAM optimizer. 2015-10-15 12:21:17 +02:00
Marcus Edel 90f9f8f270 Minor documentation updates and formatting changes. 2015-10-14 16:31:16 +02:00