Skip to content

Commit 63b7b83

Browse files
committed
Modifications for the final 0.7 release.
1 parent bb3b04c commit 63b7b83

File tree

8 files changed

+22
-22
lines changed

8 files changed

+22
-22
lines changed

NEWS.txt

+8-8
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@
22
Release Notes
33
=============
44

5-
Theano 0.7rc2 (13th of March, 2015)
6-
===================================
5+
Theano 0.7 (26th of March, 2015)
6+
================================
77
We recommand to everyone to upgrade to this version.
88

99
Highlights:
10-
* Too many bug and crash fixes to count
11-
* Many new optimizations as well
1210
* Integration of CuDNN for 2D convolutions and pooling on supported GPUs
13-
* Better support for GPU on Windows (Jan Chorowski, Nicolas Ballas)
14-
* On MacOS X, clang is used by default (Arnaud Bergeron)
15-
* Various fixes and improvement to scan
16-
11+
* Too many optimizations and new features to count
12+
* Various fixes and improvements to scan
13+
* Better support for GPU on Windows
14+
* On Mac OS X, clang is used by default
15+
* Many crash fixes
16+
* Some bug fixes as well

doc/LICENSE.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
LICENSE
44
=======
55

6-
Copyright (c) 2008--2013, Theano Development Team
6+
Copyright (c) 2008--2015, Theano Development Team
77
All rights reserved.
88

99
Contains code from NumPy, Copyright (c) 2005-2011, NumPy Developers.

doc/conf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@
5353
# The short X.Y version.
5454
version = '0.7'
5555
# The full version, including alpha/beta/rc tags.
56-
release = '0.7rc2'
56+
release = '0.7'
5757

5858
# There are two options for replacing |today|: either, you set today to some
5959
# non-false value, then it is used:

doc/install_windows.txt

+6-6
Original file line numberDiff line numberDiff line change
@@ -359,11 +359,11 @@ Theano. For the bleeding-edge version execute
359359

360360
git clone https://github.com/Theano/Theano.git
361361

362-
For the latest stable release 0.6 (as of Oct 2014) run instead:
362+
For the latest stable release 0.7 (as of March 2015) run instead:
363363

364364
.. code-block:: bash
365365

366-
git clone https://github.com/Theano/Theano.git --branch rel-0.6
366+
git clone https://github.com/Theano/Theano.git --branch rel-0.7
367367

368368
Either way, a folder `Theano` will be created with the library
369369
downloaded to it.
@@ -377,11 +377,11 @@ To get the latest bleeding edge version got to `Theano on GitHub
377377
<https://github.com/Theano/Theano/archive/master.zip>`_. Then unzip it
378378
somewhere.
379379

380-
Alternatively, you can check the latest release release 0.6 (as of Oct
381-
2014) by going to
382-
https://github.com/Theano/Theano/releases/tag/rel-0.6 and
380+
Alternatively, you can check the latest release release 0.7 (as of March
381+
2015) by going to
382+
https://github.com/Theano/Theano/releases/tag/rel-0.7 and
383383
downloading the `zip
384-
<https://github.com/Theano/Theano/archive/rel-0.6.zip>`_.
384+
<https://github.com/Theano/Theano/archive/rel-0.7.zip>`_.
385385

386386
Configuring Theano
387387
##################

doc/library/typed_list.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
.. note::
88

9-
This is not in the released version 0.6.0, but will be in the next release (0.7 or 0.6.1).
9+
This has been added in release 0.7.
1010

1111
.. note::
1212

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@
6666
MAJOR = 0
6767
MINOR = 7
6868
MICRO = 0
69-
SUFFIX = "rc2" # Should be blank except for rc's, betas, etc.
69+
SUFFIX = "" # Should be blank except for rc's, betas, etc.
7070
ISRELEASED = False
7171

7272
VERSION = '%d.%d.%d%s' % (MAJOR, MINOR, MICRO, SUFFIX)

theano/gradient.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -659,7 +659,7 @@ def subgraph_grad(wrt, end, start=None, cost=None, details=False):
659659
:return: Returns lists of gradients with respect to `wrt` and `end`,
660660
respectively.
661661
662-
.. versionadded:: 0.6.1
662+
.. versionadded:: 0.7
663663
'''
664664
assert ((cost is not None) or (start is not None))
665665
assert isinstance(end, list)
@@ -1905,7 +1905,7 @@ def consider_constant(x):
19051905
:return: The expression is returned unmodified, but its gradient
19061906
is now truncated to 0.
19071907
1908-
.. versionadded:: 0.6.1
1908+
.. versionadded:: 0.7
19091909
"""
19101910
warnings.warn((
19111911
"consider_constant() is deprecated, use zero_grad() or "

theano/tensor/extra_ops.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ def cumsum(x, axis=None):
128128
:param axis: The axis along which the cumulative sum is computed.
129129
The default (None) is to compute the cumsum over the flattened array.
130130
131-
.. versionadded:: 0.6.1
131+
.. versionadded:: 0.7
132132
"""
133133
return CumsumOp(axis=axis)(x)
134134

@@ -252,7 +252,7 @@ def cumprod(x, axis=None):
252252
:param axis: The axis along which the cumulative product is computed.
253253
The default (None) is to compute the cumprod over the flattened array.
254254
255-
.. versionadded:: 0.6.1
255+
.. versionadded:: 0.7
256256
"""
257257
return CumprodOp(axis=axis)(x)
258258

0 commit comments

Comments
 (0)