Expand description
A simple machine learning library in Rust.
toy_ml is designed to be a “Hello World” for machine learning enthusiasts
looking to get started with Rust. It provides a basic implementation of the
gradient descent algorithm, which, while simple, serves as a starting point
for understanding machine learning concepts in Rust.
Functions§
- gradient_
descent - The
gradient_descentfunction performs a single step of the gradient descent optimization algorithm.