rs-ml 0.4.0

Simple ML crate including Gaussian Naive Bayesian classifier
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
on: push
name: Rust Clippy

# Make sure CI fails on all warnings, including Clippy lints
env:
  RUSTFLAGS: "-Dwarnings"

jobs:
  clippy_check:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v4
      - name: Run Clippy
        run: cargo clippy --all-targets