Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
P
pytensor
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
testgroup
pytensor
Commits
7976c911
提交
7976c911
authored
11月 21, 2016
作者:
Cesar Laurent
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Moved from no_padding to padding flag.
上级
3965d55a
隐藏空白字符变更
内嵌
并排
正在显示
1 个修改的文件
包含
4 行增加
和
4 行删除
+4
-4
scan_checkpoints.py
theano/scan_module/scan_checkpoints.py
+4
-4
没有找到文件。
theano/scan_module/scan_checkpoints.py
浏览文件 @
7976c911
...
@@ -5,7 +5,7 @@ import theano
...
@@ -5,7 +5,7 @@ import theano
def
scan_checkpoints
(
fn
,
sequences
=
[],
outputs_info
=
None
,
non_sequences
=
[],
def
scan_checkpoints
(
fn
,
sequences
=
[],
outputs_info
=
None
,
non_sequences
=
[],
name
=
"checkpointscan_fn"
,
n_steps
=
None
,
save_every_N
=
10
,
name
=
"checkpointscan_fn"
,
n_steps
=
None
,
save_every_N
=
10
,
no_padding
=
Fals
e
):
padding
=
Tru
e
):
"""Scan function that uses less memory, but is more restrictive.
"""Scan function that uses less memory, but is more restrictive.
In :func:`~theano.scan`, if you compute the gradient of the output
In :func:`~theano.scan`, if you compute the gradient of the output
...
@@ -63,11 +63,11 @@ def scan_checkpoints(fn, sequences=[], outputs_info=None, non_sequences=[],
...
@@ -63,11 +63,11 @@ def scan_checkpoints(fn, sequences=[], outputs_info=None, non_sequences=[],
the computations of ``scan`` (ie they will have to be recomputed
the computations of ``scan`` (ie they will have to be recomputed
during the gradient computation).
during the gradient computation).
no_
padding
padding
If the length of the sequences is not a multiple of ``save_every_N``,
If the length of the sequences is not a multiple of ``save_every_N``,
the sequences will be zero padded to make this version of ``scan``
the sequences will be zero padded to make this version of ``scan``
work properly, but will also result in a memory copy. It can be
work properly, but will also result in a memory copy. It can be
avoided by setting ``
no_padding`` to Tru
e, but you need to make
avoided by setting ``
padding`` to Fals
e, but you need to make
sure the length of the sequences is a multple of ``save_every_N``.
sure the length of the sequences is a multple of ``save_every_N``.
Returns
Returns
...
@@ -111,7 +111,7 @@ def scan_checkpoints(fn, sequences=[], outputs_info=None, non_sequences=[],
...
@@ -111,7 +111,7 @@ def scan_checkpoints(fn, sequences=[], outputs_info=None, non_sequences=[],
i_n_steps
=
theano
.
tensor
.
set_subtensor
(
i_n_steps
[
-
1
],
rest
)
i_n_steps
=
theano
.
tensor
.
set_subtensor
(
i_n_steps
[
-
1
],
rest
)
# Pad the sequences if needed
# Pad the sequences if needed
if
not
no_
padding
:
if
padding
:
for
i
,
s
in
enumerate
(
sequences
):
for
i
,
s
in
enumerate
(
sequences
):
n
=
s
.
shape
[
0
]
%
save_every_N
n
=
s
.
shape
[
0
]
%
save_every_N
z
=
theano
.
tensor
.
zeros
((
n
,
s
.
shape
[
1
:]),
dtype
=
s
.
dtype
)
z
=
theano
.
tensor
.
zeros
((
n
,
s
.
shape
[
1
:]),
dtype
=
s
.
dtype
)
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论