MXNetSharp icon indicating copy to clipboard operation
MXNetSharp copied to clipboard

MXNet bindings for .NET/F#

Results 7 MXNetSharp issues
Sort by recently updated
recently updated
newest added

Specifically the python MKL build of libmxnet (mxnet-cu101mkl==1.6.0b20191125) errors on `copyToRun` after `execRun` has been used. To reproduce click `Use DQN` and update the model. Whether it updates while in...

Currently the Bind extension methods assume a single context. Executors can be multi-context and the Executor type supports multiple contexts. Bind extensions methods should be updated to pass in a...

```fsharp let nd = CPU(0).CopyFrom([|0.0 .. 10.0|]) let a = 2.0 + (2.0 ** nd) let b = (2.0 ** nd) + 2.0 ``` Both `a` and `b` fail overload...

The NDArray ops are generated using `OpOutCount.txt` to determine the output count. However the output argument is always an array of NDArray. Consider the following * Use named parameter for...

It would be fairly simple to separate out the numpy operators to create a NumPy API: https://medium.com/apache-mxnet/a-new-numpy-interface-for-apache-mxnet-incubating-dbb4a4096f9f? For the full experience #2 would need to be addressed.

Implement advanced indexing -- support indexing by array or ndarray of indices. Currently only basic indexing is supported: `NewAxis`, slicing and stepping with `SliceRange` obj. https://github.com/apache/incubator-mxnet/blob/7713a43353b06b91ae7d5d508868b42ce557e487/python/mxnet/ndarray/ndarray.py#L1265