rs-spline

Crates.iors-spline
lib.rsrs-spline
version0.0.0
sourcesrc
created_at2024-06-01 19:41:36.137779
updated_at2024-06-01 19:41:36.137779
descriptionA generic spline library for Rust optimized for AI workloads
homepagehttps://github.com/FL03/rs-spline/wiki
repositoryhttps://github.com/FL03/rs-spline.git
max_upload_size
id1258841
size12,449
Joe McCain III (FL03)

documentation

README

rs-spline

crates.io docs.rs

clippy rust


The library is currently in the early stages of development and is not yet ready for production use.

A generic spline library for Rust optimized for AI workloads

Features

Getting Started

Building from the source

Start by cloning the repository

git clone https://github.com/FL03/rs-spline.git
cd rs-spline
cargo build --features full -r --workspace

Usage

Example: Linear Model (biased)

    extern crate rs-spline;

    fn main() -> anyhow::Result<()> {
        tracing_subscriber::fmt::init();
        tracing::info!("Starting linear model example");


        Ok(())
    }

Contributing

Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.

Please make sure to update tests as appropriate.

License

Commit count: 2

cargo fmt