Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
P
pytensor
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
testgroup
pytensor
Commits
a5e02f38
提交
a5e02f38
authored
3月 06, 2017
作者:
notoraptor
提交者:
Frederic Bastien
3月 07, 2017
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Prepare release 0.9.0rc3.
上级
b4b5740d
隐藏空白字符变更
内嵌
并排
正在显示
6 个修改的文件
包含
46 行增加
和
3 行删除
+46
-3
NEWS.txt
NEWS.txt
+28
-0
NEWS_DEV.txt
NEWS_DEV.txt
+13
-0
conf.py
doc/conf.py
+1
-1
index.txt
doc/index.txt
+2
-0
introduction.txt
doc/introduction.txt
+1
-1
setup.py
setup.py
+1
-1
没有找到文件。
NEWS.txt
浏览文件 @
a5e02f38
...
@@ -3,6 +3,34 @@ Release Notes
...
@@ -3,6 +3,34 @@ Release Notes
=============
=============
Theano 0.9.0rc3 (6th of March, 2017)
====================================
This release extends the 0.9.0rc2 and announces the upcoming final release 0.9.
Highlights (since 0.9.0rc2):
- Graph clean up and faster compilation
- Removed warp-synchronous programming
- New Theano flag conv.assert_shape
- Fix precision in cuDNN
- Fix overflow in pooling
- Test fixes
- Some useless optimizations are now marked as unsafe
- Warn if taking softmax over broadcastable dimension
- Removed old files not used anymore
A total of 5 people contributed to this release since 0.9.0rc2 and 122 since 0.8.0, see the lists below.
Committers since 0.9.0rc2:
- Frederic Bastien
- Arnaud Bergeron
- Pascal Lamblin
- Florian Bordes
- Jan Schlüter
Theano 0.9.0rc2 (27th of February, 2017)
Theano 0.9.0rc2 (27th of February, 2017)
========================================
========================================
...
...
NEWS_DEV.txt
浏览文件 @
a5e02f38
...
@@ -45,6 +45,7 @@ Highlights:
...
@@ -45,6 +45,7 @@ Highlights:
- better mapping between theano device number and nvidia-smi number, using the PCI bus ID of graphic cards
- better mapping between theano device number and nvidia-smi number, using the PCI bus ID of graphic cards
- More pooling support on GPU when cuDNN isn't there
- More pooling support on GPU when cuDNN isn't there
- ignore_border=False is now implemented for pooling
- ignore_border=False is now implemented for pooling
- Removed warp-synchronous programming
Interface changes:
Interface changes:
- In MRG, replaced method `multinomial_wo_replacement()` with new method `choice()`
- In MRG, replaced method `multinomial_wo_replacement()` with new method `choice()`
...
@@ -78,6 +79,7 @@ GPU:
...
@@ -78,6 +79,7 @@ GPU:
for convolution backward filter operations
for convolution backward filter operations
New features:
New features:
- Added new Theano flag conv.assert_shape
- OpFromGraph now allows gradient overriding for every input
- OpFromGraph now allows gradient overriding for every input
- Added Abstract Ops for batch normalization that use cuDNN when available and pure Theano CPU/GPU alternatives otherwise
- Added Abstract Ops for batch normalization that use cuDNN when available and pure Theano CPU/GPU alternatives otherwise
- Added new Theano flag cuda.enabled
- Added new Theano flag cuda.enabled
...
@@ -102,9 +104,11 @@ Others:
...
@@ -102,9 +104,11 @@ Others:
- More stack trace in error message
- More stack trace in error message
- Speed up cholesky grad
- Speed up cholesky grad
- log(sum(exp(...))) now get stability optimized
- log(sum(exp(...))) now get stability optimized
- Some useless optimizations are now marked as unsafe
Other more detailed changes:
Other more detailed changes:
- Faster compilation and import with old CUDA backend
- Use of 64-bit indexing in sparse ops to allow matrix with more then 2\ :sup:`31`\ -1 elements.
- Use of 64-bit indexing in sparse ops to allow matrix with more then 2\ :sup:`31`\ -1 elements.
- Allow more then one output to be an destructive inplace
- Allow more then one output to be an destructive inplace
- Add flag profiling.ignore_first_call, useful to profile the new gpu back-end
- Add flag profiling.ignore_first_call, useful to profile the new gpu back-end
...
@@ -119,6 +123,15 @@ Other more detailed changes:
...
@@ -119,6 +123,15 @@ Other more detailed changes:
ALL THE PR BELLOW HAVE BEEN CHECKED
ALL THE PR BELLOW HAVE BEEN CHECKED
* https://github.com/Theano/Theano/pull/5631
* https://github.com/Theano/Theano/pull/5651
* https://github.com/Theano/Theano/pull/5652
* https://github.com/Theano/Theano/pull/5646
* https://github.com/Theano/Theano/pull/5634
* https://github.com/Theano/Theano/pull/5650
* https://github.com/Theano/Theano/pull/5636
* https://github.com/Theano/Theano/pull/5635
* https://github.com/Theano/Theano/pull/5632
* https://github.com/Theano/Theano/pull/5626
* https://github.com/Theano/Theano/pull/5626
* https://github.com/Theano/Theano/pull/5625
* https://github.com/Theano/Theano/pull/5625
* https://github.com/Theano/Theano/pull/5616
* https://github.com/Theano/Theano/pull/5616
...
...
doc/conf.py
浏览文件 @
a5e02f38
...
@@ -74,7 +74,7 @@ copyright = '2008--2017, LISA lab'
...
@@ -74,7 +74,7 @@ copyright = '2008--2017, LISA lab'
# The short X.Y version.
# The short X.Y version.
version
=
'0.9'
version
=
'0.9'
# The full version, including alpha/beta/rc tags.
# The full version, including alpha/beta/rc tags.
release
=
'0.9.0rc
2
'
release
=
'0.9.0rc
3
'
# There are two options for replacing |today|: either, you set today to some
# There are two options for replacing |today|: either, you set today to some
# non-false value, then it is used:
# non-false value, then it is used:
...
...
doc/index.txt
浏览文件 @
a5e02f38
...
@@ -21,6 +21,8 @@ learning/machine learning <https://mila.umontreal.ca/en/cours/>`_ classes).
...
@@ -21,6 +21,8 @@ learning/machine learning <https://mila.umontreal.ca/en/cours/>`_ classes).
News
News
====
====
* 2017/03/06: Release of Theano 0.9.0rc3, with crash fixes, bug fixes and improvements.
* 2017/02/27: Release of Theano 0.9.0rc2, with crash fixes, bug fixes and improvements.
* 2017/02/27: Release of Theano 0.9.0rc2, with crash fixes, bug fixes and improvements.
* 2017/02/20: Release of Theano 0.9.0rc1, many improvements and bugfixes, final release to coming.
* 2017/02/20: Release of Theano 0.9.0rc1, many improvements and bugfixes, final release to coming.
...
...
doc/introduction.txt
浏览文件 @
a5e02f38
...
@@ -165,7 +165,7 @@ Note: There is no short term plan to support multi-node computation.
...
@@ -165,7 +165,7 @@ Note: There is no short term plan to support multi-node computation.
Theano Vision State
Theano Vision State
===================
===================
Here is the state of that vision as of
February 27th, 2017 (after Theano 0.9.0rc2
):
Here is the state of that vision as of
March 6th, 2017 (after Theano 0.9.0rc3
):
* We support tensors using the `numpy.ndarray` object and we support many operations on them.
* We support tensors using the `numpy.ndarray` object and we support many operations on them.
* We support sparse types by using the `scipy.{csc,csr,bsr}_matrix` object and support some operations on them.
* We support sparse types by using the `scipy.{csc,csr,bsr}_matrix` object and support some operations on them.
...
...
setup.py
浏览文件 @
a5e02f38
...
@@ -53,7 +53,7 @@ PLATFORMS = ["Windows", "Linux", "Solaris", "Mac OS-X", "Unix"]
...
@@ -53,7 +53,7 @@ PLATFORMS = ["Windows", "Linux", "Solaris", "Mac OS-X", "Unix"]
MAJOR
=
0
MAJOR
=
0
MINOR
=
9
MINOR
=
9
MICRO
=
0
MICRO
=
0
SUFFIX
=
"rc
2
"
# Should be blank except for rc's, betas, etc.
SUFFIX
=
"rc
3
"
# Should be blank except for rc's, betas, etc.
ISRELEASED
=
False
ISRELEASED
=
False
VERSION
=
'
%
d.
%
d.
%
d
%
s'
%
(
MAJOR
,
MINOR
,
MICRO
,
SUFFIX
)
VERSION
=
'
%
d.
%
d.
%
d
%
s'
%
(
MAJOR
,
MINOR
,
MICRO
,
SUFFIX
)
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论