Crates.io | rds |
lib.rs | rds |
version | 0.0.3 |
source | src |
created_at | 2016-06-06 14:59:27.370458 |
updated_at | 2016-07-13 17:58:51.236241 |
description | Rust Data Science |
homepage | https://github.com/haxelion/rds |
repository | https://github.com/haxelion/rds |
max_upload_size | |
id | 5305 |
size | 7,082,146 |
Rust Data Science is an attempt at bringing a solid basis for doing data science under rust. There already exist several scientific / data science library for rust but I'm not satisfied with their design. Following the famous xkcd joke, this is just another attempt.
Current attempt lack I/O capacity (array file format reading/writting and plotting mostly) and thus require additional glue to be used in real world projects. They often try to reimplement everything in rust (even basic BLAS operations) and thus lack performances (efficient matrix multiplication is hard). Nowadays every data science library should offer transparent multithreading and gpu support but existing implementation either have architecture problem because it was not planned early enough or is limited to one specific vendor solution.
Below is my plan, I know it's ambitious and I have no ETA.
On this basis we can hope to develop additional packages for linear algebra, statistics, signal processing, machine learning, neural networks.
No, try rusty-machine or rust-ndarray.