Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
P
pytensor
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
testgroup
pytensor
Commits
26d33f00
提交
26d33f00
authored
11月 01, 2020
作者:
George Ho
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Add remaining utility functions/classes to a theano.utils module
上级
5b3d7c52
隐藏空白字符变更
内嵌
并排
正在显示
1 个修改的文件
包含
114 行增加
和
0 行删除
+114
-0
utils.py
theano/utils.py
+114
-0
没有找到文件。
theano/utils.py
0 → 100644
浏览文件 @
26d33f00
"""Utility functions for Theano."""
from
collections
import
OrderedDict
from
collections.abc
import
Callable
__all__
=
[
"cmp"
,
"decode"
,
"decode_with"
,
"decode_iter"
,
"get_unbound_function"
,
"maybe_add_to_os_environ_pathlist"
,
"DefaultOrderedDict"
,
]
# In python 3.x, when an exception is reraised it saves original
# exception in its args, therefore in order to find the actual
# message, we need to unpack arguments recursively.
def
exc_message
(
e
):
msg
=
e
.
args
[
0
]
if
isinstance
(
msg
,
Exception
):
return
exc_message
(
msg
)
return
msg
def
cmp
(
x
,
y
):
"""Return -1 if x < y, 0 if x == y, 1 if x > y."""
return
(
x
>
y
)
-
(
x
<
y
)
def
get_unbound_function
(
unbound
):
# Op.make_thunk isn't bound, so don't have a __func__ attr.
# But bound method, have a __func__ method that point to the
# not bound method. That is what we want.
if
hasattr
(
unbound
,
"__func__"
):
return
unbound
.
__func__
return
unbound
def
decode
(
x
):
return
x
.
decode
()
def
decode_iter
(
itr
):
for
x
in
itr
:
yield
x
.
decode
()
def
decode_with
(
x
,
encoding
):
return
x
.
decode
(
encoding
)
class
DefaultOrderedDict
(
OrderedDict
):
def
__init__
(
self
,
default_factory
=
None
,
*
a
,
**
kw
):
if
default_factory
is
not
None
and
not
isinstance
(
default_factory
,
Callable
):
raise
TypeError
(
"first argument must be callable"
)
OrderedDict
.
__init__
(
self
,
*
a
,
**
kw
)
self
.
default_factory
=
default_factory
def
__getitem__
(
self
,
key
):
try
:
return
OrderedDict
.
__getitem__
(
self
,
key
)
except
KeyError
:
return
self
.
__missing__
(
key
)
def
__missing__
(
self
,
key
):
if
self
.
default_factory
is
None
:
raise
KeyError
(
key
)
self
[
key
]
=
value
=
self
.
default_factory
()
return
value
def
__reduce__
(
self
):
if
self
.
default_factory
is
None
:
args
=
tuple
()
else
:
args
=
(
self
.
default_factory
,)
return
type
(
self
),
args
,
None
,
None
,
list
(
self
.
items
())
def
copy
(
self
):
return
self
.
__copy__
()
def
__copy__
(
self
):
return
type
(
self
)(
self
.
default_factory
,
self
)
def
maybe_add_to_os_environ_pathlist
(
var
,
newpath
):
"""Unfortunately, Conda offers to make itself the default Python
and those who use it that way will probably not activate envs
correctly meaning e.g. mingw-w64 g++ may not be on their PATH.
This function ensures that, if `newpath` is an absolute path,
and it is not already in os.environ[var] it gets added to the
front.
The reason we check first is because Windows environment vars
are limited to 8191 characters and it is easy to hit that.
`var` will typically be 'PATH'."""
import
os
if
os
.
path
.
isabs
(
newpath
):
try
:
oldpaths
=
os
.
environ
[
var
]
.
split
(
os
.
pathsep
)
if
newpath
not
in
oldpaths
:
newpaths
=
os
.
pathsep
.
join
([
newpath
]
+
oldpaths
)
os
.
environ
[
var
]
=
newpaths
except
Exception
:
pass
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论