AtheMathmo / rusty-machine

Machine Learning library for Rust
https://crates.io/crates/rusty-machine/
MIT License
1.25k stars 153 forks source link

Save trained models #192

Open milesgranger opened 6 years ago

milesgranger commented 6 years ago

Hello, First thank you for the work done with this library! I'm still quite green with Rust in general, so perhaps I'm missing something obvious, but it would be nice if one could save trained models for later predictions. I didn't see anything in the documentation relating to this.

Thanks again! :)

shybyte commented 6 years ago

I wonder if just adding #[derive(Serialize, Deserialize)] from https://github.com/serde-rs/serde to all relevant structs would be an appropriate implementation of this feature.

shybyte commented 6 years ago

This issue may be a duplicate of #122