-
When running gltf-transform on a Vercel instance (linux-x64) there is an error being thrown that states that the wrong version of `sharp` is being used. There is already a version of sharp in the proj…
-
Dot product is only a valid call for ndarray::Array2 -- even if the ArrayD is of the same dimensions.
```rust
use ndarray::prelude::*;
fn main() {
let mat1 = Array2::from_shape_vec((3, 2), vec…
-
Hi.
Obviously, this crate has not received much attention from the maintainers for the last two years at least. If the current maintainers don't have the time, energy, or will to spend time on ndar…
-
Issue based on discussion #2315, @antimora
To my best knowledge, here's how to load a tensor:
1. In python:
Ensure you wrap the tensor with dict before save, e.g.
```python
…
-
[polars](https://github.com/pola-rs/polars) is growing fast as the new standard for dataframe but it doesn't provide a way to plot the data for Rust user.
I think providing a polars integration under…
-
I reference a discussion from https://github.com/rust-ndarray/ndarray/issues/1272#issuecomment-2325747608:
@grothesque wrote:
> Is your choice motivated by BLAS/LAPACK being ([marginally](http…
-
Shapes in mdarray are not as simple as in a completely dynamic library like Python's NumPy or Rust's ndarray. The "same" shape (2, 3) can be represented by the types `DynRank`, `(Dyn, Dyn)`, `(Const,…
-
I have a simple struct for setting some params and creating an SVR model
```
use linfa::prelude::*;
use linfa_svm::{Svm, SvmParams};
use ndarray::Array;
struct SVRModel {
params: SvmParams…
-
While working on some code, I ran across `remove_index` and noticed that it has a bound of `S: DataOwned`, but I'm not sure why?
```rust
pub fn remove_index(&mut self, axis: Axis, index: usize)
where…
-
I'm calling another library that doesn't use the numpy crate. It only uses the "vanilla" ndarray crate, and as such returns an ndarray::Array2 object. For the life of me, I haven't been able to figure…