-
Notifications
You must be signed in to change notification settings - Fork 27
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Consider adding examples #47
Comments
I finally have time to go back to this ❤️ We could start by porting some of the examples in the
Do you know any other collections of examples we can poach from @munckymagik? |
@LukeMathWalker sorry for the delay, some good ones here maybe: https://github.com/ddbourgin/numpy-ml. Should we create a checklist organised by the major feature areas in our crate, and try to propose at least one compelling example for each? I realise there might be some cross over so one example may cover several areas. I'm going to need you to guide as to what kinds of examples would suit our crate and be good starting points for users with real problems to solve. Maybe a mix of common-use items plus something more niche? IDK maybe regression, f-score, p-values, confidence intervals etc. (???) Then there's what to do about sample data. I found:
What do you think? |
Also, have you used any of the rust plotting libraries? |
We though of the same repo there - I have drafted a first linear regression example using The examples you mentioned are good starting point. In terms of ML, we could have a look at some stuff in the preprocessing space:
Given the nature of our crate, I think that to make it shine we need examples that do require vectorised operations - ML is a fantastic domain for these purposes. For datasets, I think we can either generate them (as in my linear regression example) or we could use I opened a thread a while ago on Reddit for plotting libraries, but none of those I have seen so far seemed mature enough. I don't know if the landscape has changed significantly since. |
Shutting this crate-specific issue now. Work to build examples for the ndarray ecosystem is happening in https://github.com/rust-ndarray/ndarray-examples. |
I suggest we consider adding an
examples
folder to demonstrate more real world usage.The benefits I think this would bring are:
Can we brain-storm a list of the kinds of examples we would want?
Does anybody have any toy examples we could use to seed the folder?
The text was updated successfully, but these errors were encountered: