NumSharp
NumSharp copied to clipboard
High Performance Computation for N-D Tensors in .NET, similar API to NumPy.
Is np.tile implemented in this library as of yet?
Given the following Python code: ```python a = [1, 2, 3, 99, 99, 3, 2, 1] a1, a2, a3 = np.split(a, [3, 5]) print(a1, a2, a3) ``` Translated to F#:...
Hi I am trying to use Tensorflow.NET= 0.15.1 Numsharp = 0.20.5 SharpCV = 0.5.0 and I getting the error The type 'NDArray' exists in both 'NumSharp.Core, Version=0.20.5.0, ' and 'NumSharp.Lite,...
Does anyone know how to convert "System.Drawing.Image" to "NDarray" in C#? Any suggestions would be greatly appreciated.
Hi I have a PyObject which is of a PyDict type, It contains an NDArray, i need to convert it to actual NDArray. How can i do that? Thanks
Hi, I am seeing this exception when trying to save a jagged array to a stream: Index was outside the bounds of the array. at NumSharp.np.d__109`1.MoveNext() at NumSharp.np.writeValueJagged(BinaryWriter reader, Array...
Hi, I have a NDArray of Floats with dimensions {(1, 13, 13, 3, 2)} and size 1014. `np.negative(myArray)` works by converting all values to negative. However I think that [official...
I am attempting to call np.argsort() on the following array: [0.700656592845917, 0.651415288448334, 0.719015657901764] dtype = Double The expected result should be: [1, 0, 2] However, the actual result I'm getting...
It is really a big surprise for me to find the Numsharp. Here is little question with using the NumSharp: How to convert the NDArray data to list ? since...
Found a typo np.random.stardard_normal(Batch_Size, X_Res * Y_Res, 1); should be np.random.standard_normal(Batch_Size, X_Res * Y_Res, 1); Spelling Error "standard"