Skip to content

Commit

Permalink
Update for 1.4.0 release (draft pending review)
Browse files Browse the repository at this point in the history
  • Loading branch information
Jennifer Myers committed Apr 29, 2016
1 parent 8aab609 commit b513111
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 3 deletions.
15 changes: 15 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
# ChangeLog

## v1.4.0 (2016-04-29):

### Modifications

* VGG16 based Fast R-CNN model using winograd kernels
* new, backward compatible, generic data loader
* C3D video loader model trained on UCF101 dataset
* Deep Dream example
* add support for freebsd [#219]
* make conv layer printout more informative [#222]
* fix some examples to use new arg override capability
* improve performance for relu for small N
* better support for arbitrary batch norm layer placement
* documentation updates [#210, #213, #236]

## v1.3.0 (2016-03-03):

### Modifications
Expand Down
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env python
# ----------------------------------------------------------------------------
# Copyright 2015 Nervana Systems Inc.
# Copyright 2016 Nervana Systems Inc.
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
Expand All @@ -19,7 +19,7 @@
import subprocess

# Define version information
VERSION = '1.3.0'
VERSION = '1.4.0'
FULLVERSION = VERSION
write_version = True

Expand All @@ -34,7 +34,7 @@

if write_version:
txt = "# " + ("-" * 77) + "\n"
txt += "# Copyright 2015 Nervana Systems Inc.\n"
txt += "# Copyright 2016 Nervana Systems Inc.\n"
txt += "# Licensed under the Apache License, Version 2.0 "
txt += "(the \"License\");\n"
txt += "# you may not use this file except in compliance with the "
Expand Down

0 comments on commit b513111

Please sign in to comment.