https://github.com/fl03/rs-spline
https://github.com/fl03/rs-spline
Last synced: 19 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/fl03/rs-spline
- Owner: FL03
- License: apache-2.0
- Created: 2024-06-01T19:17:01.000Z (12 months ago)
- Default Branch: main
- Last Pushed: 2025-01-27T16:22:25.000Z (4 months ago)
- Last Synced: 2025-02-05T05:03:23.209Z (3 months ago)
- Language: Rust
- Size: 37.1 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE
- Security: SECURITY.md
Awesome Lists containing this project
README
# rs-spline
[](https://crates.io/crates/rs-spline)
[](https://docs.rs/rs-spline)[](https://github.com/FL03/rs-spline/actions/workflows/clippy.yml)
[](https://github.com/FL03/rs-spline/actions/workflows/rust.yml)***
### _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
```bash
git clone https://github.com/FL03/rs-spline.git
cd rs-spline
``````bash
cargo build --features full -r --workspace
```## Usage
### Example: Linear Model (biased)
```rust
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
* [Apache-2.0](https://choosealicense.com/licenses/apache-2.0/)
* [MIT](https://choosealicense.com/licenses/mit/)