Ryan Curtin

Results 59 issues of 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...

c: build system
c: core
t: added feature

**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...

t: bug report
help wanted
s: keep open
c: methods

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...

t: feature request
help wanted
s: keep open
c: build system

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...

t: bug report
s: keep open
c: automatic bindings
c: documentation

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...

t: feature request
help wanted
good first issue
s: keep open
c: methods

### 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...

t: feature request
help wanted
s: keep open
c: automatic bindings

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...

t: feature request
help wanted
good first issue
s: keep open
c: methods

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...

t: question
s: keep open

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...

t: feature request
help wanted
good first issue
s: keep open
c: build system
c: testing

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...

t: feature request
help wanted
good first issue
s: keep open
c: core
c: methods