Skip to content

Commit

Permalink
Add go binding project reference (apache#4336)
Browse files Browse the repository at this point in the history
* 1. Fix typos in include/mxnet/c_predict_api.h
2. Add go-mxnet-predictor project refrence to READMEs

go-mxnet-predictor features:
* more api bindings
* more comments and details in api
* dependency less, no need Amalgamation

* 1. Mark gomxnet project [Outdated]

* Update README.md
  • Loading branch information
songtianyi authored and piiswrong committed Dec 23, 2016
1 parent 1610b4f commit 2931dc4
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,8 @@ What's New
* [MXNet on Mobile Device](http://mxnet.io/how_to/smart_device.html)
* [Distributed Training](http://mxnet.io/how_to/multi_devices.html)
* [Guide to Creating New Operators (Layers)](http://mxnet.io/how_to/new_op.html)
* [Amalgamation and Go Binding for Predictors](https://github.com/jdeng/gomxnet/)
* [Go binding for inference](https://github.com/songtianyi/go-mxnet-predictor)
* [Amalgamation and Go Binding for Predictors](https://github.com/jdeng/gomxnet/) - Outdated
* [Training Deep Net on 14 Million Images on A Single Machine](http://mxnet.io/tutorials/computer_vision/imagenet_full.html)

Contents
Expand Down
3 changes: 2 additions & 1 deletion example/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,8 @@ If you want to contribute to this list and the examples, please open a new pull
* [MXNet Python](http://mxnet.readthedocs.io/en/latest/api/python/index.html) - Python library
* [MXNetR](http://mxnet.readthedocs.io/en/latest/api/r/index.html) - R library
* [MXNet.jl](http://mxnetjl.readthedocs.org/en/latest/) - Julia library
* [gomxnet](https://github.com/jdeng/gomxnet) - Go binding
* [go-mxnet-predictor](https://github.com/songtianyi/go-mxnet-predictor) - Go binding for inference
* [gomxnet](https://github.com/jdeng/gomxnet) - Go binding [Outdated]
* [MXNet JNI](https://github.com/dmlc/mxnet/tree/master/amalgamation/jni) - JNI(Android) library
* [MXNet Amalgamation](https://github.com/dmlc/mxnet/tree/master/amalgamation) - Amalgamation (entire library in a single file)
* [MXNet Javascript](https://github.com/dmlc/mxnet.js/) - MXNetJS: Javascript Package for Deep Learning in Browser (without server)
Expand Down
4 changes: 2 additions & 2 deletions include/mxnet/c_predict_api.h
Original file line number Diff line number Diff line change
Expand Up @@ -198,8 +198,8 @@ MXNET_DLL int MXNDListGet(NDListHandle handle,
const mx_uint** out_shape,
mx_uint* out_ndim);
/*!
* \brief Free a predictor handle.
* \param handle The handle of the predictor.
* \brief Free a MXAPINDList
* \param handle The handle of the MXAPINDList.
* \return 0 when success, -1 when failure.
*/
MXNET_DLL int MXNDListFree(NDListHandle handle);
Expand Down

0 comments on commit 2931dc4

Please sign in to comment.