ndarray-koans
ndarray-koans copied to clipboard
Material for "ML Introduction to ndarray" workshop at RustFest 2019.
Bumps [jinja2](https://github.com/pallets/jinja) from 2.10.3 to 2.11.3. Release notes Sourced from jinja2's releases. 2.11.3 This contains a fix for a speed issue with the urlize filter. urlize is likely to be...
In [update koan](../blob/master/src/koans/06_update/02_centroids_array2.rs) there is ```rust pub fn compute_centroids( n_centroids: usize, // (n_observations, n_features) observations: &ArrayBase, // (n_observations,) cluster_memberships: &ArrayBase, ) -> Array2 { ``` but here the `n_centroids` is...
Hello, This is the code for the visulalisation of the workshop using rust and vega_lite_3. `Cargo.toml` ``` [dependencies] vega_lite_3 = {version = "0.1", features = ["show_vega"]} serde = {version =...