Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
PARL
提交
6e459909
P
PARL
项目概览
PaddlePaddle
/
PARL
通知
68
Star
3
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
18
列表
看板
标记
里程碑
合并请求
3
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
P
PARL
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
18
Issue
18
列表
看板
标记
里程碑
合并请求
3
合并请求
3
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
6e459909
编写于
8月 29, 2019
作者:
L
LI Yunxiang
提交者:
Bo Zhou
8月 29, 2019
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
add implemented algorithms in doc (#142)
上级
4c312dab
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
102 addition
and
0 deletion
+102
-0
docs/_static/build_toc_group.js
docs/_static/build_toc_group.js
+66
-0
docs/implementations.rst
docs/implementations.rst
+36
-0
未找到文件。
docs/_static/build_toc_group.js
0 → 100644
浏览文件 @
6e459909
// modified from
// https://stackoverflow.com/questions/12150491/toc-list-with-all-classes-generated-by-automodule-in-sphinx-docs
$
(
function
(){
var
createList
=
function
(
selected
)
{
var
obj
=
{};
var
ul
=
$
(
'
<ul>
'
);
selected
.
each
(
function
(
i
,
e
)
{
var
groupName
=
$
(
e
).
find
(
'
a
'
)[
0
].
href
;
groupName
=
groupName
.
substr
(
groupName
.
lastIndexOf
(
'
/
'
)
+
1
);
groupName
=
groupName
.
substr
(
0
,
groupName
.
lastIndexOf
(
"
.html
"
));
var
fullname
=
e
.
id
;
if
(
fullname
.
startsWith
(
'
parl.
'
))
index
=
fullname
.
lastIndexOf
(
'
.
'
)
fullname
=
"
parl.algorithms.
"
.
concat
(
fullname
.
substr
(
index
+
1
))
if
(
fullname
==
"
dataflow.MultiProcessMapData
"
)
{
groupName
=
"
parallel_map
"
;
}
var
n
=
$
(
e
).
children
(
'
.descname
'
).
clone
();
n
[
0
].
innerText
=
fullname
;
var
l
=
$
(
e
).
children
(
'
.headerlink
'
);
var
a
=
$
(
'
<a>
'
);
a
.
attr
(
'
href
'
,
l
.
attr
(
'
href
'
)).
attr
(
'
title
'
,
'
Link to this definition
'
);
a
.
append
(
n
);
var
entry
=
$
(
'
<li>
'
).
append
(
a
);
if
(
groupName
in
obj
)
{
obj
[
groupName
].
append
(
entry
);
}
else
{
var
ul
=
$
(
'
<ul style="margin-bottom: 12px;">
'
);
ul
.
append
(
entry
);
obj
[
groupName
]
=
ul
;
}
});
return
obj
;
}
var
customIndex
=
$
(
'
.custom-index
'
);
customIndex
.
empty
();
var
selected
=
$
(
'
div.section>dl>dt
'
);
if
(
selected
.
length
===
0
)
return
;
var
obj
=
createList
(
selected
);
var
block
=
$
(
'
<div style="min-width: 300px; margin-bottom: 2em;">
'
);
for
(
var
key
in
obj
)
{
var
a
=
$
(
'
<h6 style="margin-bottom: 0;">
'
);
a
.
html
(
key
+
'
:
'
);
block
.
append
(
a
);
block
.
append
(
obj
[
key
]);
}
customIndex
.
append
(
block
);
});
docs/implementations.rst
浏览文件 @
6e459909
Implemented Algorithms
========================
.. container:: custom-index
.. raw:: html
<script type="text/javascript" src='../_static/build_toc_group.js'></script>
.. automodule:: parl.algorithms.fluid.impala.impala
:members:
:no-undoc-members:
:show-inheritance:
.. automodule:: parl.algorithms.fluid.a3c
:members:
:no-undoc-members:
:show-inheritance:
.. automodule:: parl.algorithms.fluid.ddpg
:members:
:no-undoc-members:
:show-inheritance:
.. automodule:: parl.algorithms.fluid.dqn
:members:
:no-undoc-members:
:show-inheritance:
.. automodule:: parl.algorithms.fluid.policy_gradient
:members:
:no-undoc-members:
:show-inheritance:
.. automodule:: parl.algorithms.fluid.ppo
:members:
:no-undoc-members:
:show-inheritance:
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录