All Versions
26
Latest Version
Avg Release Cycle
16 days
Latest Release
2669 days ago

Changelog History
Page 3

  • v0.2.2 Changes

    ๐Ÿ†• New Contributors

    • zackmdavis (contributed all features for this version, thank you!)

    ๐Ÿ’ฅ Breaking Changes

    • None

    ๐Ÿ”‹ Features

    • ๐Ÿ–จ Can now debug print matrices and vectors.
    • ๐Ÿ–จ Can now pretty print matrices to given precision.

    Minor Changes

    • ๐Ÿ›  Fixed the dependency versions used in Cargo.toml.
    • ๐Ÿ“š Updated the library documentation with complete list of ML tools.
  • v0.2.1 Changes

    ๐Ÿ’ฅ Breaking Changes

    • None

    ๐Ÿ”‹ Features

    • โž• Addition of Gaussian Mixture Models.
    • ๐Ÿ‘ Allow basic arithmetic to combine kernels.

    Minor Changes

    • โž• Added some missing documentation.
    • Some code formatting.
    • Minor improvements thanks to clippy.
  • v0.2.0 Changes

    ๐Ÿ’ฅ Breaking Changes

    • Neural network instantiation new method now requires a training algorithm to be specified.

    ๐Ÿ”‹ Features

    • โž• Adding more kernels (for full list see API documentation).
    • Generalized Linear Model.
    • โšก๏ธ Updated model structures to allow more freedom in training algorithms.

    Minor Changes

    • ๐Ÿ“š Some more documentation.
    • Some minor code formatting.

  • v0.1.8 Changes

    ๐Ÿ’ฅ Breaking Changes

    • None

    ๐Ÿ”‹ Features

    • โž• Add Support Vector Machines.

    Minor Changes

    • Minor code cleanup.
    • Some micro optimization.

  • v0.1.7 Changes

    ๐Ÿ’ฅ Breaking Changes

    • None

    ๐Ÿ”‹ Features

    • โž• Added the stats module behind the optional feature flag stats.
    • ๐Ÿ‘ stats currently includes support for the Exponential and Gaussian distributions.

    Minor Changes

    • Some rustfmt code cleanup.

  • v0.1.6 Changes

    ๐Ÿ’ฅ Breaking Changes

    • โœ‚ Removed the new constructor for the LinRegressor. This has been replaced by the default function from the Default trait.

    ๐Ÿ”‹ Features

    • โž• Added a select method for cloning a block from a matrix.
    • Implemented QR decomposition, and eigenvalue decomposition.
    • Implemented eigendecomp (though only works definitely for real-symmetric matrices).

    Minor Changes

    • Optimizations to matrix multiplication