Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
P
pytensor
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
testgroup
pytensor
Commits
6c8b5b83
提交
6c8b5b83
authored
2月 01, 2012
作者:
Pascal Lamblin
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Modifications for 0.5rc2 release
上级
fdc95437
全部展开
隐藏空白字符变更
内嵌
并排
正在显示
7 个修改的文件
包含
35 行增加
和
32 行删除
+35
-32
EMAIL.txt
EMAIL.txt
+23
-25
HISTORY.txt
HISTORY.txt
+2
-1
NEWS.txt
NEWS.txt
+6
-2
LICENSE.txt
doc/LICENSE.txt
+1
-1
NEWS.txt
doc/NEWS.txt
+0
-0
conf.py
doc/conf.py
+2
-2
setup.py
setup.py
+1
-1
没有找到文件。
EMAIL.txt
浏览文件 @
6c8b5b83
===========================
Announcing Theano 0.
4.0
Announcing Theano 0.
5rc2
===========================
This is a major release, with lots of new features, bug fixes, and some
interface changes (deprecated or potentially misleading features were
removed). The upgrade is recommended for everybody, unless you rely on
deprecated features that have been removed.
This is a release candidate for a major version, with lots of new
features, bug fixes, and some interface changes (deprecated or
potentially misleading features were removed).
For those using the bleeding edge version in the
git repository, we encourage you to update to the `0.4.0` tag.
Deleting old cache
------------------
The upgrade is recommended for developpers who want to help test and
report bugs, or want to use new features now. If you have updated
to 0.5rc1, you are highly encouraged to update to 0.5rc2. There are
more bug fixes and speed uptimization! But there is also a small new
interface change about sum of [u]int* dtype. Otherwise, users should
wait for the 0.5 release.
The caching mechanism for compiled C modules has been updated.
In some cases, using previously-compiled modules with the new version of
Theano can lead to high memory usage and code slow-down. If you experience
these symptoms, we encourage you to clear your cache.
The easiest way to do that is to execute:
theano-cache clear
(The theano-cache executable is in Theano/bin.)
For those using the bleeding edge version in the
git repository, we encourage you to update to the `0.5rc2` tag.
What's New
...
...
@@ -87,11 +79,17 @@ Acknowledgments
---------------
I would like to thank all contributors of Theano. For this particular
release, many people have helped during the release sprint: (in
alphabetical order) Frederic Bastien, Arnaud Bergeron, James Bergstra,
Nicolas Boulanger-Lewandowski, Raul Chandias Ferrari, Olivier
Delalleau, Guillaume Desjardins, Philippe Hamel, Pascal Lamblin,
Razvan Pascanu and David Warde-Farley.
release, many people have helped, notably (in alphabetical order):
Frédéric Bastien, Justin Bayer, Arnaud Bergerond, James Bergstra,
Valentin Bisson, Josh Bleecher Snyder, Yann Dauphin, Olivier Delalleau,
Guillaume Desjardins, Sander Dieleman, Xavier Glorot, Ian Goodfellow,
Philippe Hamel, Pascal Lamblin, Eric Laufer, Razvan Pascanu, Matthew
Rocklin, Graham Taylor, Sebastian Urban, David Warde-Farley, and Yao Li.
I would also like to thank users who submitted bug reports, notably
(this list is incomplete, please let us know if someone should be
added): Nicolas Boulanger-Lewandowski, Olivier Chapelle, Michael
Forbes, and Timothy Lillicrap.
Also, thank you to all NumPy and Scipy developers as Theano builds on
their strengths.
...
...
HISTORY.txt
浏览文件 @
6c8b5b83
...
...
@@ -6,7 +6,8 @@ Old Release Notes
=================
Modifications in the 0.4.1 (12 August 2011)
Theano 0.4.1 (12 August 2011)
=============================
New features:
...
...
NEWS.txt
浏览文件 @
6c8b5b83
UPDATED THIS FILE UP TO: 41103b5d158739e4147428ce776fb5716062d4a8
.. _NEWS:
=============
Release Notes
=============
If you have updated to 0.5rc1, you are highly encouraged to update to
0.5rc2. There are more bug fixes and speed uptimization! But there is
...
...
@@ -6,7 +10,7 @@ also a small new interface change about sum of [u]int* dtype.
Modifications in the trunk since the 0.4.1 release (August 12th, 2011)
======================================================================
Upgrading to Theano 0.5rc2 is recommended for everyone, but you should first make
sure that your code does not raise deprecation warnings with Theano 0.4.1.
...
...
doc/LICENSE.txt
浏览文件 @
6c8b5b83
...
...
@@ -3,7 +3,7 @@
LICENSE
=======
Copyright (c) 2008--201
1
, Theano Development Team
Copyright (c) 2008--201
2
, Theano Development Team
All rights reserved.
Redistribution and use in source and binary forms, with or without
...
...
doc/NEWS.txt
浏览文件 @
6c8b5b83
差异被折叠。
点击展开。
doc/conf.py
浏览文件 @
6c8b5b83
...
...
@@ -45,7 +45,7 @@ master_doc = 'index'
# General substitutions.
project
=
'Theano'
copyright
=
'2008--201
1
, LISA lab'
copyright
=
'2008--201
2
, LISA lab'
# The default replacements for |version| and |release|, also used in various
# other places throughout the built documents.
...
...
@@ -53,7 +53,7 @@ copyright = '2008--2011, LISA lab'
# The short X.Y version.
version
=
'0.5'
# The full version, including alpha/beta/rc tags.
release
=
'0.5rc
1
'
release
=
'0.5rc
2
'
# There are two options for replacing |today|: either, you set today to some
# non-false value, then it is used:
...
...
setup.py
浏览文件 @
6c8b5b83
...
...
@@ -48,7 +48,7 @@ PLATFORMS = ["Windows", "Linux", "Solaris", "Mac OS-X", "Unix"]
MAJOR
=
0
MINOR
=
5
MICRO
=
0
SUFFIX
=
"rc
1
"
# Should be blank except for rc's, betas, etc.
SUFFIX
=
"rc
2
"
# Should be blank except for rc's, betas, etc.
ISRELEASED
=
False
VERSION
=
'
%
d.
%
d.
%
d
%
s'
%
(
MAJOR
,
MINOR
,
MICRO
,
SUFFIX
)
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论