kuji 0.1.0

Stochastic sampling primitives: Gumbel-Softmax, reservoir sampling, and latent permutations
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
default:
    @just --list

check:
    cargo fmt --all -- --check
    cargo clippy --all-targets -- -D warnings
    if command -v cargo-nextest >/dev/null 2>&1; then cargo nextest run; else cargo test; fi

test:
    if command -v cargo-nextest >/dev/null 2>&1; then cargo nextest run; else cargo test; fi

fmt:
    cargo fmt --all