@@ -174,12 +174,12 @@ input_types
174
174
+++++++++++
175
175
176
176
PaddlePaddle has four data types, and three sequence types.
177
- The four data types are:
177
+ The four data types are:
178
178
179
179
* :code: `dense_vector `: dense float vector.
180
180
* :code: `sparse_binary_vector `: sparse binary vector, most of the value is 0, and
181
181
the non zero elements are fixed to 1.
182
- * :code: `sparse_float_vector `: sparse float vector, most of the value is 0, and some
182
+ * :code: `sparse_vector `: sparse float vector, most of the value is 0, and some
183
183
non zero elements can be any float value. They are given by the user.
184
184
* :code: `integer `: an integer scalar, that is especially used for label or word index.
185
185
@@ -200,7 +200,7 @@ in the above table.
200
200
+----------------------+---------------------+-----------------------------------+------------------------------------------------+
201
201
| sparse_binary_vector | [i, i, ...] | [[i, ...], [i, ...], ...] | [[[i, ...], ...], [[i, ...], ...],...] |
202
202
+----------------------+---------------------+-----------------------------------+------------------------------------------------+
203
- | sparse_float_vector | [(i,f), (i,f), ...] | [[(i,f), ...], [(i,f), ...], ...] | [[[(i,f), ...], ...], [[(i,f), ...], ...],...] |
203
+ | sparse_vector | [(i,f), (i,f), ...] | [[(i,f), ...], [(i,f), ...], ...] | [[[(i,f), ...], ...], [[(i,f), ...], ...],...] |
204
204
+----------------------+---------------------+-----------------------------------+------------------------------------------------+
205
205
| integer_value | i | [i, i, ...] | [[i, ...], [i, ...], ...] |
206
206
+----------------------+---------------------+-----------------------------------+------------------------------------------------+
@@ -227,7 +227,7 @@ Its parameters lists as follows:
227
227
* :code: `is_train ` is a bool parameter that indicates the DataProvider is used in
228
228
training or testing.
229
229
* :code: `file_list ` is the list of all files.
230
-
230
+
231
231
* User-defined parameters args can be set in training configuration.
232
232
233
233
Note, PaddlePaddle reserves the right to add pre-defined parameter, so please
0 commit comments