Broken Pen
Broken Pen
This repo doesn't really have a connection to the repo you linked, but sure! I'll have a look into this on Monday and am not expecting any large difficulties. I...
Yeah, that's what I assumed happened. I'd say it's a bit surprising that this is how Rust chose to have default type parameters, but it's not much you can change....
Maybe it makes sense to provide a dedicated method in such cases? ```rust impl Report { pub fn build_without_location(kind: ReportKind) -> ReportBuilder { ... } } ``` Or maybe even...
I just stumbled over this issue myself on v0.8m. If this is just a small oversight, what would be the necessary steps to fix it? If it's not too complicated,...
As far as I can tell, this is likely an oversight. The functions `fann_save_internal`, `fann_create_from_file`, `fann_save_trian_internal` and `fann_read_train_from_file` are all only small shims around their fd-counterparts. @bukka, @andersfylling, do you...
Hi @rhettprestwich, thanks for your bug report! Sorry for being late to the party, but I just tried to reproduce the issue with libfann 2.2.0 and couldn't manage to do...
Since the question is basically answered, can we close this issue?
Reopening this issue because the original point still stands: FANN's implementation differs from the original description of iRProp– as given by [Igel and Hüsken](http://citeseerx.ist.psu.edu/viewdoc/download?doi=10.1.1.17.3899&rep=rep1&type=pdf).
This implements a subset of the changes introduced in #80. It has the advantage that it looks ready to be merged to me, whereas #80 still requires some changes and...
There are [fann_train] and [fann_test] which allow you to pass in your data one pattern at a time. Is this the kind of real-time reading you're thinking of? [fann_train]: http://libfann.github.io/fann/docs/files/fann_train-h.html#fann_train...