-
example
```rust
let a = array![[9., 7.], [5., 2.]];
let b = array![[1., 9.], [5., 1.]];
println!("a vstack b = \n{:?}\n", stack![Axis(0), a, b]);
println!("a hstack b = \n{:?}\n…
-
I am sorry for repeatedly opening soundness issues, but I fear that using NumPy's `writeable` is insufficient to protect safe code from mutable aliasing.
At least it seems incompatible with a safe …
-
Using the latest commit on main (ca97fbecbb4e1aec0fbad05494dad09bce3040af), the code shown below has unexpected behavior.
It passes a 4 dimentionnal tensor through several Conv2D layers, but output…
-
We want to drastically speed up fontmake: https://github.com/googlei18n/fontmake/issues/367
Other than switching booleanOperations to something vector-based and fast (https://github.com/typemytype/…
-
Hi,
Thanks for the crate; it's made a port from a Python codebase to Rust much easier!
I'm trying to write a `.npy` file containing just a scalar `u32` to a `.npz`. https://github.com/dabreegste…
-
I'm wondering if a convenient _slicing_ function that automatically `select()`, `narrow()`, `masked_index()` or `index_select()` tensors. Just like that in PyTorch. For the sake of limitations of `Ind…
-
Following on from #331 which got a bit sidetracked. There was some interest in a lightweight wrapper for creating and manipulating `data.frame`s using extendr.
The obvious option is to make a new w…
-
Hi, do you have a full example available with a sample data set and expected output?
I followed the directions in the README.md and got to this issue:
`AttributeError: module 'kmedoids' has no att…
-
Hi I'm really interested in using this to speed up some python code, I have been looking at the examples here:
https://github.com/PyO3/rust-numpy/blob/main/examples/simple-extension/Cargo.toml
and…
-
As I understand it, only one pyo3 version can exist in a project: https://github.com/PyO3/maturin/issues/662
This means that anything which depends on rust-numpy must use the same pyo3 version as i…