You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
when I use numpy::inner(), I face the following problem, float64' object cannot be converted to 'PyArray<T, D>
here is my code let array = numpy::pyarray![py, 1.0, 2.0, 3.0]; let inner: &numpy::PyArray0::<_> = numpy::inner(array, array).unwrap(); println!("{}",inner.item());