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

Commit

Permalink
Update for v1.8.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Jennifer Myers committed Jan 18, 2017
1 parent 720f84a commit 1316c53
Show file tree
Hide file tree
Showing 4 changed files with 35 additions and 16 deletions.
6 changes: 6 additions & 0 deletions ChangeLog
@@ -1,5 +1,11 @@
# ChangeLog

## v1.8.1 (2017-01-17):

* Bug fix: Add dilation to object dict and assign defaults to dil_w = dil_h = 1 [#335, #336]
* Bug fix: Prevent GPU backend from ignoring non-zero slope in Rectlinclip and change default slope to 0
* Bug fix: Nesterov momentum was updating velocities incorrectly

## v1.8.0 (2016-12-28):

* Skip Thought Vectors (http://arxiv.org/abs/1506.06726) example
Expand Down
17 changes: 5 additions & 12 deletions doc/source/index.rst
@@ -1,5 +1,5 @@
.. ---------------------------------------------------------------------------
.. Copyright 2015 Nervana Systems Inc.
.. Copyright 2015-2017 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 Down Expand Up @@ -36,17 +36,10 @@ Features include:

New features in this release:

* Skip Thought Vectors (http://arxiv.org/abs/1506.06726) example
* Dilated convolution support
* Nesterov Accelerated Gradient option to SGD optimizer
* MultiMetric class to allow wrapping Metric classes
* Support for serializing and deserializing encoder-decoder models
* Allow specifying the number of time steps to evaluate during beam search
* A new community-contributed Docker image
* Improved error messages when a tensor is created with an invalid shape or reshaped to an incompatible size
* Fix bugs in MultiCost support
* Documentation fixes [#331]
* See `change log`_.
* Bug fix: Add dilation to object dict and assign defaults to dil_w = dil_h = 1 [#335, #336]
* Bug fix: Prevent GPU backend from ignoring non-zero slope in Rectlinclip and change default slope to 0
* Bug fix: Nesterov momentum was updating velocities incorrectly
* See more in the `change log`_.

We use neon internally at Nervana to solve our `customers' problems`_
in many domains. Consider joining us. We are hiring across several
Expand Down
22 changes: 21 additions & 1 deletion doc/source/previous_versions.rst
@@ -1,5 +1,5 @@
.. ---------------------------------------------------------------------------
.. Copyright 2015-2016 Nervana Systems Inc.
.. Copyright 2015-2017 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 @@ -17,6 +17,24 @@
Previous Versions
=================

neon v1.8.0
-----------

|Docs180|_

neon v1.8.0 released December 28, 2016 supporting:

* Skip Thought Vectors (http://arxiv.org/abs/1506.06726) example
* Dilated convolution support
* Nesterov Accelerated Gradient option to SGD optimizer
* MultiMetric class to allow wrapping Metric classes
* Support for serializing and deserializing encoder-decoder models
* Allow specifying the number of time steps to evaluate during beam search
* A new community-contributed Docker image
* Improved error messages when a tensor is created with an invalid shape or reshaped to an incompatible size
* Fix bugs in MultiCost support
* Documentation fixes [#331]

neon v1.7.0
-----------

Expand Down Expand Up @@ -373,6 +391,7 @@ neon v0.8.1

Initial public release of neon.

.. |Docs180| replace:: Docs
.. |Docs170| replace:: Docs
.. |Docs160| replace:: Docs
.. |Docs154| replace:: Docs
Expand All @@ -395,6 +414,7 @@ Initial public release of neon.
.. |Docs9| replace:: Docs
.. |Docs8| replace:: Docs
.. _cudanet: https://github.com/NervanaSystems/cuda-convnet2
.. _Docs180: http://neon.nervanasys.com/docs/1.8.0
.. _Docs170: http://neon.nervanasys.com/docs/1.7.0
.. _Docs160: http://neon.nervanasys.com/docs/1.6.0
.. _Docs154: http://neon.nervanasys.com/docs/1.5.4
Expand Down
6 changes: 3 additions & 3 deletions setup.py
@@ -1,6 +1,6 @@
#!/usr/bin/env python
# ----------------------------------------------------------------------------
# Copyright 2016 Nervana Systems Inc.
# Copyright 2016-2017 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 @@ -18,7 +18,7 @@
import subprocess

# Define version information
VERSION = '1.8.0'
VERSION = '1.8.1'
FULLVERSION = VERSION
write_version = True

Expand All @@ -33,7 +33,7 @@

if write_version:
txt = "# " + ("-" * 77) + "\n"
txt += "# Copyright 2016 Nervana Systems Inc.\n"
txt += "# Copyright 2017 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 1316c53

Please sign in to comment.