Skip to content
This repository has been archived by the owner on Jan 3, 2023. It is now read-only.

Commit

Permalink
v1.2.2 release bump.
Browse files Browse the repository at this point in the history
  • Loading branch information
scttl committed Feb 25, 2016
1 parent 8ac7b71 commit 5c8380c
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 1 deletion.
13 changes: 13 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# ChangeLog

## v1.2.2 (2106-02-24):

### Modifications

* benchmarking enhancements
* fast dimshuffle, transpose, other kernel speedups and refactoring
* batch norm states fix, deterministic updates
* example fixes for fast rcnn and conv_autoencoder
* image decoding rescaling method fix
* deserialization fixes for RNN's, refactoring
* caffe compatibility fixes
* documentation updates

## v1.2.1 (2016-02-05):

### Modifications
Expand Down
2 changes: 1 addition & 1 deletion neon/layers/layer.py
Original file line number Diff line number Diff line change
Expand Up @@ -747,7 +747,7 @@ def __init__(self, nout, init, bsum=False, name=None):
super(Linear, self).__init__(init, name, "Disabled")
self.nout = nout
self.inputs = None
self.bsum = bsum and not self.be.deterministic
self.bsum = bsum

def __str__(self):
return "Linear Layer '%s': %d inputs, %d outputs" % (
Expand Down

0 comments on commit 5c8380c

Please sign in to comment.