SaaSHub helps you find the best software and product alternatives Learn more →
Rust-numpy Alternatives
Similar projects and alternatives to rust-numpy
-
-
maturin
Build and publish crates with pyo3, rust-cpython and cffi bindings as well as rust binaries as python packages
-
Onboard AI
Learn any GitHub repo in 59 seconds. Onboard AI learns any GitHub repo in minutes and lets you chat with it to locate functionality, understand different parts, and generate new code. Use it for free at www.getonboard.dev.
-
polars
Dataframes powered by a multithreaded, vectorized query engine, written in Rust
-
-
-
-
image-super-resolution
🔎 Super-scale your images and run experiments with Residual Dense and Adversarial Networks.
-
InfluxDB
Collect and Analyze Billions of Data Points in Real Time. Manage all types of time series data in a single, purpose-built database. Run at any scale in any environment in the cloud, on-premises, or at the edge.
-
-
Python-Complementary-Languages
Just a small test to see which language is better for extending python when using lists of lists
-
-
maturin-action
GitHub Action to install and run a custom maturin command with built-in support for cross compilation
-
-
-
material-ui
Ready-to-use foundational React components, free forever. It includes Material UI, which implements Google's Material Design.
-
-
-
Dlib
A toolkit for making real world machine learning and data analysis applications in C++
-
tokenizers
💥 Fast State-of-the-Art Tokenizers optimized for Research and Production
-
-
-
SaaSHub
SaaSHub - Software Alternatives and Reviews. SaaSHub helps you find the best software and product alternatives
rust-numpy reviews and mentions
-
Numba: A High Performance Python Compiler
On the contrary, it can use and interface with numpy quite easily: https://github.com/PyO3/rust-numpy
- Carefully exploring Rust as a Python developer
-
Hmm
Once I figured out the right tools, it was easy. Its just "maturin new". It automatically converts python floats and strings. Numpy arrays come through as a special Pyarray type, that you need to unwrap, but that's just one builtin function. Using pyo3, maturin and numpy, https://github.com/PyO3/rust-numpy it's fairly easy.
-
Man, I love this language.
If I'm understanding this documentation correctly then you may be able to pass the numpy array directly with func(df['col'].to_numpy) which may save some conversion.
-
[D] Is Rust stable/mature enough to be used for production ML? Is making Rust-based python wrappers a good choice for performance heavy uses and internal ML dependencies in 2021?
Otherwise, though, Rust is an excellent choice. The many advantages of Rust (great package manager, memory safety, modern language features, ...) are already well documented so I won't repeat them here. Specifically for writing Python libraries, check out PyO3, maturin, and rust-numpy, which allow for seamless integration with the Python scientific computing ecosystem. Dockerizing/packaging is a non-issue, with the aforementioned libraries you can easily publish Rust libraries as pip packages or compile them from source as part of your docker build. We have several successful production deployments of Rust code at OpenAI, and I have personally found it to be a joy to work with.
-
Writing Rust libraries for the Python scientific computing ecosystem
Integration with numpy uses the rust-numpy crate: Example of method that accepts numpy arrays as arguments Example of a method that returns a numpy array to Python (this performs a copy, there ought to be a way to avoid it but the current implementation has been plenty fast for my use case so far)
-
Feasibility of Using a Python Image Super Resolution Library in My Rust App
This example maybe helpful.
-
Julia is the better language for extending Python
Given that it's via pyO3, you could even pass the numpy arrays using https://github.com/PyO3/rust-numpy and get ndarrays at the other side.
Same no copy, slightly more user friendly approach.
Further criticism of the actual approach - even if we didn't do zero copy, there's no preallocation for the vector despite the size being known upfront, and nested vectors are very slow by default.
So you could speed up the entire thing by passing it to ndarray, and then running a single call to sum over the 2D array you'd find at the other end. (https://docs.rs/ndarray/0.15.1/ndarray/struct.ArrayBase.html...)
- PyO3: Rust Bindings for the Python Interpreter
-
A note from our sponsor - #<SponsorshipServiceOld:0x00007f0f9b0a03c8>
www.saashub.com | 8 Dec 2023
Stats
PyO3/rust-numpy is an open source project licensed under BSD 2-clause "Simplified" License which is an OSI approved license.
The primary programming language of rust-numpy is Rust.