Author: buildbot
Date: Fri Sep 18 15:30:48 2015
New Revision: 965914
Log:
Staging update by buildbot for singa
Added:
websites/staging/singa/trunk/content/images/rnnlm.png (with props)
Modified:
websites/staging/singa/trunk/content/ (props changed)
websites/staging/singa/trunk/content/community/team-list.html
websites/staging/singa/trunk/content/develop/how-contribute.html
websites/staging/singa/trunk/content/docs/examples.html
websites/staging/singa/trunk/content/docs/rnn.html
websites/staging/singa/trunk/content/index.html
Propchange: websites/staging/singa/trunk/content/
------------------------------------------------------------------------------
--- cms:source-revision (original)
+++ cms:source-revision Fri Sep 18 15:30:48 2015
@@ -1 +1 @@
-1703880
+1703887
Modified: websites/staging/singa/trunk/content/community/team-list.html
==============================================================================
--- websites/staging/singa/trunk/content/community/team-list.html (original)
+++ websites/staging/singa/trunk/content/community/team-list.html Fri Sep 18
15:30:48 2015
@@ -645,15 +645,6 @@
<tr class="b">
-<td>Wei Wu </td>
-
-<td><a class="externalLink"
href="mailto:[email protected]">[email protected]</a> </td>
-
-<td>NetEase </td>
- </tr>
-
-<tr class="a">
-
<td>Zhongle Xie </td>
<td><a class="externalLink"
href="mailto:[email protected]">[email protected]</a> </td>
@@ -661,7 +652,7 @@
<td>National University of Singapore </td>
</tr>
-<tr class="b">
+<tr class="a">
<td>Kaiping Zheng </td>
Modified: websites/staging/singa/trunk/content/develop/how-contribute.html
==============================================================================
--- websites/staging/singa/trunk/content/develop/how-contribute.html (original)
+++ websites/staging/singa/trunk/content/develop/how-contribute.html Fri Sep 18
15:30:48 2015
@@ -488,8 +488,7 @@
<div id="bodyColumn" class="span10" >
- <div class="section">
-<h2><a name="How_to_Contribute_to_SINGA"></a>How to Contribute to SINGA</h2>
+ <h1>How to Contribute to SINGA</h1>
<hr />
<p>As with any open source project, there are several ways you can help:</p>
@@ -504,7 +503,7 @@
<li>Check SINGA’s <a href="schedule.html">development schedule</a> and
<a href="contribute-code.html">contribute code</a> by providing patches.</li>
<li><a href="contribute-docs.html">Help with the documentation</a> by updating
webpages that are lacking or unclear.</li>
-</ul></div>
+</ul>
</div>
</div>
</div>
Modified: websites/staging/singa/trunk/content/docs/examples.html
==============================================================================
--- websites/staging/singa/trunk/content/docs/examples.html (original)
+++ websites/staging/singa/trunk/content/docs/examples.html Fri Sep 18 15:30:48
2015
@@ -489,7 +489,7 @@
<div id="bodyColumn" class="span10" >
<h1>Example Models</h1>
-<p>Different models are provided as examples to help users get familiar with
SINGA. <a href="neuralnet.html">Neural Network</a> gives details on the models
that are supported by SINGA.</p>
+<p>Different models are provided as examples to help users get familiar with
SINGA. <a href="neural-net.html">Neural Network</a> gives details on the models
that are supported by SINGA.</p>
<div class="section">
<div class="section">
<h3><a name="Feed-forward_neural_networks"></a>Feed-forward neural
networks</h3>
@@ -503,14 +503,14 @@
<p><a href="cnn.html">Convolutional Neural Network</a> trained on MNIST and
CIFAR10 for image classification.</p></li>
<li>
-<p><a href="auto-encoder.html">Deep Auto-Encoders</a> trained on MNIST for
dimensionality</p></li>
+<p><a href="rbm.html">Deep Auto-Encoders</a> trained on MNIST for
dimensionality</p></li>
</ul></div>
<div class="section">
<h3><a name="Recurrent_neural_networks_RNN"></a>Recurrent neural networks
(RNN)</h3>
<ul>
-<li><a href="rnn.html">RNN language model</a> trained on Penn treebank corpus
for language modeling.</li>
+<li><a href="rnn.html">RNN language model</a> trained on plain text for
language modelling.</li>
</ul></div>
<div class="section">
<h3><a name="Energy_models"></a>Energy models</h3>
Modified: websites/staging/singa/trunk/content/docs/rnn.html
==============================================================================
--- websites/staging/singa/trunk/content/docs/rnn.html (original)
+++ websites/staging/singa/trunk/content/docs/rnn.html Fri Sep 18 15:30:48 2015
@@ -9,7 +9,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="Date-Revision-yyyymmdd" content="20150918" />
<meta http-equiv="Content-Language" content="en" />
- <title>Apache SINGA – </title>
+ <title>Apache SINGA – Recurrent Neural Networks for Language
Modelling</title>
<link rel="stylesheet" href="../css/apache-maven-fluido-1.4.min.css" />
<link rel="stylesheet" href="../css/site.css" />
<link rel="stylesheet" href="../css/print.css" media="print" />
@@ -210,7 +210,7 @@
Apache SINGA</a>
<span class="divider">/</span>
</li>
- <li class="active "></li>
+ <li class="active ">Recurrent Neural Networks for Language
Modelling</li>
@@ -488,7 +488,7 @@
<div id="bodyColumn" class="span10" >
- <p>Recurrent Neural Networks for Language Modelling</p>
+ <h1>Recurrent Neural Networks for Language Modelling</h1>
<hr />
<p>Recurrent Neural Networks (RNN) are widely used for modelling sequential
data, such as music and sentences. In this example, we use SINGA to train a <a
class="externalLink"
href="http://www.fit.vutbr.cz/research/groups/speech/publi/2010/mikolov_interspeech2010_IS100722.pdf">RNN
model</a> proposed by Tomas Mikolov for <a class="externalLink"
href="https://en.wikipedia.org/wiki/Language_model">language modeling</a>. The
training objective (loss) is to minimize the <a class="externalLink"
href="https://en.wikipedia.org/wiki/Perplexity">perplexity per word</a>, which
is equivalent to maximize the probability of predicting the next word given the
current word in a sentence.</p>
<p>Different to the <a href="cnn.html">CNN</a>, <a href="mlp.html">MLP</a> and
<a href="rbm.html">RBM</a> examples which use built-in layers(layer) and
records(data), none of the layers in this example are built-in. Hence users
would learn to implement their own layers and data records through this
example.</p>
Added: websites/staging/singa/trunk/content/images/rnnlm.png
==============================================================================
Binary file - no diff available.
Propchange: websites/staging/singa/trunk/content/images/rnnlm.png
------------------------------------------------------------------------------
svn:mime-type = image/png
Modified: websites/staging/singa/trunk/content/index.html
==============================================================================
--- websites/staging/singa/trunk/content/index.html (original)
+++ websites/staging/singa/trunk/content/index.html Fri Sep 18 15:30:48 2015
@@ -508,32 +508,40 @@
<ul>
-<li>Documentations are listed <a href="docs.html">here</a>.</li>
+<li>
+<p>Documentations are listed <a href="docs.html">here</a>.</p></li>
-<li>Code API can be found <a href="api/index.html">here</a>.</li>
+<li>
+<p>Code API can be found <a href="api/index.html">here</a>.</p></li>
-<li>Research publication list is available <a class="externalLink"
href="http://www.comp.nus.edu.sg/~dbsystem/singa//research/publication/">here</a>.</li>
+<li>
+<p>Research publication list is available <a class="externalLink"
href="http://www.comp.nus.edu.sg/~dbsystem/singa/research/publication/">here</a>.</p></li>
</ul></div>
<div class="section">
<h3><a name="How_to_contribute"></a>How to contribute</h3>
<ul>
-<li>Please subscribe to our development mailing list <a class="externalLink"
href="mailto:[email protected]">[email protected]</a>.</li>
+<li>
+<p>Please subscribe to our development mailing list <a class="externalLink"
href="mailto:[email protected]">[email protected]</a>.</p></li>
-<li>If you find any issues using SINGA, please report it to the <a
class="externalLink" href="https://issues.apache.org/jira/browse/singa">Issue
Tracker</a>.</li>
+<li>
+<p>If you find any issues using SINGA, please report it to the <a
class="externalLink" href="https://issues.apache.org/jira/browse/singa">Issue
Tracker</a>.</p></li>
-<li>You can also contact with <a href="dev/community">SINGA committers</a>
directly.</li>
+<li>
+<p>You can also contact with <a href="community.html">SINGA committers</a>
directly.</p></li>
</ul>
-<p>More details on contributing to SINGA is described <a
href="dev/contribute">here</a>.</p></div>
+<p>More details on contributing to SINGA is described <a
href="develop/how-contribute.html">here</a>.</p></div>
<div class="section">
<h3><a name="Recent_News"></a>Recent News</h3>
<ul>
-<li>SINGA was presented in a <a class="externalLink"
href="http://www.comp.nus.edu.sg/~dbsystem/singa/workshop">workshop on deep
learning</a> held on 16 Sep, 2015</li>
+<li>
+<p>SINGA was presented in a <a class="externalLink"
href="http://www.comp.nus.edu.sg/~dbsystem/singa/workshop">workshop on deep
learning</a> held on 16 Sep, 2015</p></li>
-<li>SINGA will be presented at <a class="externalLink"
href="http://boss.dima.tu-berlin.de/">BOSS</a> of <a class="externalLink"
href="http://www.vldb.org/2015/">VLDB 2015</a> at Hawai’i, 4 Sep, 2015.
(slides: <a href="files/singa-vldb-boss.pptx">overview</a>, <a
href="files/basic-user-guide.pptx">basic</a>, <a
href="files/advanced-user-guide.pptx">advanced</a>)</li>
+<li>
+<p>SINGA will be presented at <a class="externalLink"
href="http://boss.dima.tu-berlin.de/">BOSS</a> of <a class="externalLink"
href="http://www.vldb.org/2015/">VLDB 2015</a> at Hawai’i, 4 Sep, 2015.
(slides: <a href="files/singa-vldb-boss.pptx">overview</a>, <a
href="files/basic-user-guide.pptx">basic</a>, <a
href="files/advanced-user-guide.pptx">advanced</a>)</p></li>
<li>
<p>We will present SINGA at <a class="externalLink"
href="http://adsc.illinois.edu/contact-us">ADSC/I2R Deep Learning Workshop</a>,
25 Aug, 2015.</p></li>
@@ -560,7 +568,7 @@
<p>B. C. Ooi, K.-L. Tan, S. Wang, W. Wang, Q. Cai, G. Chen, J. Gao, Z. Luo, A.
K. H. Tung, Y. Wang, Z. Xie, M. Zhang, and K. Zheng. <a class="externalLink"
href="http://www.comp.nus.edu.sg/~ooibc/singaopen-mm15.pdf">SINGA: A
distributed deep learning platform</a>. ACM Multimedia (Open Source Software
Competition) 2015 (<a class="externalLink"
href="http://www.comp.nus.edu.sg/~dbsystem/singa//assets/file/bib-oss.txt">BibTex</a>).</p></li>
<li>
-<p>W. Wang, G. Chen, T. T. A. Dinh, B. C. Ooi, K.-L.Tan, J. Gao, and S. Wang.
<a class="externalLink"
href="http://www.comp.nus.edu.sg/~ooibc/singa-mm15.pdf">SINGA:putting deep
learning in the hands of multimedia users</a>. ACM Multimedia 2015 (<a
class="externalLink"
href="http://www.comp.nus.edu.sg/~dbsystem/singa//assets/file/bib-singa.txt">BibTex</a>).</p></li>
+<p>W. Wang, G. Chen, T. T. A. Dinh, B. C. Ooi, K.-L.Tan, J. Gao, and S. Wang.
<a class="externalLink"
href="http://www.comp.nus.edu.sg/~ooibc/singa-mm15.pdf">SINGA: putting deep
learning in the hands of multimedia users</a>. ACM Multimedia 2015 (<a
class="externalLink"
href="http://www.comp.nus.edu.sg/~dbsystem/singa//assets/file/bib-singa.txt">BibTex</a>).</p></li>
</ul></div>
<div class="section">
<h3><a name="License"></a>License</h3>