Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
P
pytensor
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
testgroup
pytensor
Commits
ca64006c
提交
ca64006c
authored
3月 25, 2009
作者:
Olivier Breuleux
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
completed graph optimization tutorial
上级
2f210b56
全部展开
隐藏空白字符变更
内嵌
并排
正在显示
3 个修改的文件
包含
8 行增加
和
7 行删除
+8
-7
index.txt
doc/advanced/index.txt
+1
-0
optimization.txt
doc/advanced_tutorial/optimization.txt
+0
-0
opt.py
theano/gof/opt.py
+7
-7
没有找到文件。
doc/advanced/index.txt
浏览文件 @
ca64006c
...
@@ -11,6 +11,7 @@ Structure
...
@@ -11,6 +11,7 @@ Structure
.. toctree::
.. toctree::
:maxdepth: 2
:maxdepth: 2
pipeline
env
env
features
features
optimization
optimization
...
...
doc/advanced_tutorial/optimization.txt
浏览文件 @
ca64006c
差异被折叠。
点击展开。
theano/gof/opt.py
浏览文件 @
ca64006c
...
@@ -498,21 +498,21 @@ class PatternSub(LocalOptimizer):
...
@@ -498,21 +498,21 @@ class PatternSub(LocalOptimizer):
arbitrary criterion.
arbitrary criterion.
Examples:
Examples:
Pattern
Optimizer
((add, 'x', 'y'), (add, 'y', 'x'))
Pattern
Sub
((add, 'x', 'y'), (add, 'y', 'x'))
Pattern
Optimizer
((multiply, 'x', 'x'), (square, 'x'))
Pattern
Sub
((multiply, 'x', 'x'), (square, 'x'))
Pattern
Optimizer
((subtract, (add, 'x', 'y'), 'y'), 'x')
Pattern
Sub
((subtract, (add, 'x', 'y'), 'y'), 'x')
Pattern
Optimizer
((power, 'x', Constant(double, 2.0)), (square, 'x'))
Pattern
Sub
((power, 'x', Constant(double, 2.0)), (square, 'x'))
Pattern
Optimizer
((boggle, {'pattern': 'x',
Pattern
Sub
((boggle, {'pattern': 'x',
'constraint': lambda env, expr: expr.type == scrabble}),
'constraint': lambda env, expr: expr.type == scrabble}),
(scrabble, 'x'))
(scrabble, 'x'))
"""
"""
def
__init__
(
self
,
in_pattern
,
out_pattern
,
allow_multiple_clients
=
False
):
def
__init__
(
self
,
in_pattern
,
out_pattern
,
allow_multiple_clients
=
False
):
"""
"""
Creates a Pattern
Optimizer
that replaces occurrences of
Creates a Pattern
Sub
that replaces occurrences of
in_pattern by occurrences of out_pattern.
in_pattern by occurrences of out_pattern.
If allow_multiple_clients is False, he pattern matching will
If allow_multiple_clients is False,
t
he pattern matching will
fail if one of the subpatterns has more than one client.
fail if one of the subpatterns has more than one client.
"""
"""
self
.
in_pattern
=
in_pattern
self
.
in_pattern
=
in_pattern
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论