提交 782a98f7 编写于 作者: H helinwang 提交者: GitHub

Merge pull request #1391 from helinwang/fix

fix issue in create custom reader in design doc
...@@ -107,7 +107,7 @@ We decided to use dictionary (`{"image":0, "label":1}`) instead of list (`["imag ...@@ -107,7 +107,7 @@ We decided to use dictionary (`{"image":0, "label":1}`) instead of list (`["imag
### How to create custom data reader ### How to create custom data reader
```python ```python
def image_reader(image_path, label_path): def image_reader(image_path, label_path, n):
f = open(image_path) f = open(image_path)
l = open(label_path) l = open(label_path)
images = numpy.fromfile( images = numpy.fromfile(
...@@ -117,9 +117,10 @@ def image_reader(image_path, label_path): ...@@ -117,9 +117,10 @@ def image_reader(image_path, label_path):
for i in xrange(n): for i in xrange(n):
yield images[i, :], labels[i] # a single entry of data is created each time yield images[i, :], labels[i] # a single entry of data is created each time
f.close() f.close()
l.close()
# use python lambda to change image_reader into a function with no parameters. # use python lambda to change image_reader into a function with no parameters.
reader = lambda : image_reader("/path/to/image_file", "/path/to/label_file") reader = lambda : image_reader("/path/to/image_file", "/path/to/label_file", 1024)
paddle.train(reader, {"image":0, "label":1}, ...) paddle.train(reader, {"image":0, "label":1}, ...)
``` ```
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册