shogun
shogun copied to clipboard
Shōgun
When compiling with the latest Eigen version (3.3.90, which I think has not made it to release yet) I get a compile time error (see below). I am not sure...
https://github.com/shogun-toolbox/shogun/issues/5042
Just tried to make the Newton example work against 6.1.4 under Windows. Does not even compile because of API changes all over the place. Would be great to have at...
Many of Shogun's classes do not have proper class documentation, i.e. they * are written in bad English (spelling, punctuation, etc) * are written without or wiht bad math (not...
What we want is that the R command `??RealFeatures` shows the class docs, just like `help(RealFeatures)` does in Python. This needs some SWIG homework. Nontrivial entrance task, though still not...
currently we have our own script to convert c++ doxygen comment to SWIG target language documentation. Since SWIG 4.0 there's a `-doxygen` option that essentially does the same. for details...
Currently we register parameter names using `SG_ADD(&class_member, "name", "parameter description")`. The problem is that changing the registered name (in this case "name") results in issues everytime we refactor the parameter...
We want to replace imports in the lines of * `from shogun import *` * `from shogun import features` with `import shogun as sg`, and then call shogun methods with...
If a new user wants to quickly evaluate shogun for a problem he has, it's not clear where to start. It would be good to have a small tutorial for...