rcf3 0.3.0

A Rust implementation of the Random Cut Forest algorithm for anomaly detection.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
import nox

python = ["3.11", "3.14", "3.14t"]
venv_backend = "uv"


@nox.session(
    python=python,
    venv_backend=venv_backend,
)
def test(session: nox.Session) -> None:
    session.install(".[test]")
    session.run("pytest", "-v", *session.posargs)