I am translating tensorflow program of python to C#. And I didn't know how to deal with the method.
I search, but it seemed poor document for NumSharp document enable(if it is my ignore, please point me out to spot).
Could you help me to find out the same method exist in Numsharp or other method(s) with same effect?
Thanks before~
Asked
Active
Viewed 150 times
-1

cross-hello
- 61
- 4
-
`np.c_` is a version of `concatenate`.It uses some unique python tricks, so I wouldn't expect a clone to reproduce it. But exactly what it's doing depends on the shape of its arguments. – hpaulj Nov 22 '21 at 10:12
-
There's a lot going on in `tensorflow` that `numpy` cline won't handle. I don't know anything about `numsharp`, beyond what the name suggests, but you should try something simpler before investing too effort. – hpaulj Nov 22 '21 at 16:10
-
Thanks for your reply. That is all that I can do. . . – cross-hello Nov 24 '21 at 09:43
1 Answers
0
The Numpy which version you choose to use in C# project is important.
If you use Numpy, you could get a np.c_ counterpart as np.column_stack. This may solve your problem.
From the help of contributor in Numpy.

cross-hello
- 61
- 4