Repository: incubator-singa Updated Branches: refs/heads/master a2f4e4680 -> b6591d11f
singa-0.2.0-rc1 update release notes to include features about gru, bptt and alexnet Project: http://git-wip-us.apache.org/repos/asf/incubator-singa/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-singa/commit/b6591d11 Tree: http://git-wip-us.apache.org/repos/asf/incubator-singa/tree/b6591d11 Diff: http://git-wip-us.apache.org/repos/asf/incubator-singa/diff/b6591d11 Branch: refs/heads/master Commit: b6591d11f4974768bc0e44a7e158690beb05a626 Parents: 8ad73e6 Author: Wei Wang <[email protected]> Authored: Wed Jan 6 02:18:06 2016 +0800 Committer: Wei Wang <[email protected]> Committed: Wed Jan 6 02:18:29 2016 +0800 ---------------------------------------------------------------------- README.md | 8 +++----- RELEASE_NOTES | 21 +++++++++++++-------- 2 files changed, 16 insertions(+), 13 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-singa/blob/b6591d11/README.md ---------------------------------------------------------------------- diff --git a/README.md b/README.md index caa6cf7..329f40b 100644 --- a/README.md +++ b/README.md @@ -58,13 +58,11 @@ Please make sure you have `g++ >= 4.8.1` before building SINGA. $ make To compile with GPU support, you should run: - + $ ./configure --enable-cuda --with-cuda=/CUDA/PATH --enable-cudnn --with-cudnn=/CUDNN/PATH ---with-cuda and --with-cudnn are optional as by default the script will search -system paths. -Please kindly set proper environment parameters (LD_LIBRARY_PATH, LIBRARY_PATH, -etc.) when you run the code. +--with-cuda and --with-cudnn are optional as by default the script will search system paths. +Please kindly set proper environment parameters (LD_LIBRARY_PATH, LIBRARY_PATH, etc.) when you run the code. To compile with HDFS support, you should run: http://git-wip-us.apache.org/repos/asf/incubator-singa/blob/b6591d11/RELEASE_NOTES ---------------------------------------------------------------------- diff --git a/RELEASE_NOTES b/RELEASE_NOTES index a73157a..1590dea 100644 --- a/RELEASE_NOTES +++ b/RELEASE_NOTES @@ -8,24 +8,28 @@ deep learning models. This release includes following features: * Programming model - * [SINGA-80] New Blob Level and Address Level Math Operation Interface + * [SINGA-80] New Blob Level and Address Level Math Operation Interface * [SINGA-82] Refactor input layers using data store abstraction * [SINGA-87] Replace exclude field to include field for layer configuration * [SINGA-110] Add Layer member datavec_ and gradvec_ + * [SINGA-120] Implemented GRU and BPTT (BPTTWorker) * Neuralnet layers * [SINGA-91] Add SoftmaxLayer and ArgSortLayer - * [SINGA-106] Add dummy layer for test purpose + * [SINGA-106] Add dummy layer for test purpose + * [SINGA-120] Implemented GRU and BPTT (GRULayer and OneHotLayer) * GPU training support * [SINGA-100] Implement layers using CUDNN for GPU training * [SINGA-104] Add Context Class * [SINGA-105] Update GUN make files for compiling cuda related code + * [SINGA-98] Add Support for AlexNet ImageNet Classification Model + * Model/Hybrid partition * [SINGA-109] Refine bridge layers * [SINGA-111] Add slice, concate and split layers - * [SINGA-113] Model/Hybrid Partition Support + * [SINGA-113] Model/Hybrid Partition Support * Python binding * [SINGA-108] Add Python wrapper to singa @@ -37,10 +41,10 @@ This release includes following features: * [SINGA-11] Start SINGA on Apache Mesos * [SINGA-78] Use Doxygen to generate documentation * [SINGA-89] Add Docker support - + * Unit test * [SINGA-95] Add make test after building - + * Other improvment * [SINGA-84] Header Files Rearrange * [SINGA-93] Remove the asterisk in the log tcp://169.254.12.152:*:49152 @@ -48,14 +52,15 @@ This release includes following features: * [SINGA-96] Add Momentum to Cifar10 Example * [SINGA-101] Add ll (ls -l) command in .bashrc file when using docker * [SINGA-114] Remove short logs in tmp directory - * [SINGA-115] Print layer debug information in the neural net graph file - * [SINGA-118] Make protobuf LayerType field id easy to assign + * [SINGA-115] Print layer debug information in the neural net graph file + * [SINGA-118] Make protobuf LayerType field id easy to assign + * [SIGNA-97] Add HDFS Store * Bugs fixed * [SINGA-85] Fix compilation errors in examples * [SINGA-90] Miscellaneous trivial bug fixes * [SINGA-107] Error from loading pre-trained params for training stacked RBMs - * [SINGA-116] Fix a bug in InnerProductLayer caused by weight matrix sharing + * [SINGA-116] Fix a bug in InnerProductLayer caused by weight matrix sharing -----------------------------------------
