Commit Graph
14313 Commits
Author SHA1 Message Date
marcus 3fbabd79fe Minor style fixes. 2016-03-18 13:21:10 +01:00
Ryan Curtin 80943dd398 Add some paranoia: what if sizeof(void*) isn't 4? 2016-03-15 20:29:54 -07:00
marcus ae6689c144 Use sum of square to calculate theta (see eq. 8: sum(x^2)) 2016-03-15 23:05:40 +01:00
Marcus Edel e3d701077a Merge pull request #572 from vasanthkalingeri/stdlogicerror
Fixed std::logic_error in the kathirvalavakumar subavathi init method use colvec instead of rowvec.
2016-03-15 23:00:48 +01:00
Ryan Curtin 3b5e67f9d9 Merge pull request #564 from na1taneja2821/master
Changes to CMakeLists to solve issue #553: Clean build in 32-bit systems
2016-03-15 17:48:02 -04:00
Ryan Curtin 05c6551fa6 I'm tired of this test failing. 2016-03-15 13:42:08 -07:00
Ryan Curtin c487c587fb Update version in documentation. 2016-03-15 13:20:28 -07:00
Ryan Curtin 4a2466b147 Update dependencies for binutils (libbfd and libdl). 2016-03-15 13:19:54 -07:00
Ryan Curtin a3ce99e25b Remove libxml2-devel from list of Fedora/RHEL dependencies. 2016-03-15 13:00:07 -07:00
Ryan Curtin eb1afa1189 libxml2 is no longer used; libbfd and libdl are used for the backtrace
functionality.
2016-03-15 12:59:39 -07:00
Ryan Curtin 91881a9ad7 Add documentation for new backtrace functionality. 2016-03-15 12:58:54 -07:00
Ryan Curtin e93f41525d Add comment describing the need for setting PACKAGE and PACKAGE_VERSION. 2016-03-15 12:55:55 -07:00
Ryan Curtin b3fe52318e Merge pull request #575 from u8sand/master
Fixes bfd.h: config.h must be included before this header
2016-03-15 15:54:32 -04:00
Ryan Curtin 086a75de12 Update names to avoid collisions. 2016-03-15 12:47:28 -07:00
Ryan Curtin eac547a6c2 Refactor: remove once-used function, wrap lines. 2016-03-15 12:47:28 -07:00
Ryan Curtin 4551dd09d7 Refactor for shorter lines. 2016-03-15 12:47:28 -07:00
Daniel Clarke eedd99da54 Fixes bfd.h: config.h must be included before this header 2016-03-15 13:47:56 -04:00
marcus 386138b317 Update the default step size (adam optimizer). 2016-03-14 23:20:33 +01:00
marcus b864df8cf1 Build the adam optimizer test. 2016-03-14 23:12:23 +01:00
marcus d673e3e33b Update the learning rate by calculating the bias correction values. 2016-03-14 23:12:23 +01:00
anamariabs ff76bc3e25 Optimizer transition Adam test file 2016-03-14 23:12:23 +01:00
vasanth kalingeri 88b9b85143 Reimplementing Adadelta with tests 2016-03-14 23:12:23 +01:00
Ryan Curtin c0886a18f6 Merge pull request #567 from na1taneja2821/issue-498
Changes to solve issue #498: Replacing timer implementation
2016-03-14 16:37:40 -04:00
Mikhail Lozhnikov f77416e9ab Replace numeric_limits::min() by numeric_limits::lowest() since min() returns the lowest positive for floating point datatypes 2016-03-14 11:40:33 -07:00
na1taneja2821 5354f5d2d9 Incorporated comments from pull requests for issue #498 2016-03-14 23:12:25 +05:30
vasanth kalingeri 930d8e7b62 Fixed std::logic_error 2016-03-14 22:29:53 +05:30
na1taneja2821 d91cf4a966 Changes to solve issue #498: Replacing timer implementation 2016-03-14 10:34:47 +05:30
Ryan Curtin d9e7edd6c8 Merge pull request #565 from awhitesong/copyright
Update in the copyright.txt and core.hpp
2016-03-13 08:39:29 -07:00
Dhawal Arora 675101ceaa Added Dhawal Arora as a contributor in copyright.txt and core.hpp 2016-03-13 00:11:53 +05:30
na1taneja2821 e3d59d6cc9 Changes to CMakeLists to solve issue #553: Clean build in 32-bit systems 2016-03-12 05:56:31 +05:30
marcus f0e331889a Distinguish between testing and training when optimizing the network model. This is useful for models that act differently when in testing or training mode. 2016-03-11 16:24:02 +01:00
Marcus Edel e6f7ffe266 Merge pull request #559 from awhitesong/LeakyReLULayer
Added LeakyReLU Layer and its tests; Change the Cmakelists.
2016-03-09 21:31:08 +01:00
Dhawal Arora ea703b9e80 Added LeakyReLU Layer and its tests; Change the Cmakelists 2016-03-10 00:49:13 +05:30
marcus c75652ba2e Initialize the weights when loading (serialization). 2016-03-09 17:53:50 +01:00
Ryan Curtin 74593cef56 Update documentation for executable name changes and soversion bump. 2016-03-08 22:42:04 -05:00
Marcus Edel 1a9c41a86b Merge pull request #535 from Kirizaki/master
Add mlpack::backtrace utility.
2016-03-09 02:47:10 +01:00
marcus fd84f3a2e5 Include OpenBLAS when creating the mlpack-windows.zip package. 2016-03-08 21:43:55 +01:00
marcus 971213a377 Remove the single value Forward function to be consistent with the rest of the layer interface and minor formatting fixes. 2016-03-08 21:13:09 +01:00
Marcus Edel 3e366ec501 Merge pull request #548 from awhitesong/HardTanH
Added HardTanH Layer and its tests.
2016-03-08 21:02:30 +01:00
marcus d5841b1f72 Fix ridiculous 2 pixel badge size issue. It's an svg, so no quality loss. 2016-03-08 19:23:39 +01:00
Grzegorz Krajewski 7ae135594d Update CMakeLists.txt 2016-03-08 10:08:54 +01:00
Grzegorz Krajewski 38c6d82eb0 Update CMakeLists.txt 2016-03-08 10:08:30 +01:00
Ryan Curtin a69871c4eb Refactor trees to allow arbitrary element types. 2016-03-07 19:59:46 +00:00
Ryan Curtin fcaf28c082 Add documentation for element type. 2016-03-07 19:59:46 +00:00
Ryan Curtin 8cfc6f1b31 Fix incorrect type. 2016-03-07 19:59:46 +00:00
Ryan Curtin 50062206ee Allow BoundType to have multiple template parameters.
This is a useful pattern in general, but here its application is to allow
BoundType to have an additional ElemType template parameter.
2016-03-07 19:59:46 +00:00
Ryan Curtin 819bef7485 Refactor to handle arbitrary element types. 2016-03-07 19:59:46 +00:00
Ryan Curtin 1d7cc4a098 Refactor to handle arbitrary element types. 2016-03-07 19:59:45 +00:00
Ryan Curtin 3c4414b471 Update links for documentation. 2016-03-07 19:59:45 +00:00
Ryan Curtin 5f513f0095 This isn't really accurate anymore. 2016-03-07 19:59:45 +00:00