Skip to content

Commit d929e0a

Browse files
committed
Merge pull request lisa-lab#1069 from nouiz/news
Updated NEWS.txt for 0.6rc2.
2 parents f2c73f6 + 9c677a8 commit d929e0a

File tree

1 file changed

+117
-0
lines changed

1 file changed

+117
-0
lines changed

NEWS.txt

Lines changed: 117 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,123 @@
33
Updates in the Trunk since the last release:
44

55
https://github.com/Theano/Theano/wiki/Devnews
6+
git log rel-0.6rc1.. | grep --color=auto -i merge | less
7+
done up to PR 1084
8+
9+
10+
=============
11+
Release Notes (DRAFT)
12+
=============
13+
14+
Theano 0.6rc2 (November ?st, 2012)
15+
=================================
16+
17+
Highlight:
18+
* Fix a few regression inserted in 0.6rc1
19+
* A few new features.
20+
* Speed up.
21+
* Scan fix.
22+
* Crash fix
23+
24+
Commiters for this rc2 only:
25+
Razvan Pascanu
26+
Pascal Lamblin
27+
Frederic Bastien
28+
Ian Goodfellow
29+
Jeremiah Lowin
30+
Caglar Gulcehre
31+
Jey Kottalam
32+
Matthew Rocklin
33+
abalkin
34+
35+
36+
Regression in 0.6rc1 fixed:
37+
* Fix the scan gradient dtype issue. In 0.6rc1, some upcast where inserted. (Razvan P.)
38+
* Now grad() will do as before the 0.6rc1 for float, i.e. the grad dtype will be the same as the inputs inside the graph. If you ask for the direct grad, it will return the computed dtype. (Pascal L.)
39+
40+
Wrong results fix:
41+
* Scan fix in some case didn't returned the good results. (Razvan P., reported by Jeremiah L.)
42+
This happen if you have a state with only neg tap and the outputs of the state is a function of some sequence.
43+
If you have multiple state, there was no problem.
44+
* Fixed bug in Scan with multiple outputs,
45+
where one output would sometimes overwrite another one. (Razvan P.)
46+
* Clip.grad treated the gradient with respect to the clipping boundary as always 0. (Ian G.)
47+
48+
Interface change:
49+
* Now we do not support unaligned ndarray in python code. (Frederic B.)
50+
We did not support it in c code and supporting it in python code made
51+
the detection harder.
52+
* Now we only support officialy scipy 0.7.2 and numpy 1.5.0 (Frederic B.)
53+
We weren't and aren't testing with older version.
54+
* The theano.sparse.SparseType is available even when scipy is not (Frederic B.)
55+
* Fixes issue where members of consider_constant grad parameter
56+
were treated differently from Constant variables. (Ian G.)
57+
* Remove the parameter g_cost to theano.grad(). (Ian G.)
58+
Use the new more powerfull parameter known_grads instead.
59+
60+
NumPy interface support:
61+
* theano.tensor.where is an alias for theano.tensor.switch to support NumPy semantic. (Ian G.)
62+
* TensorVariable objects now have dot, argmin, argmax, clip, conj, repeat, trace, std, round,
63+
ravel and argsort functions and the real and imag properties as numpy.ndarray object.
64+
The functionality was already available in Theano. (abalkin)
65+
66+
Speed up:
67+
* A C version of the SoftMax op (Razvan P.)
68+
There was c code for the softmax with bias code.
69+
* Faster GpuIncSubtensor (Ian G.)
70+
* Faster copy on the GPU for 4d tensor. (Ian G.)
71+
* The fix of flatten infer_shape re-enable an optimization (Pascal L.)
72+
* The bug was introduced in 0.6rc1.
73+
* Enable inc_subtensor on the GPU when updating it with a float64 dtype. (Ian G.)
74+
It was causing an optimization warning.
75+
* Make DeepCopy reuse preallocated memory. (Frédéric B.)
76+
* Move then convolution to the GPU when the image shape and logical image shape differ. (Frédéric Bastien)
77+
* C code for the View Op (Razvan P., Pascal L.)
78+
79+
New Feature:
80+
* Added a monitoring mode "MonitorMode" as a debugging tool. (Olivier D.)
81+
* Allow integer axes when keepdims==True (Jeremiah Lowin)
82+
* Add erfinv and erfcinv op. (Jey Kottalam)
83+
* Added tensor.batched_dot(). (Caglar Gulcehre)
84+
It use scan behind the scene, but making doing this easier.
85+
* theano.get_constant_value(x) (Frederic B.)
86+
This try to do have x as a constant int.
87+
This do some constant folding to try to convert x into an int.
88+
Used by some optimization.
89+
* Add theano.tensor.io.{MPIRecv,MPIRecvWait,MPISend,MPISendWait} (Matthew Rocklin)
90+
Theano do not automatically use them. It is up to you to use them and split your computation.
91+
* Added theano.sandbox.linalg.eig (abalkin)
92+
* Started some support for Python3 (abalkin)
93+
setup.py support python3 now.
94+
It call 2to3 during the setup.
95+
Python3 not fully supported as we didn't update the c code.
96+
97+
98+
Crash Fix:
99+
* Fix a crash related to scan.grad due to the new mechanism. (Ian G.)
100+
* Fix an optimization warning. Now it get optimized. (Frederic B.)
101+
* Fix crash introduced in 0.6rc1 in theano.grad (Ian G.)
102+
* Fix crash introduced in 0.6rc1 in the grad of scan (Razvan P.)
103+
* Fix crash introduced in 0.6rc1 in the grad of clip (Ian G.)
104+
Also implement the gradient on the min/max bound.
105+
* Fix crash in the grad of tensor.switch for int (Ian G.)
106+
* Fix crash when mixing shared variable on the GPU and sparse dot. (Pascal L.)
107+
* Fix crash as sometimes sparse.dot would return a different dtype number
108+
that is equivalent but not the one expected. (Pascal L., reported by Rami Al-Rfou)
109+
* Better error msg (Ian G.)
110+
* Move all sparse random function back to sandbox as it don't have a state inside Theano. (Pascal L.)
111+
They where moved outside the sandbox in 0.6rc1
112+
* LoadFromDisk now is allowed to take only support some memmap mode. (Pascal L.)
113+
Otherwise, this was causing errors, segmentation faults or wrong results.
114+
* Fix import problem on PiCloud (Jeremiah Lowin)
115+
* You need to use the c|py linker with the default
116+
environment. Otherwise, you need to create your own environment.
117+
* Fix a crash during optimization when we take a subtensor of a constant with a non constant index. (Ian G.)
118+
* Better handling and error message of gradients on integer. (Ian G.)
119+
* Fixes a crash where Scan assumed all TypeErrors raised by the grad function were due to undefined gradients (Ian G.)
120+
121+
Other:
122+
* Doc typo fixes, Doc updates, Better error messages: Olivier D., David W.F., Frederic B., James B., Matthew Rocklin, Ian G., abalkin.
6123

7124
=============
8125
Release Notes

0 commit comments

Comments
 (0)