rusty-machine icon indicating copy to clipboard operation
rusty-machine copied to clipboard

Machine Learning library for Rust

Results 47 rusty-machine issues
Sort by recently updated
recently updated
newest added

Exactly what this title says. Sends a stronger message about the state of this repo than a line in readme Settings > Danger Zone > Archive

8 | for (dog, prediction) in test_dogs.iter().zip(predictions.row_iter()).take(unprinted_total) { | ^^^^^^^^ method not found in `rusty_machine::prelude::Matrix`

Adjust syntax to rand version 0.7.3

This is to adjust the latest rand version (0.7.3)

I think we should use the latest rand library. By Alvin Pan, contact email is [email protected]

This is my first pull request ever so hopefully it's not too far off from usable. I'm having some difficulties with testing my code. I plugged in my adam optimizer...

Use `slice::iter` instead of `into_iter` to avoid future breakage `an_array.into_iter()` currently just works because of the autoref feature, which then calls `::into_iter`. But in the future, arrays will implement `IntoIterator`,...

I get the error message from the title of this issue. It's not very informative what exactly the problem is or how i can fix this. I don't know if...

I wanted to try rust for some data analysis after getting started with python. In scikit there saw there is a [OneHotEncoder](https://scikit-learn.org/stable/modules/generated/sklearn.preprocessing.OneHotEncoder.html) which is useful for categorical data. Could such...