Crates.io | tinguely |
lib.rs | tinguely |
version | 0.1.1 |
source | src |
created_at | 2019-08-19 20:31:12.106937 |
updated_at | 2020-10-11 16:19:50.128968 |
description | Machine learning library |
homepage | https://matthiaseiholzer.gitlab.io/tinguely |
repository | https://gitlab.com/matthiaseiholzer/tinguely |
max_upload_size | |
id | 158183 |
size | 184,914 |
Tinguely is a machine learning library implemented entirely in Rust. This library is still in early stages of development.
Tinguely uses mathru for its linear algebra calculations and optimization algorithms. There is still lot of room for optimization, but BLAS/LAPACK support is already integrated.
Currently implemented algorithms:
The models all provide predict and train methods enforced by the SupervisedLearn and UnsupervisedLearn traits.
Add this to your Cargo.toml
for the native Rust implementation:
[dependencies.tinguely]
version = "0.1"
Add the following lines to 'Cargo.toml' if the openblas library should be used:
[dependencies.tinguely]
version = "0.1"
default-features = false
features = "openblas"
One of the following implementations for linear algebra can be activated as a feature:
native: Native Rust implementation(activated by default)
openblas: Optimized BLAS library
netlib: Collection of mathematical software, papers, and databases
intel-mkl: Intel Math Kernel Library
accelerate Make large-scale mathematical computations and image calculations, optimized for high performance and low-energy consumption.(macOS only)
Then import the modules and it is ready to be used.
use tinguely as tg;
See project page for more information and examples. The API is documented on docs.rs.
Licensed under
Any contribution is welcome!