Show HN: Smart Fruit – A Python schema-based machine learning library
I've made a small Python library, designed for quick-and-easy prototyping of machine learning models. It's built on top of scikit-learn, to serialize and deserialize data from the forms you're likely to have, to the format used in scikit-learn.
https://github.com/madman-bob/Smart-Fruit
It's pretty bare-bones at the moment, but I thought I'd see if there was any interest before spending too much time on it.
Let me know what you think.
5 comments
[ 2.7 ms ] story [ 15.0 ms ] threadThe training phase can be considerably long. Have you thought of some kind of an async wrapper that Smart Fruit might provide or will the user be expected to code it up?
This is more of a user experience comment - when the interface is designed to feel as if one is interacting with a DB / ORM the user may come to assume that the outcomes will be deterministic... While the returned results will remain deterministic given the training data, model and hyper-parameters remain the same - it won't feel as deterministic when either of these is updated... I am not sure if I communicated my concern clearly. I am trying to understand who the intended end-user is, of this package...
That said, all points taken. If this sparks interest in someone, as is stands, it would be on them to dig in to all the considerations you've outline.