Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
Paddle
提交
b8382076
P
Paddle
项目概览
PaddlePaddle
/
Paddle
1 年多 前同步成功
通知
2302
Star
20931
Fork
5422
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
1423
列表
看板
标记
里程碑
合并请求
543
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
P
Paddle
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
1,423
Issue
1,423
列表
看板
标记
里程碑
合并请求
543
合并请求
543
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
b8382076
编写于
3月 23, 2019
作者:
D
dongdaxiang
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
add comment for dataset
test=develop
上级
6bf796df
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
27 addition
and
3 deletion
+27
-3
python/paddle/fluid/dataset.py
python/paddle/fluid/dataset.py
+27
-3
未找到文件。
python/paddle/fluid/dataset.py
浏览文件 @
b8382076
...
...
@@ -27,6 +27,7 @@ class DatasetFactory(object):
Example:
dataset = paddle.fluid.DatasetFactory.create_dataset("InMemoryDataset")
"""
def
__init__
(
self
):
"""
Init
...
...
@@ -50,6 +51,7 @@ class DatasetBase(object):
"""
Base dataset class
"""
def
__init__
(
self
):
"""
Init
...
...
@@ -180,6 +182,7 @@ class InMemoryDataset(DatasetBase):
Example:
dataset = paddle.fluid.DatasetFactory.create_dataset("InMemoryDataset")
"""
def
__init__
(
self
):
"""
Init
...
...
@@ -192,6 +195,10 @@ class InMemoryDataset(DatasetBase):
Load data into memory
Example:
>>> import paddle.fluid as fluid
>>> dataset = fluid.DatasetFactory.create_dataset("InMemoryDataset")
>>> filelist = ["a.txt", "b.txt"]
>>> dataset.set_filelist(filelist)
>>> dataset.load_into_memory()
"""
self
.
_prepare_to_run
()
...
...
@@ -202,6 +209,10 @@ class InMemoryDataset(DatasetBase):
Local shuffle
Example:
>>> import paddle.fluid as fluid
>>> dataset = fluid.DatasetFactory.create_dataset("InMemoryDataset")
>>> filelist = ["a.txt", "b.txt"]
>>> dataset.set_filelist(filelist)
>>> dataset.local_shuffle()
"""
self
.
dataset
.
local_shuffle
()
...
...
@@ -212,6 +223,11 @@ class InMemoryDataset(DatasetBase):
If you run distributed, you should pass fleet instead of None.
Example:
>>> import paddle.fluid as fluid
>>> import paddle.fluid.incubate.fleet.parameter_server as fleet
>>> dataset = fluid.DatasetFactory.create_dataset("InMemoryDataset")
>>> filelist = ["a.txt", "b.txt"]
>>> dataset.set_filelist(filelist)
>>> dataset.global_shuffle(fleet)
Args:
...
...
@@ -232,8 +248,10 @@ class QueueDataset(DatasetBase):
QueueDataset, it will process data streamly.
Example:
dataset = paddle.fluid.DatasetFactory.create_dataset("QueueDataset")
import paddle.fluid as fluid
dataset = fluid.DatasetFactory.create_dataset("QueueDataset")
"""
def
__init__
(
self
):
"""
Init
...
...
@@ -244,11 +262,17 @@ class QueueDataset(DatasetBase):
def
local_shuffle
(
self
):
"""
Local shuffle
QueueDataset does not support local shuffle
"""
pass
raise
NotImplementedError
(
"QueueDataset does not support local shuffle, "
"please use InMemoryDataset for local_shuffle"
)
def
global_shuffle
(
self
,
fleet
=
None
):
"""
Global shuffle
"""
pass
raise
NotImplementedError
(
"QueueDataset does not support global shuffle, "
"please use InMemoryDataset for global_shuffle"
)
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录