From 1192a78955f0226bdf2d846b636e59d2a450575d Mon Sep 17 00:00:00 2001 From: Palash Tyagi <23239946+Magnus167@users.noreply.github.com> Date: Sat, 26 Jul 2025 18:38:53 +0100 Subject: [PATCH] Add example demos to README.md --- README.md | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/README.md b/README.md index f37f334..a382287 100644 --- a/README.md +++ b/README.md @@ -192,6 +192,24 @@ E.g. to run the `game_of_life` example: cargo run --example game_of_life ``` +More demos: + +```bash +cargo run --example linear_regression +cargo run --example logistic_regression +cargo run --example k_means +cargo run --example pca +``` + +To simply list all available examples, you can run: + +```bash +# this technically raises an error, but it will list all examples +cargo run --example +``` + +Each demo runs a couple of mini-scenarios showcasing the APIs. + ### Running benchmarks To run the benchmarks, use: