You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mxnet.apache.org by sk...@apache.org on 2018/09/20 04:31:58 UTC

[incubator-mxnet] branch master updated: Tweaked the copy in c_predict_api.h (#12600)

This is an automated email from the ASF dual-hosted git repository.

skm pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-mxnet.git


The following commit(s) were added to refs/heads/master by this push:
     new d754703  Tweaked the copy in c_predict_api.h (#12600)
d754703 is described below

commit d754703744bb08d9b2fe89551647930135208c88
Author: Kellen Sunderland <ke...@gmail.com>
AuthorDate: Wed Sep 19 21:31:48 2018 -0700

    Tweaked the copy in c_predict_api.h (#12600)
---
 include/mxnet/c_predict_api.h | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/include/mxnet/c_predict_api.h b/include/mxnet/c_predict_api.h
index 16addff..ecbbf8d 100644
--- a/include/mxnet/c_predict_api.h
+++ b/include/mxnet/c_predict_api.h
@@ -70,7 +70,7 @@ MXNET_DLL const char* MXGetLastError();
  * \param input_shape_indptr Index pointer of shapes of each input node.
  *    The length of this array = num_input_nodes + 1.
  *    For feedforward net that takes 4 dimensional input, this is {0, 4}.
- * \param input_shape_data A flatted data of shapes of each input node.
+ * \param input_shape_data A flattened data of shapes of each input node.
  *    For feedforward net that takes 4 dimensional input, this is the shape data.
  * \param out The created predictor handle.
  * \return 0 when success, -1 when failure.
@@ -99,7 +99,7 @@ MXNET_DLL int MXPredCreate(const char* symbol_json_str,
  * \param input_shape_indptr Index pointer of shapes of each input node.
  *    The length of this array = num_input_nodes + 1.
  *    For feedforward net that takes 4 dimensional input, this is {0, 4}.
- * \param input_shape_data A flatted data of shapes of each input node.
+ * \param input_shape_data A flattened data of shapes of each input node.
  *    For feedforward net that takes 4 dimensional input, this is the shape data.
  * \param num_output_nodes Number of output nodes to the net,
  * \param output_keys The name of output argument.
@@ -134,7 +134,7 @@ MXNET_DLL int MXPredCreatePartialOut(const char* symbol_json_str,
  * \param input_shape_indptr Index pointer of shapes of each input node.
  *    The length of this array = num_input_nodes + 1.
  *    For feedforward net that takes 4 dimensional input, this is {0, 4}.
- * \param input_shape_data A flatted data of shapes of each input node.
+ * \param input_shape_data A flattened data of shapes of each input node.
  *    For feedforward net that takes 4 dimensional input, this is the shape data.
  * \param num_threads The number of threads that we'll run the predictors.
  * \param out An array of created predictor handles. The array has to be large
@@ -161,7 +161,7 @@ MXNET_DLL int MXPredCreateMultiThread(const char* symbol_json_str,
  * \param input_shape_indptr Index pointer of shapes of each input node.
  *    The length of this array = num_input_nodes + 1.
  *    For feedforward net that takes 4 dimensional input, this is {0, 4}.
- * \param input_shape_data A flatted data of shapes of each input node.
+ * \param input_shape_data A flattened data of shapes of each input node.
  *    For feedforward net that takes 4 dimensional input, this is the shape data.
  * \param handle The original predictor handle.
  * \param out The reshaped predictor handle.