From 2931dc471f565590624bb0778d58bf793619e5f7 Mon Sep 17 00:00:00 2001 From: songtianyi Date: Fri, 23 Dec 2016 12:59:29 +0800 Subject: [PATCH] Add go binding project reference (#4336) * 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 --- README.md | 3 ++- example/README.md | 3 ++- include/mxnet/c_predict_api.h | 4 ++-- 3 files changed, 6 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index fa29840bc077..a3502454d650 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/example/README.md b/example/README.md index fcdd72aa3224..7552f3fe101b 100644 --- a/example/README.md +++ b/example/README.md @@ -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) diff --git a/include/mxnet/c_predict_api.h b/include/mxnet/c_predict_api.h index 0290d84f6f38..55646dd482e2 100644 --- a/include/mxnet/c_predict_api.h +++ b/include/mxnet/c_predict_api.h @@ -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);