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

[GitHub] sandeep-krishnamurthy closed pull request #12600: Tweaked the copy in c_predict_api.h

sandeep-krishnamurthy closed pull request #12600: Tweaked the copy in c_predict_api.h
URL: https://github.com/apache/incubator-mxnet/pull/12600
 
 
   

This is a PR merged from a forked repository.
As GitHub hides the original diff on merge, it is displayed below for
the sake of provenance:

As this is a foreign pull request (from a fork), the diff is supplied
below (as it won't show otherwise due to GitHub magic):

diff --git a/include/mxnet/c_predict_api.h b/include/mxnet/c_predict_api.h
index 16addff6345..ecbbf8dfc81 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.


 

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services