Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
P
pytensor
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
testgroup
pytensor
Commits
63b7b834
提交
63b7b834
authored
3月 26, 2015
作者:
Pascal Lamblin
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Modifications for the final 0.7 release.
上级
bb3b04c7
隐藏空白字符变更
内嵌
并排
正在显示
8 个修改的文件
包含
22 行增加
和
22 行删除
+22
-22
NEWS.txt
NEWS.txt
+8
-8
LICENSE.txt
doc/LICENSE.txt
+1
-1
conf.py
doc/conf.py
+1
-1
install_windows.txt
doc/install_windows.txt
+6
-6
typed_list.txt
doc/library/typed_list.txt
+1
-1
setup.py
setup.py
+1
-1
gradient.py
theano/gradient.py
+2
-2
extra_ops.py
theano/tensor/extra_ops.py
+2
-2
没有找到文件。
NEWS.txt
浏览文件 @
63b7b834
...
...
@@ -2,15 +2,15 @@
Release Notes
=============
Theano 0.7
rc2 (13
th of March, 2015)
================================
===
Theano 0.7
(26
th of March, 2015)
================================
We recommand to everyone to upgrade to this version.
Highlights:
* Too many bug and crash fixes to count
* Many new optimizations as well
* Integration of CuDNN for 2D convolutions and pooling on supported GPUs
* Better support for GPU on Windows (Jan Chorowski, Nicolas Ballas)
* On MacOS X, clang is used by default (Arnaud Bergeron)
* Various fixes and improvement to scan
* Too many optimizations and new features to count
* Various fixes and improvements to scan
* Better support for GPU on Windows
* On Mac OS X, clang is used by default
* Many crash fixes
* Some bug fixes as well
doc/LICENSE.txt
浏览文件 @
63b7b834
...
...
@@ -3,7 +3,7 @@
LICENSE
=======
Copyright (c) 2008--201
3
, Theano Development Team
Copyright (c) 2008--201
5
, Theano Development Team
All rights reserved.
Contains code from NumPy, Copyright (c) 2005-2011, NumPy Developers.
...
...
doc/conf.py
浏览文件 @
63b7b834
...
...
@@ -53,7 +53,7 @@ copyright = '2008--2015, LISA lab'
# The short X.Y version.
version
=
'0.7'
# The full version, including alpha/beta/rc tags.
release
=
'0.7
rc2
'
release
=
'0.7'
# There are two options for replacing |today|: either, you set today to some
# non-false value, then it is used:
...
...
doc/install_windows.txt
浏览文件 @
63b7b834
...
...
@@ -359,11 +359,11 @@ Theano. For the bleeding-edge version execute
git clone https://github.com/Theano/Theano.git
For the latest stable release 0.
6 (as of Oct 2014
) run instead:
For the latest stable release 0.
7 (as of March 2015
) run instead:
.. code-block:: bash
git clone https://github.com/Theano/Theano.git --branch rel-0.
6
git clone https://github.com/Theano/Theano.git --branch rel-0.
7
Either way, a folder `Theano` will be created with the library
downloaded to it.
...
...
@@ -377,11 +377,11 @@ To get the latest bleeding edge version got to `Theano on GitHub
<https://github.com/Theano/Theano/archive/master.zip>`_. Then unzip it
somewhere.
Alternatively, you can check the latest release release 0.
6 (as of Oct
201
4
) by going to
https://github.com/Theano/Theano/releases/tag/rel-0.
6
and
Alternatively, you can check the latest release release 0.
7 (as of March
201
5
) by going to
https://github.com/Theano/Theano/releases/tag/rel-0.
7
and
downloading the `zip
<https://github.com/Theano/Theano/archive/rel-0.
6
.zip>`_.
<https://github.com/Theano/Theano/archive/rel-0.
7
.zip>`_.
Configuring Theano
##################
...
...
doc/library/typed_list.txt
浏览文件 @
63b7b834
...
...
@@ -6,7 +6,7 @@
.. note::
This
is not in the released version 0.6.0, but will be in the next release (0.7 or 0.6.1)
.
This
has been added in release 0.7
.
.. note::
...
...
setup.py
浏览文件 @
63b7b834
...
...
@@ -66,7 +66,7 @@ PLATFORMS = ["Windows", "Linux", "Solaris", "Mac OS-X", "Unix"]
MAJOR
=
0
MINOR
=
7
MICRO
=
0
SUFFIX
=
"
rc2
"
# Should be blank except for rc's, betas, etc.
SUFFIX
=
""
# Should be blank except for rc's, betas, etc.
ISRELEASED
=
False
VERSION
=
'
%
d.
%
d.
%
d
%
s'
%
(
MAJOR
,
MINOR
,
MICRO
,
SUFFIX
)
...
...
theano/gradient.py
浏览文件 @
63b7b834
...
...
@@ -659,7 +659,7 @@ def subgraph_grad(wrt, end, start=None, cost=None, details=False):
:return: Returns lists of gradients with respect to `wrt` and `end`,
respectively.
.. versionadded:: 0.
6.1
.. versionadded:: 0.
7
'''
assert
((
cost
is
not
None
)
or
(
start
is
not
None
))
assert
isinstance
(
end
,
list
)
...
...
@@ -1905,7 +1905,7 @@ def consider_constant(x):
:return: The expression is returned unmodified, but its gradient
is now truncated to 0.
.. versionadded:: 0.
6.1
.. versionadded:: 0.
7
"""
warnings
.
warn
((
"consider_constant() is deprecated, use zero_grad() or "
...
...
theano/tensor/extra_ops.py
浏览文件 @
63b7b834
...
...
@@ -128,7 +128,7 @@ def cumsum(x, axis=None):
:param axis: The axis along which the cumulative sum is computed.
The default (None) is to compute the cumsum over the flattened array.
.. versionadded:: 0.
6.1
.. versionadded:: 0.
7
"""
return
CumsumOp
(
axis
=
axis
)(
x
)
...
...
@@ -252,7 +252,7 @@ def cumprod(x, axis=None):
:param axis: The axis along which the cumulative product is computed.
The default (None) is to compute the cumprod over the flattened array.
.. versionadded:: 0.
6.1
.. versionadded:: 0.
7
"""
return
CumprodOp
(
axis
=
axis
)(
x
)
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论