Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
PaddleDetection
提交
4649f662
P
PaddleDetection
项目概览
PaddlePaddle
/
PaddleDetection
大约 1 年 前同步成功
通知
695
Star
11112
Fork
2696
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
184
列表
看板
标记
里程碑
合并请求
40
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
P
PaddleDetection
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
184
Issue
184
列表
看板
标记
里程碑
合并请求
40
合并请求
40
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
4649f662
编写于
6月 20, 2018
作者:
Y
yuyang18
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Follow comments & polish doc
上级
9942a304
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
13 addition
and
8 deletion
+13
-8
python/paddle/fluid/recordio_writer.py
python/paddle/fluid/recordio_writer.py
+4
-0
python/paddle/fluid/trainer.py
python/paddle/fluid/trainer.py
+9
-8
未找到文件。
python/paddle/fluid/recordio_writer.py
浏览文件 @
4649f662
...
@@ -103,6 +103,10 @@ def convert_reader_to_recordio_files(
...
@@ -103,6 +103,10 @@ def convert_reader_to_recordio_files(
This API is basically same as :code:`convert_reader_to_recordio_file`,
This API is basically same as :code:`convert_reader_to_recordio_file`,
instead of it will create many recordio files. Each file contains at
instead of it will create many recordio files. Each file contains at
most :code:`batch_per_file` records.
most :code:`batch_per_file` records.
Please reference
:ref:`api_fluid_recordio_writer_convert_reader_to_recordio_file` for more
details.
"""
"""
if
feed_order
is
None
:
if
feed_order
is
None
:
feed_order
=
feeder
.
feed_names
feed_order
=
feeder
.
feed_names
...
...
python/paddle/fluid/trainer.py
浏览文件 @
4649f662
...
@@ -83,7 +83,7 @@ class EndStepEvent(object):
...
@@ -83,7 +83,7 @@ class EndStepEvent(object):
epoch_id(int): The current epoch ID.
epoch_id(int): The current epoch ID.
step_id(int): The current step ID.
step_id(int): The current step ID.
metrics(list): A list of fetched tensor. The order of this list is same
metrics(list): A list of fetched tensor. The order of this list is same
as the :code:`train_func` returns.
as the :code:`train_func` returns.
"""
"""
def
__init__
(
self
,
epoch_id
,
step_id
,
metrics
):
def
__init__
(
self
,
epoch_id
,
step_id
,
metrics
):
...
@@ -99,7 +99,7 @@ class CheckpointConfig(object):
...
@@ -99,7 +99,7 @@ class CheckpointConfig(object):
Args:
Args:
checkpoint_dir(str): Directory path to save check point. Default is the
checkpoint_dir(str): Directory path to save check point. Default is the
current directory.
current directory.
max_num_checkpoints(int): The max number of local check points.
max_num_checkpoints(int): The max number of local check points.
epoch_interval(int): Every number of epoch to save check point.
epoch_interval(int): Every number of epoch to save check point.
...
@@ -389,11 +389,11 @@ class Trainer(object):
...
@@ -389,11 +389,11 @@ class Trainer(object):
Start the train loop to train the model.
Start the train loop to train the model.
Args:
Args:
num_epochs: The number of epoch. An epoch will process all data in reader
num_epochs
(int)
: The number of epoch. An epoch will process all data in reader
event_handler: The event handler. A function with type (ev:Event)->void
event_handler
(callable)
: The event handler. A function with type (ev:Event)->void
reader: A reader creator object. See also
reader
(callable)
: A reader creator object. See also
:ref:`api_guide_python_reader` .
:ref:`api_guide_python_reader` .
feed_order: Feeding order of reader. None will following the defining
feed_order
(list)
: Feeding order of reader. None will following the defining
order in program
order in program
Returns:
Returns:
...
@@ -427,9 +427,10 @@ class Trainer(object):
...
@@ -427,9 +427,10 @@ class Trainer(object):
def
save_params
(
self
,
param_path
):
def
save_params
(
self
,
param_path
):
"""
"""
Save all parameters into :code:`param_path`
Save all parameters into :code:`param_path`.
Args:
Args:
param_path(str): The path to save parameters
param_path(str): The path to save parameters
.
Returns:
Returns:
None
None
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录