-
Run TensorFlow.NET Logistic Regression:
![image](https://user-images.githubusercontent.com/1705364/62667609-11478c00-b94e-11e9-9fa1-891004ad91dd.png)
-
ONE :
1. In Python :
2 axis:
x = np.arange(12).reshape(3, 4)
print(x[1]) // [4 5 6 7]
3 axis:
nd = np.arange(12).reshape(2, 3, 2)
print(nd[0]) // [ [0 1] [2 3] [4 …
-
I wanted to copy documentation from `Numpy.NET` to use in `NumSharp` and noticed that the documentation there looks like the following:
```C#
///
/// Return evenly spaced values within a given i…
-
The three random-related files `np.random.normal.Test.cs`, `np.random.randint.Test.cs`, `np.random.shuffle.Test.cs` are located in the Creation folder/namespace. They should be moved to the Random fol…
-
**Duplicated code**
The files `Creation/NdArrayRandom.Permutation.cs` and `Random/np.random.permutation.cs` contain essentially the same code. The file in the Creation folder should be removed, I thi…
-
In order to make NumSharp more practical, we plan to open a new branch and refactor the NumSharp kernel to build based on ArrayFire. The purpose of this is to make NumSharp perform better and the data…
-
Hi,
How would I mimic np [:,X] or [X,:] behavior in numSharp?
-
Solving differential equations is one important area in numpy so it should be also in NumSharp.
The shallow water equations are a nice but still mature example in "fluid" numerics.
Can read some…
-
I'm using VS2015 on Windows 10.
When I try to install `NumSharp` using nuget in Visual Studio, I get the following error:
```
Could not install package 'NumSharp 0.8.3'. You are trying to inst…
-
I am a beginner, I want to use numpy in C#, so...
But I find the result from numsharp.dot is different with numpy.
There are my C# code:
`using System;
using System.Collections.Generic;
using Sy…
Hmean updated
5 years ago