Stefan Kroboth
Stefan Kroboth
Firstly thank you for this great tool! :) I'm very happy to see that there is a replacement for `cargo readme`. I'm experiencing a problem; however, I'm unsure if it...
The symmetric rank-one (SR1) algorithm fails under certain conditions. In particular, it produces search directions which are not descent directions and therefore not accepted in the line searches. It is...
Currently, stopping criteria are defined during the implementation of the solver. However, sometimes it might be useful if users could add their own stopping criteria. This would require a complete...
This is a long-term issue in order to keep these things in mind. - **Naming** *(crate aligns with Rust naming conventions)* - [ ] Casing conforms to RFC 430 ([C-CASE])...
This PR updates argmin to the most recent version 0.6.0. In this version the `serde` dependency is optional, which addresses #48. It only concerns `linfa-linear` and `linfa-logistic`. # linfa-linear This...
- Observer based on tracing crate - Tracing observer example - Remove `Debug` impl of KV - Added `Into` trait bound on `Float` trait
State is needed to keep track of any kind of data from one iteration to the next. This state could be handled by the solver structs themselves, but by using...
It could be useful to allow observers to collect data during the run and then optionally create a final report. There are however a couple of issues. Observers are stored...
I just noticed that the observers and checkpointing are missing tests. Checkpointing does have a test, but it doesn't check whether the loaded checkpoint is equivalent to the saved checkpoint....