NumSharp
NumSharp copied to clipboard
High Performance Computation for N-D Tensors in .NET, similar API to NumPy.
If you declare an array of a specific size, is there a way to assign slices of arrays? For example, if x is an NDArray of size (5,2,3,4), is there...
Return elements, either from x or y, depending on condition. https://docs.scipy.org/doc/numpy-1.13.0/reference/generated/numpy.where.html
Runing YOLO with `ndarray-indexing` branch. 
``` NDArray positive_boxes = batch_item["...,0"] != 0; Debug.Log(positive_boxes); ``` The output is Null. In numpy I would expect an boolean mask NDArray of shape (...,1) here, right? Is masking implemented...
Theres a repeating need for methods to load Image to bitmap, we should provide performant builtin API for that. EDIT 1: System.Drawing.Bitmap are now supported by a separate package, [read...
Doesn't work in ndarray[nd]?  ```shell System.NotSupportedException: Specified method is not supported. at NumSharp.NDArray.set_Item(Object[] indices_or_slices, NDArray value) in D:\SciSharp\NumSharp\src\NumSharp.Core\Selection\NDArray.Indexing.cs:line 202 ``` _Originally posted by @Oceania2018 in https://github.com/SciSharp/NumSharp/issues/359#issuecomment-541355337_
Return the indices of the elements that are non-zero. https://docs.scipy.org/doc/numpy/reference/generated/numpy.nonzero.html
Is it possible to suppor mixed index/ slice? This is what numpy doing:  Currently, it doesn't support: 
np.any
Test whether any array element along a given axis evaluates to True. https://docs.scipy.org/doc/numpy/reference/generated/numpy.any.html
NDIterator is useful, we should add an overload that handles specific axis iterator: usage: ```C# new NDIterator(ndarray, axis: 1); ``` Also add an overload to extension `ndarray.AsIterator(axis: 1);`