Ryan Curtin
Ryan Curtin
This PR does the last step---removes `libmlpack.so` entirely. This will probably require some adaptation downstream in the examples and models repositories, but, that should be pretty easy (just don't link...
**Reported by rcurtin on 16 May 42589854 11:37 UTC** When switching to using log-space, I did not take the time to figure out how to have the volume regularized calculation...
This issue came about as a result of #2107, which disables Boost's CMake configuration scripts because mlpack's CMake configuration is written in "old-style" CMake. An introduction to the difference between...
I forgot to do this in #2995. You can see that the [automatic binding documentation](https://mlpack.org/doc/mlpack-git/doxygen/bindings.html) still references the "old" way of making bindings. This just needs to be updated to...
Instead of doing the following: ``` void Method(const arma::mat& data); // makes copy of data void Method(arma::mat&& data); // doesn't copy data, just moves it ``` we should instead do...
### What is the desired addition or change? In #2670, one of the issues encountered was that there was a NaN or Inf in the dataset, but mlpack did not...
Right now, the decision tree implementation in `src/mlpack/methods/decision_tree/` has only the `AllCategoricalSplit` for categorical splits and the `BestBinaryNumericSplit` for numeric splits. Ideally, we would like to expand this to handle...
This came up in the video chat discussion today and @zoq suggested that I write it down, which is definitely a good idea, to gather comments and thoughts about the...
It would be really nice to automatically test the Windows tutorial from #1436. In order to do this, we could create a special .vcproj configuration and put it in an...
A long time ago, the general rule of thumb (at least that I used) was to use `Log::Fatal` to handle errors, but sometimes e.g. `Log::Debug` was used to just print...