Skip to content

Commit

Permalink
[DOCS] Updated the website and the release notes.
Browse files Browse the repository at this point in the history
  • Loading branch information
eaplatanios committed Nov 22, 2018
1 parent efe9deb commit cb6dfc5
Show file tree
Hide file tree
Showing 4 changed files with 29 additions and 3 deletions.
2 changes: 1 addition & 1 deletion RELEASE.md
@@ -1,4 +1,4 @@
# 0.4.1
# 0.4.1 Fixed Precompiled TF Binaries and Some New Features

Fixed the precompiled TensorFlow binaries, and also added the following
new features:
Expand Down
4 changes: 2 additions & 2 deletions docs/src/main/paradox/installation.md
Expand Up @@ -17,7 +17,7 @@ for Scala, you should add the following dependency:
@@ dependency[sbt,Maven,Gradle] {
group="org.platanios"
artifact="tensorflow"
version="0.4.0"
version="0.4.1"
}

@@@ note
Expand Down Expand Up @@ -45,7 +45,7 @@ Add the following dependency, instead of the previous one:
@@ dependency[sbt,Maven,Gradle] {
group="org.platanios"
artifact="tensorflow"
version="0.4.0"
version="0.4.1"
classifier="linux-cpu-x86_64"
}

Expand Down
1 change: 1 addition & 0 deletions docs/src/main/paradox/release_notes.md
Expand Up @@ -4,6 +4,7 @@

@@@ index

- [0.4.1](release_notes/0.4.1.md)
- [0.4.0](release_notes/0.4.0.md)
- [0.3.0](release_notes/0.3.0.md)
- [0.2.4](release_notes/0.2.4.md)
Expand Down
25 changes: 25 additions & 0 deletions docs/src/main/paradox/release_notes/0.4.1.md
@@ -0,0 +1,25 @@
# Release 0.4.1

Fixed the precompiled TensorFlow binaries, and also added the following
new features:

- `io` module:
- Added support for a new `TFRecordWriter`.
- `ops` module:
- Added a new ops namespace, `sparse`, that includes all sparse ops.
- Added support for `sparse.reorder` and `sparse.merge`.
- Added support for parsing TF records.
- `data` module:
- Added support for `Dataset.shuffleAndRepeat`.
- `optimizers` module:
- Added support for the Adafactor optimizer.
- Renamed `SqrtDecay` to `RSqrtDecay` which is more appropriate.
- `math` module:
- Added support for `batchGather`.
- Added support for bitwise ops.
- `rnn` module:
- Simplified the attention mechanisms functionality so that it is
now not required to tile memory tensors for beam search outside
the beam search decoder.
- Moved the `seq2seq` module to a separate repository (that of
[Symphony Machine Translation](https://github.com/eaplatanios/symphony-mt)).

0 comments on commit cb6dfc5

Please sign in to comment.