-
_From @dotChris90 on January 9, 2019 21:32_
Hello experts! :)
a friend of me and I just found out today that your lab is doing something impressive for our taste.
I am talking about the Tensor c…
-
I am a new learner of NumSharp and now I want to calculate the matmul product of two NDArrays by using `np.matmul` function:
```Csharp
using NumSharp;
var a = np.arange(2 * 2 * 3).reshape((2, 2, …
-
Hey all,
How would you say to do access to a column `matrix[:, i]` or access to a row `matrix[i, :]` in NumSharp?
henon updated
4 years ago
-
-
Both library complement the functionality of **Numpy** library. There are some lack for methods between. So I want to know the converting method.
Give me a hand~
-
The shape of `x` is [200, 1000], of `w` is [1000, 500], and of `b` is [500]
`b` is filled with zeros, `x` and `w` are random float64/double.
Example code of NumSharp:
```csharp
var out = np.…
Banyc updated
4 years ago
-
We should implement the compressed ndarray, it is used widely in scikit-learn. The csr_matrix is included in SciPy not NumPy, but I think we should move it into NumSharp. @dotChris90 What do you think…
-
Hello, nathanpjones,
Your project is great and I found it from NumSharp source codes.
MS forgot to implement so many functions in decimal class, and you have finished almost the lost ones.
I use y…
-
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 a way to do something like the following?
NDArr…
-
What’s the current roadmap of the project? Is it possible to contribute?