Skip to content
This repository has been archived by the owner on Nov 17, 2023. It is now read-only.

Tweaked the copy in c_predict_api.h #12600

Merged
merged 1 commit into from
Sep 20, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions include/mxnet/c_predict_api.h
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down Expand Up @@ -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.
Expand Down Expand Up @@ -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
Expand All @@ -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.
Expand Down