Modified: websites/staging/singa/trunk/content/docs/layer.html
==============================================================================
--- websites/staging/singa/trunk/content/docs/layer.html (original)
+++ websites/staging/singa/trunk/content/docs/layer.html Tue Apr 12 06:24:50 
2016
@@ -1,13 +1,13 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia at 2016-03-29 
+ | Generated by Apache Maven Doxia at 2016-04-12 
  | Rendered using Apache Maven Fluido Skin 1.4
 -->
 <html xmlns="http://www.w3.org/1999/xhtml"; xml:lang="en" lang="en">
   <head>
     <meta charset="UTF-8" />
     <meta name="viewport" content="width=device-width, initial-scale=1.0" />
-    <meta name="Date-Revision-yyyymmdd" content="20160329" />
+    <meta name="Date-Revision-yyyymmdd" content="20160412" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Apache SINGA &#x2013; Layers</title>
     <link rel="stylesheet" href="../css/apache-maven-fluido-1.4.min.css" />
@@ -80,7 +80,7 @@
         <ul class="dropdown-menu">
         
                       <li class="dropdown-submenu">
-                                      <a href="../docs/index.html"  
title="v0.2.0">v0.2.0</a>
+                                      <a href="../docs/index.html"  
title="v0.3.0">v0.3.0</a>
               <ul class="dropdown-menu">
                                   <li>      <a href="../docs/index.html"  
title="English">English</a>
 </li>
@@ -93,6 +93,9 @@
                               </ul>
             </li>
                   
+                      <li>      <a href="../v0.2.0/index.html"  
title="v0.2.0">v0.2.0</a>
+</li>
+                  
                       <li>      <a href="../v0.1.0/index.html"  
title="v0.1.0">v0.1.0</a>
 </li>
                           </ul>
@@ -218,13 +221,20 @@
                                                                                
                                                       
       <li>
   
-                          <a href="../docs/index.html" title="v0.2.0">
+                          <a href="../docs/index.html" title="v0.3.0">
           <span class="icon-chevron-right"></span>
-        v0.2.0</a>
+        v0.3.0</a>
                   </li>
                 
       <li>
   
+                          <a href="../v0.2.0/index.html" title="v0.2.0">
+          <span class="none"></span>
+        v0.2.0</a>
+            </li>
+                
+      <li>
+  
                           <a href="../v0.1.0/index.html" title="v0.1.0">
           <span class="none"></span>
         v0.1.0</a>
@@ -374,7 +384,8 @@ layer{
 <div class="source"><pre class="prettyprint">store_conf {
   backend: # &quot;kvfile&quot; or &quot;textfile&quot;
   path: # path to the data store
-  batchsize :
+  batchsize : 32
+  prefetching: true #default value is false
   ...
 }
 </pre></div></div></div>
@@ -551,7 +562,16 @@ rgbimage_conf {
 </pre></div></div></div></div>
 <div class="section">
 <h4><a name="Neuron_Layers"></a>Neuron Layers</h4>
-<p>Neuron layers conduct feature transformations.</p>
+<p>Neuron layers conduct feature transformations.</p></div>
+<div class="section">
+<h4><a name="ActivationLayer"></a>ActivationLayer</h4>
+
+<div class="source">
+<div class="source"><pre class="prettyprint">type: kActivation
+activation_conf {
+  type: {RELU, SIGMOID, TANH, STANH}
+}
+</pre></div></div>
 <div class="section">
 <h5><a name="ConvolutionLayer"></a>ConvolutionLayer</h5>
 <p><a href="../api/classsinga_1_1ConvolutionLayer.html">ConvolutionLayer</a> 
conducts convolution transformation.</p>
@@ -632,7 +652,24 @@ lrn_conf {
   beta: float   // exponential number
 }
 </pre></div></div>
-<p><tt>local_size</tt> specifies the quantity of the adjoining channels which 
will be summed up.  For <tt>WITHIN_CHANNEL</tt>, it means the side length of 
the space region which will be summed up.</p></div></div>
+<p><tt>local_size</tt> specifies the quantity of the adjoining channels which 
will be summed up.  For <tt>WITHIN_CHANNEL</tt>, it means the side length of 
the space region which will be summed up.</p></div></div></div>
+<div class="section">
+<h3><a name="CuDNN_layers"></a>CuDNN layers</h3>
+<p>CuDNN v3 and v4 are supported in SINGA, which include the following 
layers,</p>
+
+<ul>
+  
+<li>CudnnActivationLayer (activation functions are SIGMOID, TANH, RELU)</li>
+  
+<li>CudnnConvLayer</li>
+  
+<li>CudnnLRNLayer</li>
+  
+<li>CudnnPoolLayer</li>
+  
+<li>CudnnSoftmaxLayer</li>
+</ul>
+<p>These layers have the same configuration as the corresponding CPU layers. 
For CuDNN v4, the batch normalization layer is added, which is named as 
<tt>CudnnBMLayer</tt>.</p>
 <div class="section">
 <h4><a name="Loss_Layers"></a>Loss Layers</h4>
 <p>Loss layers measures the objective training loss.</p>
@@ -696,10 +733,10 @@ split_conf {
 
 <div class="source">
 <div class="source"><pre class="prettyprint">LayerProto layer_conf_;
-Blob&lt;float&gt; data_, grad_;
+vector&lt;Blob&lt;float&gt;&gt; datavec_, gradvec_;
 vector&lt;AuxType&gt; aux_data_;
 </pre></div></div>
-<p>The base layer class keeps the user configuration in <tt>layer_conf_</tt>. 
Almost all layers has $b$ (mini-batch size) feature vectors, which are stored 
in the <tt>data_</tt> <a href="../api/classsinga_1_1Blob.html">Blob</a> (A Blob 
is a chunk of memory space, proposed in <a class="externalLink" 
href="http://caffe.berkeleyvision.org/";>Caffe</a>). There are layers without 
feature vectors; instead, they share the data from source layers. The 
<tt>grad_</tt> Blob is for storing the gradients of the objective loss w.r.t. 
the <tt>data_</tt> Blob. It is necessary in <a 
href="../api/classsinga_1_1BPWorker.html">BP algorithm</a>, hence we put it as 
a member of the base class. For <a href="../api/classsinga_1_1CDWorker.html">CD 
algorithm</a>, the <tt>grad_</tt> field is not used; instead, the layers for 
the RBM model may have a Blob for the positive phase feature and a Blob for the 
negative phase feature. For a recurrent layer in RNN, one row of the feature 
blob corresponds to the feature 
 of one internal layer. The <tt>aux_data_</tt> stores the auxiliary data, e.g., 
image label (set <tt>AuxType</tt> to int). If images have variant number of 
labels, the AuxType can be defined to <tt>vector&lt;int&gt;</tt>. Currently, we 
hard code <tt>AuxType</tt> to int. It will be added as a template argument of 
Layer class later.</p>
+<p>The base layer class keeps the user configuration in <tt>layer_conf_</tt>. 
<tt>datavec_</tt> stores the features associated with this layer. There are 
layers without feature vectors; instead, they share the data from source 
layers. The <tt>gradvec_</tt> is for storing the gradients of the objective 
loss w.r.t. the <tt>datavec_</tt>. The <tt>aux_data_</tt> stores the auxiliary 
data, e.g., image label (set <tt>AuxType</tt> to int). If images have variant 
number of labels, the AuxType can be defined to <tt>vector&lt;int&gt;</tt>. 
Currently, we hard code <tt>AuxType</tt> to int. It will be added as a template 
argument of Layer class later.</p>
 <p>If a layer has parameters, these parameters are declared using type <a 
href="param.html">Param</a>. Since some layers do not have parameters, we do 
not declare any <tt>Param</tt> in the base layer class.</p></div>
 <div class="section">
 <h4><a name="Functions"></a>Functions</h4>
@@ -709,16 +746,7 @@ vector&lt;AuxType&gt; aux_data_;
 virtual void ComputeFeature(int flag, const vector&lt;Layer*&gt;&amp; 
srclayers) = 0;
 virtual void ComputeGradient(int flag, const vector&lt;Layer*&gt;&amp; 
srclayers) = 0;
 </pre></div></div>
-<p>The <tt>Setup</tt> function reads user configuration, i.e. <tt>conf</tt>, 
and information from source layers, e.g., mini-batch size, to set the shape of 
the <tt>data_</tt> (and <tt>grad_</tt>) field as well as some other layer 
specific fields. <!-- -
-If `npartitions` is larger than 1, then
-users need to reduce the sizes of `data_`, `grad_` Blobs or Param objects. For
-example, if the `partition_dim=0` and there is no source layer, e.g., this
-layer is a (bottom) data layer, then its `data_` and `grad_` Blob should have
-`b/npartitions` feature vectors; If the source layer is also partitioned on
-dimension 0, then this layer should have the same number of feature vectors as
-the source layer. More complex partition cases are discussed in
-[Neural net partitioning](neural-net.html#neural-net-partitioning). Typically, 
the
-Setup function just set the shapes of `data_` Blobs and Param objects. --> 
Memory will not be allocated until computation over the data structure 
happens.</p>
+<p>The <tt>Setup</tt> function reads user configuration, i.e. <tt>conf</tt>, 
and information from source layers, e.g., mini-batch size, to set the shape of 
the <tt>data_</tt> (and <tt>grad_</tt>) field as well as some other layer 
specific fields. Memory will not be allocated until computation over the data 
structure happens.</p>
 <p>The <tt>ComputeFeature</tt> function evaluates the feature blob by 
transforming (e.g. convolution and pooling) features from the source layers. 
<tt>ComputeGradient</tt> computes the gradients of parameters associated with 
this layer. These two functions are invoked by the <a 
href="train-one-batch.html">TrainOneBatch</a> function during training. Hence, 
they should be consistent with the <tt>TrainOneBatch</tt> function. 
Particularly, for feed-forward and RNN models, they are trained using <a 
href="train-one-batch.html#back-propagation">BP algorithm</a>, which requires 
each layer&#x2019;s <tt>ComputeFeature</tt> function to compute <tt>data_</tt> 
based on source layers, and requires each layer&#x2019;s 
<tt>ComputeGradient</tt> to compute gradients of parameters and source 
layers&#x2019; <tt>grad_</tt>. For energy models, e.g., RBM, they are trained 
by <a href="train-one-batch.html#contrastive-divergence">CD algorithm</a>, 
which requires each layer&#x2019;s <tt>ComputeFeature</tt> f
 unction to compute the feature vectors for the positive phase or negative 
phase depending on the <tt>phase</tt> argument, and requires the 
<tt>ComputeGradient</tt> function to only compute parameter gradients. For some 
layers, e.g., loss layer or output layer, they can put the loss or prediction 
result into the <tt>metric</tt> argument, which will be averaged and displayed 
periodically.</p></div></div>
 <div class="section">
 <h3><a name="Implementing_a_new_Layer_subclass"></a>Implementing a new Layer 
subclass</h3>

Modified: websites/staging/singa/trunk/content/docs/lmdb.html
==============================================================================
--- websites/staging/singa/trunk/content/docs/lmdb.html (original)
+++ websites/staging/singa/trunk/content/docs/lmdb.html Tue Apr 12 06:24:50 2016
@@ -1,13 +1,13 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia at 2016-03-29 
+ | Generated by Apache Maven Doxia at 2016-04-12 
  | Rendered using Apache Maven Fluido Skin 1.4
 -->
 <html xmlns="http://www.w3.org/1999/xhtml"; xml:lang="en" lang="en">
   <head>
     <meta charset="UTF-8" />
     <meta name="viewport" content="width=device-width, initial-scale=1.0" />
-    <meta name="Date-Revision-yyyymmdd" content="20160329" />
+    <meta name="Date-Revision-yyyymmdd" content="20160412" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Apache SINGA &#x2013; </title>
     <link rel="stylesheet" href="../css/apache-maven-fluido-1.4.min.css" />
@@ -80,7 +80,7 @@
         <ul class="dropdown-menu">
         
                       <li class="dropdown-submenu">
-                                      <a href="../docs/index.html"  
title="v0.2.0">v0.2.0</a>
+                                      <a href="../docs/index.html"  
title="v0.3.0">v0.3.0</a>
               <ul class="dropdown-menu">
                                   <li>      <a href="../docs/index.html"  
title="English">English</a>
 </li>
@@ -93,6 +93,9 @@
                               </ul>
             </li>
                   
+                      <li>      <a href="../v0.2.0/index.html"  
title="v0.2.0">v0.2.0</a>
+</li>
+                  
                       <li>      <a href="../v0.1.0/index.html"  
title="v0.1.0">v0.1.0</a>
 </li>
                           </ul>
@@ -218,13 +221,20 @@
                                                                                
                                                       
       <li>
   
-                          <a href="../docs/index.html" title="v0.2.0">
+                          <a href="../docs/index.html" title="v0.3.0">
           <span class="icon-chevron-right"></span>
-        v0.2.0</a>
+        v0.3.0</a>
                   </li>
                 
       <li>
   
+                          <a href="../v0.2.0/index.html" title="v0.2.0">
+          <span class="none"></span>
+        v0.2.0</a>
+            </li>
+                
+      <li>
+  
                           <a href="../v0.1.0/index.html" title="v0.1.0">
           <span class="none"></span>
         v0.1.0</a>

Modified: websites/staging/singa/trunk/content/docs/mesos.html
==============================================================================
--- websites/staging/singa/trunk/content/docs/mesos.html (original)
+++ websites/staging/singa/trunk/content/docs/mesos.html Tue Apr 12 06:24:50 
2016
@@ -1,13 +1,13 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia at 2016-03-29 
+ | Generated by Apache Maven Doxia at 2016-04-12 
  | Rendered using Apache Maven Fluido Skin 1.4
 -->
 <html xmlns="http://www.w3.org/1999/xhtml"; xml:lang="en" lang="en">
   <head>
     <meta charset="UTF-8" />
     <meta name="viewport" content="width=device-width, initial-scale=1.0" />
-    <meta name="Date-Revision-yyyymmdd" content="20160329" />
+    <meta name="Date-Revision-yyyymmdd" content="20160412" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Apache SINGA &#x2013; Distributed Training on Mesos</title>
     <link rel="stylesheet" href="../css/apache-maven-fluido-1.4.min.css" />
@@ -80,7 +80,7 @@
         <ul class="dropdown-menu">
         
                       <li class="dropdown-submenu">
-                                      <a href="../docs/index.html"  
title="v0.2.0">v0.2.0</a>
+                                      <a href="../docs/index.html"  
title="v0.3.0">v0.3.0</a>
               <ul class="dropdown-menu">
                                   <li>      <a href="../docs/index.html"  
title="English">English</a>
 </li>
@@ -93,6 +93,9 @@
                               </ul>
             </li>
                   
+                      <li>      <a href="../v0.2.0/index.html"  
title="v0.2.0">v0.2.0</a>
+</li>
+                  
                       <li>      <a href="../v0.1.0/index.html"  
title="v0.1.0">v0.1.0</a>
 </li>
                           </ul>
@@ -218,13 +221,20 @@
                                                                                
                                                       
       <li>
   
-                          <a href="../docs/index.html" title="v0.2.0">
+                          <a href="../docs/index.html" title="v0.3.0">
           <span class="icon-chevron-right"></span>
-        v0.2.0</a>
+        v0.3.0</a>
                   </li>
                 
       <li>
   
+                          <a href="../v0.2.0/index.html" title="v0.2.0">
+          <span class="none"></span>
+        v0.2.0</a>
+            </li>
+                
+      <li>
+  
                           <a href="../v0.1.0/index.html" title="v0.1.0">
           <span class="none"></span>
         v0.1.0</a>

Modified: websites/staging/singa/trunk/content/docs/mlp.html
==============================================================================
--- websites/staging/singa/trunk/content/docs/mlp.html (original)
+++ websites/staging/singa/trunk/content/docs/mlp.html Tue Apr 12 06:24:50 2016
@@ -1,13 +1,13 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia at 2016-03-29 
+ | Generated by Apache Maven Doxia at 2016-04-12 
  | Rendered using Apache Maven Fluido Skin 1.4
 -->
 <html xmlns="http://www.w3.org/1999/xhtml"; xml:lang="en" lang="en">
   <head>
     <meta charset="UTF-8" />
     <meta name="viewport" content="width=device-width, initial-scale=1.0" />
-    <meta name="Date-Revision-yyyymmdd" content="20160329" />
+    <meta name="Date-Revision-yyyymmdd" content="20160412" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Apache SINGA &#x2013; MLP Example</title>
     <link rel="stylesheet" href="../css/apache-maven-fluido-1.4.min.css" />
@@ -80,7 +80,7 @@
         <ul class="dropdown-menu">
         
                       <li class="dropdown-submenu">
-                                      <a href="../docs/index.html"  
title="v0.2.0">v0.2.0</a>
+                                      <a href="../docs/index.html"  
title="v0.3.0">v0.3.0</a>
               <ul class="dropdown-menu">
                                   <li>      <a href="../docs/index.html"  
title="English">English</a>
 </li>
@@ -93,6 +93,9 @@
                               </ul>
             </li>
                   
+                      <li>      <a href="../v0.2.0/index.html"  
title="v0.2.0">v0.2.0</a>
+</li>
+                  
                       <li>      <a href="../v0.1.0/index.html"  
title="v0.1.0">v0.1.0</a>
 </li>
                           </ul>
@@ -218,13 +221,20 @@
                                                                                
                                                       
       <li>
   
-                          <a href="../docs/index.html" title="v0.2.0">
+                          <a href="../docs/index.html" title="v0.3.0">
           <span class="icon-chevron-right"></span>
-        v0.2.0</a>
+        v0.3.0</a>
                   </li>
                 
       <li>
   
+                          <a href="../v0.2.0/index.html" title="v0.2.0">
+          <span class="none"></span>
+        v0.2.0</a>
+            </li>
+                
+      <li>
+  
                           <a href="../v0.1.0/index.html" title="v0.1.0">
           <span class="none"></span>
         v0.1.0</a>

Modified: websites/staging/singa/trunk/content/docs/model-config.html
==============================================================================
--- websites/staging/singa/trunk/content/docs/model-config.html (original)
+++ websites/staging/singa/trunk/content/docs/model-config.html Tue Apr 12 
06:24:50 2016
@@ -1,13 +1,13 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia at 2016-03-29 
+ | Generated by Apache Maven Doxia at 2016-04-12 
  | Rendered using Apache Maven Fluido Skin 1.4
 -->
 <html xmlns="http://www.w3.org/1999/xhtml"; xml:lang="en" lang="en">
   <head>
     <meta charset="UTF-8" />
     <meta name="viewport" content="width=device-width, initial-scale=1.0" />
-    <meta name="Date-Revision-yyyymmdd" content="20160329" />
+    <meta name="Date-Revision-yyyymmdd" content="20160412" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Apache SINGA &#x2013; Model Configuration</title>
     <link rel="stylesheet" href="../css/apache-maven-fluido-1.4.min.css" />
@@ -80,7 +80,7 @@
         <ul class="dropdown-menu">
         
                       <li class="dropdown-submenu">
-                                      <a href="../docs/index.html"  
title="v0.2.0">v0.2.0</a>
+                                      <a href="../docs/index.html"  
title="v0.3.0">v0.3.0</a>
               <ul class="dropdown-menu">
                                   <li>      <a href="../docs/index.html"  
title="English">English</a>
 </li>
@@ -93,6 +93,9 @@
                               </ul>
             </li>
                   
+                      <li>      <a href="../v0.2.0/index.html"  
title="v0.2.0">v0.2.0</a>
+</li>
+                  
                       <li>      <a href="../v0.1.0/index.html"  
title="v0.1.0">v0.1.0</a>
 </li>
                           </ul>
@@ -218,13 +221,20 @@
                                                                                
                                                       
       <li>
   
-                          <a href="../docs/index.html" title="v0.2.0">
+                          <a href="../docs/index.html" title="v0.3.0">
           <span class="icon-chevron-right"></span>
-        v0.2.0</a>
+        v0.3.0</a>
                   </li>
                 
       <li>
   
+                          <a href="../v0.2.0/index.html" title="v0.2.0">
+          <span class="none"></span>
+        v0.2.0</a>
+            </li>
+                
+      <li>
+  
                           <a href="../v0.1.0/index.html" title="v0.1.0">
           <span class="none"></span>
         v0.1.0</a>

Modified: websites/staging/singa/trunk/content/docs/neural-net.html
==============================================================================
--- websites/staging/singa/trunk/content/docs/neural-net.html (original)
+++ websites/staging/singa/trunk/content/docs/neural-net.html Tue Apr 12 
06:24:50 2016
@@ -1,13 +1,13 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia at 2016-03-29 
+ | Generated by Apache Maven Doxia at 2016-04-12 
  | Rendered using Apache Maven Fluido Skin 1.4
 -->
 <html xmlns="http://www.w3.org/1999/xhtml"; xml:lang="en" lang="en">
   <head>
     <meta charset="UTF-8" />
     <meta name="viewport" content="width=device-width, initial-scale=1.0" />
-    <meta name="Date-Revision-yyyymmdd" content="20160329" />
+    <meta name="Date-Revision-yyyymmdd" content="20160412" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Apache SINGA &#x2013; Neural Net</title>
     <link rel="stylesheet" href="../css/apache-maven-fluido-1.4.min.css" />
@@ -80,7 +80,7 @@
         <ul class="dropdown-menu">
         
                       <li class="dropdown-submenu">
-                                      <a href="../docs/index.html"  
title="v0.2.0">v0.2.0</a>
+                                      <a href="../docs/index.html"  
title="v0.3.0">v0.3.0</a>
               <ul class="dropdown-menu">
                                   <li>      <a href="../docs/index.html"  
title="English">English</a>
 </li>
@@ -93,6 +93,9 @@
                               </ul>
             </li>
                   
+                      <li>      <a href="../v0.2.0/index.html"  
title="v0.2.0">v0.2.0</a>
+</li>
+                  
                       <li>      <a href="../v0.1.0/index.html"  
title="v0.1.0">v0.1.0</a>
 </li>
                           </ul>
@@ -218,13 +221,20 @@
                                                                                
                                                       
       <li>
   
-                          <a href="../docs/index.html" title="v0.2.0">
+                          <a href="../docs/index.html" title="v0.3.0">
           <span class="icon-chevron-right"></span>
-        v0.2.0</a>
+        v0.3.0</a>
                   </li>
                 
       <li>
   
+                          <a href="../v0.2.0/index.html" title="v0.2.0">
+          <span class="none"></span>
+        v0.2.0</a>
+            </li>
+                
+      <li>
+  
                           <a href="../v0.1.0/index.html" title="v0.1.0">
           <span class="none"></span>
         v0.1.0</a>

Modified: websites/staging/singa/trunk/content/docs/neuralnet-partition.html
==============================================================================
--- websites/staging/singa/trunk/content/docs/neuralnet-partition.html 
(original)
+++ websites/staging/singa/trunk/content/docs/neuralnet-partition.html Tue Apr 
12 06:24:50 2016
@@ -1,13 +1,13 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia at 2016-03-29 
+ | Generated by Apache Maven Doxia at 2016-04-12 
  | Rendered using Apache Maven Fluido Skin 1.4
 -->
 <html xmlns="http://www.w3.org/1999/xhtml"; xml:lang="en" lang="en">
   <head>
     <meta charset="UTF-8" />
     <meta name="viewport" content="width=device-width, initial-scale=1.0" />
-    <meta name="Date-Revision-yyyymmdd" content="20160329" />
+    <meta name="Date-Revision-yyyymmdd" content="20160412" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Apache SINGA &#x2013; Neural Net Partition</title>
     <link rel="stylesheet" href="../css/apache-maven-fluido-1.4.min.css" />
@@ -80,7 +80,7 @@
         <ul class="dropdown-menu">
         
                       <li class="dropdown-submenu">
-                                      <a href="../docs/index.html"  
title="v0.2.0">v0.2.0</a>
+                                      <a href="../docs/index.html"  
title="v0.3.0">v0.3.0</a>
               <ul class="dropdown-menu">
                                   <li>      <a href="../docs/index.html"  
title="English">English</a>
 </li>
@@ -93,6 +93,9 @@
                               </ul>
             </li>
                   
+                      <li>      <a href="../v0.2.0/index.html"  
title="v0.2.0">v0.2.0</a>
+</li>
+                  
                       <li>      <a href="../v0.1.0/index.html"  
title="v0.1.0">v0.1.0</a>
 </li>
                           </ul>
@@ -218,13 +221,20 @@
                                                                                
                                                       
       <li>
   
-                          <a href="../docs/index.html" title="v0.2.0">
+                          <a href="../docs/index.html" title="v0.3.0">
           <span class="icon-chevron-right"></span>
-        v0.2.0</a>
+        v0.3.0</a>
                   </li>
                 
       <li>
   
+                          <a href="../v0.2.0/index.html" title="v0.2.0">
+          <span class="none"></span>
+        v0.2.0</a>
+            </li>
+                
+      <li>
+  
                           <a href="../v0.1.0/index.html" title="v0.1.0">
           <span class="none"></span>
         v0.1.0</a>

Modified: websites/staging/singa/trunk/content/docs/overview.html
==============================================================================
--- websites/staging/singa/trunk/content/docs/overview.html (original)
+++ websites/staging/singa/trunk/content/docs/overview.html Tue Apr 12 06:24:50 
2016
@@ -1,13 +1,13 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia at 2016-03-29 
+ | Generated by Apache Maven Doxia at 2016-04-12 
  | Rendered using Apache Maven Fluido Skin 1.4
 -->
 <html xmlns="http://www.w3.org/1999/xhtml"; xml:lang="en" lang="en">
   <head>
     <meta charset="UTF-8" />
     <meta name="viewport" content="width=device-width, initial-scale=1.0" />
-    <meta name="Date-Revision-yyyymmdd" content="20160329" />
+    <meta name="Date-Revision-yyyymmdd" content="20160412" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Apache SINGA &#x2013; Introduction</title>
     <link rel="stylesheet" href="../css/apache-maven-fluido-1.4.min.css" />
@@ -80,7 +80,7 @@
         <ul class="dropdown-menu">
         
                       <li class="dropdown-submenu">
-                                      <a href="../docs/index.html"  
title="v0.2.0">v0.2.0</a>
+                                      <a href="../docs/index.html"  
title="v0.3.0">v0.3.0</a>
               <ul class="dropdown-menu">
                                   <li>      <a href="../docs/index.html"  
title="English">English</a>
 </li>
@@ -93,6 +93,9 @@
                               </ul>
             </li>
                   
+                      <li>      <a href="../v0.2.0/index.html"  
title="v0.2.0">v0.2.0</a>
+</li>
+                  
                       <li>      <a href="../v0.1.0/index.html"  
title="v0.1.0">v0.1.0</a>
 </li>
                           </ul>
@@ -216,13 +219,20 @@
                                                                                
                                                       
       <li>
   
-                          <a href="../docs/index.html" title="v0.2.0">
+                          <a href="../docs/index.html" title="v0.3.0">
           <span class="icon-chevron-right"></span>
-        v0.2.0</a>
+        v0.3.0</a>
                   </li>
                 
       <li>
   
+                          <a href="../v0.2.0/index.html" title="v0.2.0">
+          <span class="none"></span>
+        v0.2.0</a>
+            </li>
+                
+      <li>
+  
                           <a href="../v0.1.0/index.html" title="v0.1.0">
           <span class="none"></span>
         v0.1.0</a>

Modified: websites/staging/singa/trunk/content/docs/param.html
==============================================================================
--- websites/staging/singa/trunk/content/docs/param.html (original)
+++ websites/staging/singa/trunk/content/docs/param.html Tue Apr 12 06:24:50 
2016
@@ -1,13 +1,13 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia at 2016-03-29 
+ | Generated by Apache Maven Doxia at 2016-04-12 
  | Rendered using Apache Maven Fluido Skin 1.4
 -->
 <html xmlns="http://www.w3.org/1999/xhtml"; xml:lang="en" lang="en">
   <head>
     <meta charset="UTF-8" />
     <meta name="viewport" content="width=device-width, initial-scale=1.0" />
-    <meta name="Date-Revision-yyyymmdd" content="20160329" />
+    <meta name="Date-Revision-yyyymmdd" content="20160412" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Apache SINGA &#x2013; Parameters</title>
     <link rel="stylesheet" href="../css/apache-maven-fluido-1.4.min.css" />
@@ -80,7 +80,7 @@
         <ul class="dropdown-menu">
         
                       <li class="dropdown-submenu">
-                                      <a href="../docs/index.html"  
title="v0.2.0">v0.2.0</a>
+                                      <a href="../docs/index.html"  
title="v0.3.0">v0.3.0</a>
               <ul class="dropdown-menu">
                                   <li>      <a href="../docs/index.html"  
title="English">English</a>
 </li>
@@ -93,6 +93,9 @@
                               </ul>
             </li>
                   
+                      <li>      <a href="../v0.2.0/index.html"  
title="v0.2.0">v0.2.0</a>
+</li>
+                  
                       <li>      <a href="../v0.1.0/index.html"  
title="v0.1.0">v0.1.0</a>
 </li>
                           </ul>
@@ -218,13 +221,20 @@
                                                                                
                                                       
       <li>
   
-                          <a href="../docs/index.html" title="v0.2.0">
+                          <a href="../docs/index.html" title="v0.3.0">
           <span class="icon-chevron-right"></span>
-        v0.2.0</a>
+        v0.3.0</a>
                   </li>
                 
       <li>
   
+                          <a href="../v0.2.0/index.html" title="v0.2.0">
+          <span class="none"></span>
+        v0.2.0</a>
+            </li>
+                
+      <li>
+  
                           <a href="../v0.1.0/index.html" title="v0.1.0">
           <span class="none"></span>
         v0.1.0</a>

Modified: websites/staging/singa/trunk/content/docs/programming-guide.html
==============================================================================
--- websites/staging/singa/trunk/content/docs/programming-guide.html (original)
+++ websites/staging/singa/trunk/content/docs/programming-guide.html Tue Apr 12 
06:24:50 2016
@@ -1,13 +1,13 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia at 2016-03-29 
+ | Generated by Apache Maven Doxia at 2016-04-12 
  | Rendered using Apache Maven Fluido Skin 1.4
 -->
 <html xmlns="http://www.w3.org/1999/xhtml"; xml:lang="en" lang="en">
   <head>
     <meta charset="UTF-8" />
     <meta name="viewport" content="width=device-width, initial-scale=1.0" />
-    <meta name="Date-Revision-yyyymmdd" content="20160329" />
+    <meta name="Date-Revision-yyyymmdd" content="20160412" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Apache SINGA &#x2013; Programming Guide</title>
     <link rel="stylesheet" href="../css/apache-maven-fluido-1.4.min.css" />
@@ -80,7 +80,7 @@
         <ul class="dropdown-menu">
         
                       <li class="dropdown-submenu">
-                                      <a href="../docs/index.html"  
title="v0.2.0">v0.2.0</a>
+                                      <a href="../docs/index.html"  
title="v0.3.0">v0.3.0</a>
               <ul class="dropdown-menu">
                                   <li>      <a href="../docs/index.html"  
title="English">English</a>
 </li>
@@ -93,6 +93,9 @@
                               </ul>
             </li>
                   
+                      <li>      <a href="../v0.2.0/index.html"  
title="v0.2.0">v0.2.0</a>
+</li>
+                  
                       <li>      <a href="../v0.1.0/index.html"  
title="v0.1.0">v0.1.0</a>
 </li>
                           </ul>
@@ -218,13 +221,20 @@
                                                                                
                                                       
       <li>
   
-                          <a href="../docs/index.html" title="v0.2.0">
+                          <a href="../docs/index.html" title="v0.3.0">
           <span class="icon-chevron-right"></span>
-        v0.2.0</a>
+        v0.3.0</a>
                   </li>
                 
       <li>
   
+                          <a href="../v0.2.0/index.html" title="v0.2.0">
+          <span class="none"></span>
+        v0.2.0</a>
+            </li>
+                
+      <li>
+  
                           <a href="../v0.1.0/index.html" title="v0.1.0">
           <span class="none"></span>
         v0.1.0</a>

Modified: websites/staging/singa/trunk/content/docs/python.html
==============================================================================
--- websites/staging/singa/trunk/content/docs/python.html (original)
+++ websites/staging/singa/trunk/content/docs/python.html Tue Apr 12 06:24:50 
2016
@@ -1,13 +1,13 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia at 2016-03-29 
+ | Generated by Apache Maven Doxia at 2016-04-12 
  | Rendered using Apache Maven Fluido Skin 1.4
 -->
 <html xmlns="http://www.w3.org/1999/xhtml"; xml:lang="en" lang="en">
   <head>
     <meta charset="UTF-8" />
     <meta name="viewport" content="width=device-width, initial-scale=1.0" />
-    <meta name="Date-Revision-yyyymmdd" content="20160329" />
+    <meta name="Date-Revision-yyyymmdd" content="20160412" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Apache SINGA &#x2013; Python Binding</title>
     <link rel="stylesheet" href="../css/apache-maven-fluido-1.4.min.css" />
@@ -80,7 +80,7 @@
         <ul class="dropdown-menu">
         
                       <li class="dropdown-submenu">
-                                      <a href="../docs/index.html"  
title="v0.2.0">v0.2.0</a>
+                                      <a href="../docs/index.html"  
title="v0.3.0">v0.3.0</a>
               <ul class="dropdown-menu">
                                   <li>      <a href="../docs/index.html"  
title="English">English</a>
 </li>
@@ -93,6 +93,9 @@
                               </ul>
             </li>
                   
+                      <li>      <a href="../v0.2.0/index.html"  
title="v0.2.0">v0.2.0</a>
+</li>
+                  
                       <li>      <a href="../v0.1.0/index.html"  
title="v0.1.0">v0.1.0</a>
 </li>
                           </ul>
@@ -218,13 +221,20 @@
                                                                                
                                                       
       <li>
   
-                          <a href="../docs/index.html" title="v0.2.0">
+                          <a href="../docs/index.html" title="v0.3.0">
           <span class="icon-chevron-right"></span>
-        v0.2.0</a>
+        v0.3.0</a>
                   </li>
                 
       <li>
   
+                          <a href="../v0.2.0/index.html" title="v0.2.0">
+          <span class="none"></span>
+        v0.2.0</a>
+            </li>
+                
+      <li>
+  
                           <a href="../v0.1.0/index.html" title="v0.1.0">
           <span class="none"></span>
         v0.1.0</a>

Modified: websites/staging/singa/trunk/content/docs/quick-start.html
==============================================================================
--- websites/staging/singa/trunk/content/docs/quick-start.html (original)
+++ websites/staging/singa/trunk/content/docs/quick-start.html Tue Apr 12 
06:24:50 2016
@@ -1,13 +1,13 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia at 2016-03-29 
+ | Generated by Apache Maven Doxia at 2016-04-12 
  | Rendered using Apache Maven Fluido Skin 1.4
 -->
 <html xmlns="http://www.w3.org/1999/xhtml"; xml:lang="en" lang="en">
   <head>
     <meta charset="UTF-8" />
     <meta name="viewport" content="width=device-width, initial-scale=1.0" />
-    <meta name="Date-Revision-yyyymmdd" content="20160329" />
+    <meta name="Date-Revision-yyyymmdd" content="20160412" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Apache SINGA &#x2013; Quick Start</title>
     <link rel="stylesheet" href="../css/apache-maven-fluido-1.4.min.css" />
@@ -80,7 +80,7 @@
         <ul class="dropdown-menu">
         
                       <li class="dropdown-submenu">
-                                      <a href="../docs/index.html"  
title="v0.2.0">v0.2.0</a>
+                                      <a href="../docs/index.html"  
title="v0.3.0">v0.3.0</a>
               <ul class="dropdown-menu">
                                   <li>      <a href="../docs/index.html"  
title="English">English</a>
 </li>
@@ -93,6 +93,9 @@
                               </ul>
             </li>
                   
+                      <li>      <a href="../v0.2.0/index.html"  
title="v0.2.0">v0.2.0</a>
+</li>
+                  
                       <li>      <a href="../v0.1.0/index.html"  
title="v0.1.0">v0.1.0</a>
 </li>
                           </ul>
@@ -216,13 +219,20 @@
                                                                                
                                                       
       <li>
   
-                          <a href="../docs/index.html" title="v0.2.0">
+                          <a href="../docs/index.html" title="v0.3.0">
           <span class="icon-chevron-right"></span>
-        v0.2.0</a>
+        v0.3.0</a>
                   </li>
                 
       <li>
   
+                          <a href="../v0.2.0/index.html" title="v0.2.0">
+          <span class="none"></span>
+        v0.2.0</a>
+            </li>
+                
+      <li>
+  
                           <a href="../v0.1.0/index.html" title="v0.1.0">
           <span class="none"></span>
         v0.1.0</a>
@@ -313,25 +323,6 @@
 <h2><a name="SINGA_setup"></a>SINGA setup</h2>
 <p>Please refer to the <a href="installation.html">installation</a> page for 
guidance on installing SINGA.</p>
 <div class="section">
-<h3><a name="Starting_Zookeeper"></a>Starting Zookeeper</h3>
-<p>SINGA uses <a class="externalLink" 
href="https://zookeeper.apache.org/";>zookeeper</a> to coordinate the training. 
Please make sure the zookeeper service is started before running SINGA.</p>
-<p>If you installed the zookeeper using our thirdparty script, you can simply 
start it by:</p>
-
-<div class="source">
-<div class="source"><pre class="prettyprint">#goto top level folder
-cd  SINGA_ROOT
-./bin/zk-service.sh start
-</pre></div></div>
-<p>(<tt>./bin/zk-service.sh stop</tt> stops the zookeeper).</p>
-<p>Otherwise, if you launched a zookeeper by yourself but not used the default 
port, please edit the <tt>conf/singa.conf</tt>:</p>
-
-<div class="source">
-<div class="source"><pre class="prettyprint">zookeeper_host: 
&quot;localhost:YOUR_PORT&quot;
-</pre></div></div></div></div>
-<div class="section">
-<h2><a name="Running_in_standalone_mode"></a>Running in standalone mode</h2>
-<p>Running SINGA in standalone mode is on the contrary of running it using 
cluster managers like <a class="externalLink" 
href="http://mesos.apache.org/";>Mesos</a> or <a class="externalLink" 
href="http://hadoop.apache.org/docs/current/hadoop-yarn/hadoop-yarn-site/YARN.html";>YARN</a>.</p>
-<div class="section">
 <h3><a name="Training_on_a_single_node"></a>Training on a single node</h3>
 <p>For single node training, one process will be launched to run SINGA at 
local host. We train the <a class="externalLink" 
href="http://papers.nips.cc/paper/4824-imagenet-classification-with-deep-convolutional-neural-networks";>CNN
 model</a> over the <a class="externalLink" 
href="http://www.cs.toronto.edu/~kriz/cifar.html";>CIFAR-10</a> dataset as an 
example. The hyper-parameters are set following <a class="externalLink" 
href="https://code.google.com/p/cuda-convnet/";>cuda-convnet</a>. More details 
is available at <a href="cnn.html">CNN example</a>.</p>
 <div class="section">
@@ -344,8 +335,8 @@ cp Makefile.example Makefile
 make download
 make create
 </pre></div></div>
-<p>A training dataset and a test dataset are created under 
<i>cifar10-train-shard</i> and <i>cifar10-test-shard</i> folder respectively. 
An <i>image_mean.bin</i> file is also generated, which contains the feature 
mean of all images.</p>
-<p>Since all code used for training this CNN model is provided by SINGA as 
built-in implementation, there is no need to write any code. Instead, users 
just execute the running script (<i>../../bin/singa-run.sh</i>) by providing 
the job configuration file (<i>job.conf</i>). To code in SINGA, please refer to 
the <a href="programming-guide.html">programming guide</a>.</p></div>
+<p>A training dataset and a test dataset are created respectively. An 
<i>image_mean.bin</i> file is also generated, which contains the feature mean 
of all images.</p>
+<p>Since all code used for training this CNN model is provided by SINGA as 
built-in implementation, there is no need to write any code. Instead, users 
just execute the running script by providing the job configuration file 
(<i>job.conf</i>). To code in SINGA, please refer to the <a 
href="programming-guide.html">programming guide</a>.</p></div>
 <div class="section">
 <h4><a name="Training_without_parallelism"></a>Training without 
parallelism</h4>
 <p>By default, the cluster topology has a single worker and a single server. 
In other words, neither the training data nor the neural net is partitioned.</p>
@@ -354,23 +345,8 @@ make create
 <div class="source">
 <div class="source"><pre class="prettyprint"># goto top level folder
 cd ../../
-./bin/singa-run.sh -conf examples/cifar10/job.conf
-</pre></div></div>
-<p>You can list the current running jobs by,</p>
-
-<div class="source">
-<div class="source"><pre class="prettyprint">./bin/singa-console.sh list
-
-JOB ID    |NUM PROCS
-----------|-----------
-24        |1
-</pre></div></div>
-<p>Jobs can be killed by,</p>
-
-<div class="source">
-<div class="source"><pre class="prettyprint">./bin/singa-console.sh kill JOB_ID
-</pre></div></div>
-<p>Logs and job information are available in <i>/tmp/singa-log</i> folder, 
which can be changed to other folders by setting <tt>log-dir</tt> in 
<i>conf/singa.conf</i>.</p></div>
+./singa -conf examples/cifar10/job.conf
+</pre></div></div></div>
 <div class="section">
 <h4><a name="Asynchronous_parallel_training"></a>Asynchronous parallel 
training</h4>
 
@@ -391,7 +367,7 @@ cluster {
 neuralnet {
   layer {
     ...
-    sharddata_conf {
+    store_conf {
       random_skip: 5000
     }
   }
@@ -401,7 +377,7 @@ neuralnet {
 <p>The running command is:</p>
 
 <div class="source">
-<div class="source"><pre class="prettyprint">./bin/singa-run.sh -conf 
examples/cifar10/job.conf
+<div class="source"><pre class="prettyprint">./singa -conf 
examples/cifar10/job.conf
 </pre></div></div></div>
 <div class="section">
 <h4><a name="Synchronous_parallel_training"></a>Synchronous parallel 
training</h4>
@@ -418,10 +394,26 @@ cluster {
 <p>In SINGA, <a href="architecture.html">asynchronous training</a> is enabled 
by launching multiple workers within one worker group. For instance, we can 
change the original <i>job.conf</i> to have two workers in one worker group as 
shown above. The workers will run synchronously as they are from the same 
worker group. This framework is the in-memory <a 
href="frameworks.html">sandblaster</a>. The model is partitioned among the two 
workers. In specific, each layer is sliced over the two workers. The sliced 
layer is the same as the original layer except that it only has <tt>B/g</tt> 
feature instances, where <tt>B</tt> is the number of instances in a mini-batch, 
<tt>g</tt> is the number of workers in a group. It is also possible to 
partition the layer (or neural net) using <a href="neural-net.html">other 
schemes</a>. All other settings are the same as running without partitioning</p>
 
 <div class="source">
-<div class="source"><pre class="prettyprint">./bin/singa-run.sh -conf 
examples/cifar10/job.conf
+<div class="source"><pre class="prettyprint">./singa -conf 
examples/cifar10/job.conf
 </pre></div></div></div></div>
 <div class="section">
 <h3><a name="Training_in_a_cluster"></a>Training in a cluster</h3>
+<div class="section">
+<h4><a name="Starting_Zookeeper"></a>Starting Zookeeper</h4>
+<p>SINGA uses <a class="externalLink" 
href="https://zookeeper.apache.org/";>zookeeper</a> to coordinate the training, 
and uses ZeroMQ for transferring messages. After installing zookeeper and 
ZeroMQ, you need to configure SINGA with <tt>--enable-dist</tt> before 
compiling. Please make sure the zookeeper service is started before running 
SINGA.</p>
+<p>If you installed the zookeeper using our thirdparty script, you can simply 
start it by:</p>
+
+<div class="source">
+<div class="source"><pre class="prettyprint">#goto top level folder
+cd  SINGA_ROOT
+./bin/zk-service.sh start
+</pre></div></div>
+<p>(<tt>./bin/zk-service.sh stop</tt> stops the zookeeper).</p>
+<p>Otherwise, if you launched a zookeeper by yourself but not used the default 
port, please edit the <tt>conf/singa.conf</tt>:</p>
+
+<div class="source">
+<div class="source"><pre class="prettyprint">zookeeper_host: 
&quot;localhost:YOUR_PORT&quot;
+</pre></div></div>
 <p>We can extend the above two training frameworks to a cluster by updating 
the cluster configuration with:</p>
 
 <div class="source">
@@ -430,8 +422,8 @@ cluster {
 <p>Every process would then create only one worker thread. Consequently, the 
workers would be created in different processes (i.e., nodes). The 
<i>hostfile</i> must be provided under <i>SINGA_ROOT/conf/</i> specifying the 
nodes in the cluster, e.g.,</p>
 
 <div class="source">
-<div class="source"><pre class="prettyprint">logbase-a01
-logbase-a02
+<div class="source"><pre class="prettyprint">192.168.0.1
+192.168.0.2
 </pre></div></div>
 <p>And the zookeeper location must be configured correctly, e.g.,</p>
 
@@ -439,14 +431,29 @@ logbase-a02
 <div class="source"><pre class="prettyprint">#conf/singa.conf
 zookeeper_host: &quot;logbase-a01&quot;
 </pre></div></div>
-<p>The running command is the same as for single node training:</p>
+<p>The running command is :</p>
 
 <div class="source">
 <div class="source"><pre class="prettyprint">./bin/singa-run.sh -conf 
examples/cifar10/job.conf
-</pre></div></div></div></div>
+</pre></div></div>
+<p>You can list the current running jobs by,</p>
+
+<div class="source">
+<div class="source"><pre class="prettyprint">./bin/singa-console.sh list
+
+JOB ID    |NUM PROCS
+----------|-----------
+24        |2
+</pre></div></div>
+<p>Jobs can be killed by,</p>
+
+<div class="source">
+<div class="source"><pre class="prettyprint">./bin/singa-console.sh kill JOB_ID
+</pre></div></div>
+<p>Logs and job information are available in <i>/tmp/singa-log</i> folder, 
which can be changed to other folders by setting <tt>log-dir</tt> in 
<i>conf/singa.conf</i>.</p></div></div>
 <div class="section">
-<h2><a name="Running_with_Mesos"></a>Running with Mesos</h2>
-<p><i>working</i>&#x2026;</p></div>
+<h3><a name="Training_with_GPUs"></a>Training with GPUs</h3>
+<p>Please refer to the [GPU page][gpu.html] for details on training using 
GPUs.</p></div></div>
 <div class="section">
 <h2><a name="Where_to_go_next"></a>Where to go next</h2>
 <p>The <a href="programming-guide.html">programming guide</a> pages will 
describe how to submit a training job in SINGA.</p></div>

Modified: websites/staging/singa/trunk/content/docs/rbm.html
==============================================================================
--- websites/staging/singa/trunk/content/docs/rbm.html (original)
+++ websites/staging/singa/trunk/content/docs/rbm.html Tue Apr 12 06:24:50 2016
@@ -1,13 +1,13 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia at 2016-03-29 
+ | Generated by Apache Maven Doxia at 2016-04-12 
  | Rendered using Apache Maven Fluido Skin 1.4
 -->
 <html xmlns="http://www.w3.org/1999/xhtml"; xml:lang="en" lang="en">
   <head>
     <meta charset="UTF-8" />
     <meta name="viewport" content="width=device-width, initial-scale=1.0" />
-    <meta name="Date-Revision-yyyymmdd" content="20160329" />
+    <meta name="Date-Revision-yyyymmdd" content="20160412" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Apache SINGA &#x2013; RBM Example</title>
     <link rel="stylesheet" href="../css/apache-maven-fluido-1.4.min.css" />
@@ -80,7 +80,7 @@
         <ul class="dropdown-menu">
         
                       <li class="dropdown-submenu">
-                                      <a href="../docs/index.html"  
title="v0.2.0">v0.2.0</a>
+                                      <a href="../docs/index.html"  
title="v0.3.0">v0.3.0</a>
               <ul class="dropdown-menu">
                                   <li>      <a href="../docs/index.html"  
title="English">English</a>
 </li>
@@ -93,6 +93,9 @@
                               </ul>
             </li>
                   
+                      <li>      <a href="../v0.2.0/index.html"  
title="v0.2.0">v0.2.0</a>
+</li>
+                  
                       <li>      <a href="../v0.1.0/index.html"  
title="v0.1.0">v0.1.0</a>
 </li>
                           </ul>
@@ -218,13 +221,20 @@
                                                                                
                                                       
       <li>
   
-                          <a href="../docs/index.html" title="v0.2.0">
+                          <a href="../docs/index.html" title="v0.3.0">
           <span class="icon-chevron-right"></span>
-        v0.2.0</a>
+        v0.3.0</a>
                   </li>
                 
       <li>
   
+                          <a href="../v0.2.0/index.html" title="v0.2.0">
+          <span class="none"></span>
+        v0.2.0</a>
+            </li>
+                
+      <li>
+  
                           <a href="../v0.1.0/index.html" title="v0.1.0">
           <span class="none"></span>
         v0.1.0</a>

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 Tue Apr 12 06:24:50 2016
@@ -1,13 +1,13 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia at 2016-03-29 
+ | Generated by Apache Maven Doxia at 2016-04-12 
  | Rendered using Apache Maven Fluido Skin 1.4
 -->
 <html xmlns="http://www.w3.org/1999/xhtml"; xml:lang="en" lang="en">
   <head>
     <meta charset="UTF-8" />
     <meta name="viewport" content="width=device-width, initial-scale=1.0" />
-    <meta name="Date-Revision-yyyymmdd" content="20160329" />
+    <meta name="Date-Revision-yyyymmdd" content="20160412" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Apache SINGA &#x2013; Recurrent Neural Networks for Language 
Modelling</title>
     <link rel="stylesheet" href="../css/apache-maven-fluido-1.4.min.css" />
@@ -80,7 +80,7 @@
         <ul class="dropdown-menu">
         
                       <li class="dropdown-submenu">
-                                      <a href="../docs/index.html"  
title="v0.2.0">v0.2.0</a>
+                                      <a href="../docs/index.html"  
title="v0.3.0">v0.3.0</a>
               <ul class="dropdown-menu">
                                   <li>      <a href="../docs/index.html"  
title="English">English</a>
 </li>
@@ -93,6 +93,9 @@
                               </ul>
             </li>
                   
+                      <li>      <a href="../v0.2.0/index.html"  
title="v0.2.0">v0.2.0</a>
+</li>
+                  
                       <li>      <a href="../v0.1.0/index.html"  
title="v0.1.0">v0.1.0</a>
 </li>
                           </ul>
@@ -218,13 +221,20 @@
                                                                                
                                                       
       <li>
   
-                          <a href="../docs/index.html" title="v0.2.0">
+                          <a href="../docs/index.html" title="v0.3.0">
           <span class="icon-chevron-right"></span>
-        v0.2.0</a>
+        v0.3.0</a>
                   </li>
                 
       <li>
   
+                          <a href="../v0.2.0/index.html" title="v0.2.0">
+          <span class="none"></span>
+        v0.2.0</a>
+            </li>
+                
+      <li>
+  
                           <a href="../v0.1.0/index.html" title="v0.1.0">
           <span class="none"></span>
         v0.1.0</a>

Modified: websites/staging/singa/trunk/content/docs/test.html
==============================================================================
--- websites/staging/singa/trunk/content/docs/test.html (original)
+++ websites/staging/singa/trunk/content/docs/test.html Tue Apr 12 06:24:50 2016
@@ -1,13 +1,13 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia at 2016-03-29 
+ | Generated by Apache Maven Doxia at 2016-04-12 
  | Rendered using Apache Maven Fluido Skin 1.4
 -->
 <html xmlns="http://www.w3.org/1999/xhtml"; xml:lang="en" lang="en">
   <head>
     <meta charset="UTF-8" />
     <meta name="viewport" content="width=device-width, initial-scale=1.0" />
-    <meta name="Date-Revision-yyyymmdd" content="20160329" />
+    <meta name="Date-Revision-yyyymmdd" content="20160412" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Apache SINGA &#x2013; Performance Test and Feature 
Extraction</title>
     <link rel="stylesheet" href="../css/apache-maven-fluido-1.4.min.css" />
@@ -80,7 +80,7 @@
         <ul class="dropdown-menu">
         
                       <li class="dropdown-submenu">
-                                      <a href="../docs/index.html"  
title="v0.2.0">v0.2.0</a>
+                                      <a href="../docs/index.html"  
title="v0.3.0">v0.3.0</a>
               <ul class="dropdown-menu">
                                   <li>      <a href="../docs/index.html"  
title="English">English</a>
 </li>
@@ -93,6 +93,9 @@
                               </ul>
             </li>
                   
+                      <li>      <a href="../v0.2.0/index.html"  
title="v0.2.0">v0.2.0</a>
+</li>
+                  
                       <li>      <a href="../v0.1.0/index.html"  
title="v0.1.0">v0.1.0</a>
 </li>
                           </ul>
@@ -218,13 +221,20 @@
                                                                                
                                                       
       <li>
   
-                          <a href="../docs/index.html" title="v0.2.0">
+                          <a href="../docs/index.html" title="v0.3.0">
           <span class="icon-chevron-right"></span>
-        v0.2.0</a>
+        v0.3.0</a>
                   </li>
                 
       <li>
   
+                          <a href="../v0.2.0/index.html" title="v0.2.0">
+          <span class="none"></span>
+        v0.2.0</a>
+            </li>
+                
+      <li>
+  
                           <a href="../v0.1.0/index.html" title="v0.1.0">
           <span class="none"></span>
         v0.1.0</a>

Modified: websites/staging/singa/trunk/content/docs/train-one-batch.html
==============================================================================
--- websites/staging/singa/trunk/content/docs/train-one-batch.html (original)
+++ websites/staging/singa/trunk/content/docs/train-one-batch.html Tue Apr 12 
06:24:50 2016
@@ -1,13 +1,13 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia at 2016-03-29 
+ | Generated by Apache Maven Doxia at 2016-04-12 
  | Rendered using Apache Maven Fluido Skin 1.4
 -->
 <html xmlns="http://www.w3.org/1999/xhtml"; xml:lang="en" lang="en">
   <head>
     <meta charset="UTF-8" />
     <meta name="viewport" content="width=device-width, initial-scale=1.0" />
-    <meta name="Date-Revision-yyyymmdd" content="20160329" />
+    <meta name="Date-Revision-yyyymmdd" content="20160412" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Apache SINGA &#x2013; Train-One-Batch</title>
     <link rel="stylesheet" href="../css/apache-maven-fluido-1.4.min.css" />
@@ -80,7 +80,7 @@
         <ul class="dropdown-menu">
         
                       <li class="dropdown-submenu">
-                                      <a href="../docs/index.html"  
title="v0.2.0">v0.2.0</a>
+                                      <a href="../docs/index.html"  
title="v0.3.0">v0.3.0</a>
               <ul class="dropdown-menu">
                                   <li>      <a href="../docs/index.html"  
title="English">English</a>
 </li>
@@ -93,6 +93,9 @@
                               </ul>
             </li>
                   
+                      <li>      <a href="../v0.2.0/index.html"  
title="v0.2.0">v0.2.0</a>
+</li>
+                  
                       <li>      <a href="../v0.1.0/index.html"  
title="v0.1.0">v0.1.0</a>
 </li>
                           </ul>
@@ -218,13 +221,20 @@
                                                                                
                                                       
       <li>
   
-                          <a href="../docs/index.html" title="v0.2.0">
+                          <a href="../docs/index.html" title="v0.3.0">
           <span class="icon-chevron-right"></span>
-        v0.2.0</a>
+        v0.3.0</a>
                   </li>
                 
       <li>
   
+                          <a href="../v0.2.0/index.html" title="v0.2.0">
+          <span class="none"></span>
+        v0.2.0</a>
+            </li>
+                
+      <li>
+  
                           <a href="../v0.1.0/index.html" title="v0.1.0">
           <span class="none"></span>
         v0.1.0</a>

Modified: websites/staging/singa/trunk/content/docs/updater.html
==============================================================================
--- websites/staging/singa/trunk/content/docs/updater.html (original)
+++ websites/staging/singa/trunk/content/docs/updater.html Tue Apr 12 06:24:50 
2016
@@ -1,13 +1,13 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia at 2016-03-29 
+ | Generated by Apache Maven Doxia at 2016-04-12 
  | Rendered using Apache Maven Fluido Skin 1.4
 -->
 <html xmlns="http://www.w3.org/1999/xhtml"; xml:lang="en" lang="en">
   <head>
     <meta charset="UTF-8" />
     <meta name="viewport" content="width=device-width, initial-scale=1.0" />
-    <meta name="Date-Revision-yyyymmdd" content="20160329" />
+    <meta name="Date-Revision-yyyymmdd" content="20160412" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Apache SINGA &#x2013; Updater</title>
     <link rel="stylesheet" href="../css/apache-maven-fluido-1.4.min.css" />
@@ -80,7 +80,7 @@
         <ul class="dropdown-menu">
         
                       <li class="dropdown-submenu">
-                                      <a href="../docs/index.html"  
title="v0.2.0">v0.2.0</a>
+                                      <a href="../docs/index.html"  
title="v0.3.0">v0.3.0</a>
               <ul class="dropdown-menu">
                                   <li>      <a href="../docs/index.html"  
title="English">English</a>
 </li>
@@ -93,6 +93,9 @@
                               </ul>
             </li>
                   
+                      <li>      <a href="../v0.2.0/index.html"  
title="v0.2.0">v0.2.0</a>
+</li>
+                  
                       <li>      <a href="../v0.1.0/index.html"  
title="v0.1.0">v0.1.0</a>
 </li>
                           </ul>
@@ -218,13 +221,20 @@
                                                                                
                                                       
       <li>
   
-                          <a href="../docs/index.html" title="v0.2.0">
+                          <a href="../docs/index.html" title="v0.3.0">
           <span class="icon-chevron-right"></span>
-        v0.2.0</a>
+        v0.3.0</a>
                   </li>
                 
       <li>
   
+                          <a href="../v0.2.0/index.html" title="v0.2.0">
+          <span class="none"></span>
+        v0.2.0</a>
+            </li>
+                
+      <li>
+  
                           <a href="../v0.1.0/index.html" title="v0.1.0">
           <span class="none"></span>
         v0.1.0</a>

Modified: websites/staging/singa/trunk/content/docs/zh/checkpoint.html
==============================================================================
--- websites/staging/singa/trunk/content/docs/zh/checkpoint.html (original)
+++ websites/staging/singa/trunk/content/docs/zh/checkpoint.html Tue Apr 12 
06:24:50 2016
@@ -1,13 +1,13 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia at 2016-03-29 
+ | Generated by Apache Maven Doxia at 2016-04-12 
  | Rendered using Apache Maven Fluido Skin 1.4
 -->
 <html xmlns="http://www.w3.org/1999/xhtml"; xml:lang="en" lang="en">
   <head>
     <meta charset="UTF-8" />
     <meta name="viewport" content="width=device-width, initial-scale=1.0" />
-    <meta name="Date-Revision-yyyymmdd" content="20160329" />
+    <meta name="Date-Revision-yyyymmdd" content="20160412" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Apache SINGA &#x2013; CheckPoint</title>
     <link rel="stylesheet" href="../../css/apache-maven-fluido-1.4.min.css" />
@@ -80,7 +80,7 @@
         <ul class="dropdown-menu">
         
                       <li class="dropdown-submenu">
-                                      <a href="../../docs/index.html"  
title="v0.2.0">v0.2.0</a>
+                                      <a href="../../docs/index.html"  
title="v0.3.0">v0.3.0</a>
               <ul class="dropdown-menu">
                                   <li>      <a href="../../docs/index.html"  
title="English">English</a>
 </li>
@@ -93,6 +93,9 @@
                               </ul>
             </li>
                   
+                      <li>      <a href="../../v0.2.0/index.html"  
title="v0.2.0">v0.2.0</a>
+</li>
+                  
                       <li>      <a href="../../v0.1.0/index.html"  
title="v0.1.0">v0.1.0</a>
 </li>
                           </ul>
@@ -218,13 +221,20 @@
                                                                                
                                                       
       <li>
   
-                          <a href="../../docs/index.html" title="v0.2.0">
+                          <a href="../../docs/index.html" title="v0.3.0">
           <span class="icon-chevron-right"></span>
-        v0.2.0</a>
+        v0.3.0</a>
                   </li>
                 
       <li>
   
+                          <a href="../../v0.2.0/index.html" title="v0.2.0">
+          <span class="none"></span>
+        v0.2.0</a>
+            </li>
+                
+      <li>
+  
                           <a href="../../v0.1.0/index.html" title="v0.1.0">
           <span class="none"></span>
         v0.1.0</a>

Modified: websites/staging/singa/trunk/content/docs/zh/cnn.html
==============================================================================
--- websites/staging/singa/trunk/content/docs/zh/cnn.html (original)
+++ websites/staging/singa/trunk/content/docs/zh/cnn.html Tue Apr 12 06:24:50 
2016
@@ -1,13 +1,13 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia at 2016-03-29 
+ | Generated by Apache Maven Doxia at 2016-04-12 
  | Rendered using Apache Maven Fluido Skin 1.4
 -->
 <html xmlns="http://www.w3.org/1999/xhtml"; xml:lang="en" lang="en">
   <head>
     <meta charset="UTF-8" />
     <meta name="viewport" content="width=device-width, initial-scale=1.0" />
-    <meta name="Date-Revision-yyyymmdd" content="20160329" />
+    <meta name="Date-Revision-yyyymmdd" content="20160412" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Apache SINGA &#x2013; CNN Example</title>
     <link rel="stylesheet" href="../../css/apache-maven-fluido-1.4.min.css" />
@@ -80,7 +80,7 @@
         <ul class="dropdown-menu">
         
                       <li class="dropdown-submenu">
-                                      <a href="../../docs/index.html"  
title="v0.2.0">v0.2.0</a>
+                                      <a href="../../docs/index.html"  
title="v0.3.0">v0.3.0</a>
               <ul class="dropdown-menu">
                                   <li>      <a href="../../docs/index.html"  
title="English">English</a>
 </li>
@@ -93,6 +93,9 @@
                               </ul>
             </li>
                   
+                      <li>      <a href="../../v0.2.0/index.html"  
title="v0.2.0">v0.2.0</a>
+</li>
+                  
                       <li>      <a href="../../v0.1.0/index.html"  
title="v0.1.0">v0.1.0</a>
 </li>
                           </ul>
@@ -218,13 +221,20 @@
                                                                                
                                                       
       <li>
   
-                          <a href="../../docs/index.html" title="v0.2.0">
+                          <a href="../../docs/index.html" title="v0.3.0">
           <span class="icon-chevron-right"></span>
-        v0.2.0</a>
+        v0.3.0</a>
                   </li>
                 
       <li>
   
+                          <a href="../../v0.2.0/index.html" title="v0.2.0">
+          <span class="none"></span>
+        v0.2.0</a>
+            </li>
+                
+      <li>
+  
                           <a href="../../v0.1.0/index.html" title="v0.1.0">
           <span class="none"></span>
         v0.1.0</a>

Modified: websites/staging/singa/trunk/content/docs/zh/data.html
==============================================================================
--- websites/staging/singa/trunk/content/docs/zh/data.html (original)
+++ websites/staging/singa/trunk/content/docs/zh/data.html Tue Apr 12 06:24:50 
2016
@@ -1,13 +1,13 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia at 2016-03-29 
+ | Generated by Apache Maven Doxia at 2016-04-12 
  | Rendered using Apache Maven Fluido Skin 1.4
 -->
 <html xmlns="http://www.w3.org/1999/xhtml"; xml:lang="en" lang="en">
   <head>
     <meta charset="UTF-8" />
     <meta name="viewport" content="width=device-width, initial-scale=1.0" />
-    <meta name="Date-Revision-yyyymmdd" content="20160329" />
+    <meta name="Date-Revision-yyyymmdd" content="20160412" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Apache SINGA &#x2013; Data Preparation</title>
     <link rel="stylesheet" href="../../css/apache-maven-fluido-1.4.min.css" />
@@ -80,7 +80,7 @@
         <ul class="dropdown-menu">
         
                       <li class="dropdown-submenu">
-                                      <a href="../../docs/index.html"  
title="v0.2.0">v0.2.0</a>
+                                      <a href="../../docs/index.html"  
title="v0.3.0">v0.3.0</a>
               <ul class="dropdown-menu">
                                   <li>      <a href="../../docs/index.html"  
title="English">English</a>
 </li>
@@ -93,6 +93,9 @@
                               </ul>
             </li>
                   
+                      <li>      <a href="../../v0.2.0/index.html"  
title="v0.2.0">v0.2.0</a>
+</li>
+                  
                       <li>      <a href="../../v0.1.0/index.html"  
title="v0.1.0">v0.1.0</a>
 </li>
                           </ul>
@@ -218,13 +221,20 @@
                                                                                
                                                       
       <li>
   
-                          <a href="../../docs/index.html" title="v0.2.0">
+                          <a href="../../docs/index.html" title="v0.3.0">
           <span class="icon-chevron-right"></span>
-        v0.2.0</a>
+        v0.3.0</a>
                   </li>
                 
       <li>
   
+                          <a href="../../v0.2.0/index.html" title="v0.2.0">
+          <span class="none"></span>
+        v0.2.0</a>
+            </li>
+                
+      <li>
+  
                           <a href="../../v0.1.0/index.html" title="v0.1.0">
           <span class="none"></span>
         v0.1.0</a>

Modified: websites/staging/singa/trunk/content/docs/zh/distributed-training.html
==============================================================================
--- websites/staging/singa/trunk/content/docs/zh/distributed-training.html 
(original)
+++ websites/staging/singa/trunk/content/docs/zh/distributed-training.html Tue 
Apr 12 06:24:50 2016
@@ -1,13 +1,13 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia at 2016-03-29 
+ | Generated by Apache Maven Doxia at 2016-04-12 
  | Rendered using Apache Maven Fluido Skin 1.4
 -->
 <html xmlns="http://www.w3.org/1999/xhtml"; xml:lang="en" lang="en">
   <head>
     <meta charset="UTF-8" />
     <meta name="viewport" content="width=device-width, initial-scale=1.0" />
-    <meta name="Date-Revision-yyyymmdd" content="20160329" />
+    <meta name="Date-Revision-yyyymmdd" content="20160412" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Apache SINGA &#x2013; Distributed Training</title>
     <link rel="stylesheet" href="../../css/apache-maven-fluido-1.4.min.css" />
@@ -80,7 +80,7 @@
         <ul class="dropdown-menu">
         
                       <li class="dropdown-submenu">
-                                      <a href="../../docs/index.html"  
title="v0.2.0">v0.2.0</a>
+                                      <a href="../../docs/index.html"  
title="v0.3.0">v0.3.0</a>
               <ul class="dropdown-menu">
                                   <li>      <a href="../../docs/index.html"  
title="English">English</a>
 </li>
@@ -93,6 +93,9 @@
                               </ul>
             </li>
                   
+                      <li>      <a href="../../v0.2.0/index.html"  
title="v0.2.0">v0.2.0</a>
+</li>
+                  
                       <li>      <a href="../../v0.1.0/index.html"  
title="v0.1.0">v0.1.0</a>
 </li>
                           </ul>
@@ -218,13 +221,20 @@
                                                                                
                                                       
       <li>
   
-                          <a href="../../docs/index.html" title="v0.2.0">
+                          <a href="../../docs/index.html" title="v0.3.0">
           <span class="icon-chevron-right"></span>
-        v0.2.0</a>
+        v0.3.0</a>
                   </li>
                 
       <li>
   
+                          <a href="../../v0.2.0/index.html" title="v0.2.0">
+          <span class="none"></span>
+        v0.2.0</a>
+            </li>
+                
+      <li>
+  
                           <a href="../../v0.1.0/index.html" title="v0.1.0">
           <span class="none"></span>
         v0.1.0</a>

Modified: websites/staging/singa/trunk/content/docs/zh/index.html
==============================================================================
--- websites/staging/singa/trunk/content/docs/zh/index.html (original)
+++ websites/staging/singa/trunk/content/docs/zh/index.html Tue Apr 12 06:24:50 
2016
@@ -1,13 +1,13 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia at 2016-03-29 
+ | Generated by Apache Maven Doxia at 2016-04-12 
  | Rendered using Apache Maven Fluido Skin 1.4
 -->
 <html xmlns="http://www.w3.org/1999/xhtml"; xml:lang="en" lang="en">
   <head>
     <meta charset="UTF-8" />
     <meta name="viewport" content="width=device-width, initial-scale=1.0" />
-    <meta name="Date-Revision-yyyymmdd" content="20160329" />
+    <meta name="Date-Revision-yyyymmdd" content="20160412" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Apache SINGA &#x2013; </title>
     <link rel="stylesheet" href="../../css/apache-maven-fluido-1.4.min.css" />
@@ -80,7 +80,7 @@
         <ul class="dropdown-menu">
         
                       <li class="dropdown-submenu">
-                                      <a href="../../docs/index.html"  
title="v0.2.0">v0.2.0</a>
+                                      <a href="../../docs/index.html"  
title="v0.3.0">v0.3.0</a>
               <ul class="dropdown-menu">
                                   <li>      <a href="../../docs/index.html"  
title="English">English</a>
 </li>
@@ -93,6 +93,9 @@
                               </ul>
             </li>
                   
+                      <li>      <a href="../../v0.2.0/index.html"  
title="v0.2.0">v0.2.0</a>
+</li>
+                  
                       <li>      <a href="../../v0.1.0/index.html"  
title="v0.1.0">v0.1.0</a>
 </li>
                           </ul>
@@ -218,9 +221,9 @@
                                                                                
                                                                 
       <li>
   
-                          <a href="../../docs/index.html" title="v0.2.0">
+                          <a href="../../docs/index.html" title="v0.3.0">
           <span class="icon-chevron-down"></span>
-        v0.2.0</a>
+        v0.3.0</a>
                     <ul class="nav nav-list">
                     
       <li>
@@ -253,6 +256,13 @@
                 
       <li>
   
+                          <a href="../../v0.2.0/index.html" title="v0.2.0">
+          <span class="none"></span>
+        v0.2.0</a>
+            </li>
+                
+      <li>
+  
                           <a href="../../v0.1.0/index.html" title="v0.1.0">
           <span class="none"></span>
         v0.1.0</a>
@@ -344,7 +354,7 @@
   
 <li><a href="overview.html">&#x7b80;&#x4ecb;</a></li>
   
-<li><a 
href="installation_source.html">&#x5b89;&#x88c5;&#x8bf4;&#x660e;</a></li>
+<li><a href="installation_source.html">&#x5b89;&#x88c5;</a></li>
   
 <li><a href="programming-guide.html">&#x4f7f;&#x7528;&#x6307;&#x5357;</a></li>
 </ul>

Modified: websites/staging/singa/trunk/content/docs/zh/installation_source.html
==============================================================================
--- websites/staging/singa/trunk/content/docs/zh/installation_source.html 
(original)
+++ websites/staging/singa/trunk/content/docs/zh/installation_source.html Tue 
Apr 12 06:24:50 2016
@@ -1,13 +1,13 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia at 2016-03-29 
+ | Generated by Apache Maven Doxia at 2016-04-12 
  | Rendered using Apache Maven Fluido Skin 1.4
 -->
 <html xmlns="http://www.w3.org/1999/xhtml"; xml:lang="en" lang="en">
   <head>
     <meta charset="UTF-8" />
     <meta name="viewport" content="width=device-width, initial-scale=1.0" />
-    <meta name="Date-Revision-yyyymmdd" content="20160329" />
+    <meta name="Date-Revision-yyyymmdd" content="20160412" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Apache SINGA &#x2013; 从源程序安装SIGNA</title>
     <link rel="stylesheet" href="../../css/apache-maven-fluido-1.4.min.css" />
@@ -80,7 +80,7 @@
         <ul class="dropdown-menu">
         
                       <li class="dropdown-submenu">
-                                      <a href="../../docs/index.html"  
title="v0.2.0">v0.2.0</a>
+                                      <a href="../../docs/index.html"  
title="v0.3.0">v0.3.0</a>
               <ul class="dropdown-menu">
                                   <li>      <a href="../../docs/index.html"  
title="English">English</a>
 </li>
@@ -93,6 +93,9 @@
                               </ul>
             </li>
                   
+                      <li>      <a href="../../v0.2.0/index.html"  
title="v0.2.0">v0.2.0</a>
+</li>
+                  
                       <li>      <a href="../../v0.1.0/index.html"  
title="v0.1.0">v0.1.0</a>
 </li>
                           </ul>
@@ -218,13 +221,20 @@
                                                                                
                                                       
       <li>
   
-                          <a href="../../docs/index.html" title="v0.2.0">
+                          <a href="../../docs/index.html" title="v0.3.0">
           <span class="icon-chevron-right"></span>
-        v0.2.0</a>
+        v0.3.0</a>
                   </li>
                 
       <li>
   
+                          <a href="../../v0.2.0/index.html" title="v0.2.0">
+          <span class="none"></span>
+        v0.2.0</a>
+            </li>
+                
+      <li>
+  
                           <a href="../../v0.1.0/index.html" title="v0.1.0">
           <span class="none"></span>
         v0.1.0</a>

Modified: websites/staging/singa/trunk/content/docs/zh/mlp.html
==============================================================================
--- websites/staging/singa/trunk/content/docs/zh/mlp.html (original)
+++ websites/staging/singa/trunk/content/docs/zh/mlp.html Tue Apr 12 06:24:50 
2016
@@ -1,13 +1,13 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia at 2016-03-29 
+ | Generated by Apache Maven Doxia at 2016-04-12 
  | Rendered using Apache Maven Fluido Skin 1.4
 -->
 <html xmlns="http://www.w3.org/1999/xhtml"; xml:lang="en" lang="en">
   <head>
     <meta charset="UTF-8" />
     <meta name="viewport" content="width=device-width, initial-scale=1.0" />
-    <meta name="Date-Revision-yyyymmdd" content="20160329" />
+    <meta name="Date-Revision-yyyymmdd" content="20160412" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Apache SINGA &#x2013; MLP Example</title>
     <link rel="stylesheet" href="../../css/apache-maven-fluido-1.4.min.css" />
@@ -80,7 +80,7 @@
         <ul class="dropdown-menu">
         
                       <li class="dropdown-submenu">
-                                      <a href="../../docs/index.html"  
title="v0.2.0">v0.2.0</a>
+                                      <a href="../../docs/index.html"  
title="v0.3.0">v0.3.0</a>
               <ul class="dropdown-menu">
                                   <li>      <a href="../../docs/index.html"  
title="English">English</a>
 </li>
@@ -93,6 +93,9 @@
                               </ul>
             </li>
                   
+                      <li>      <a href="../../v0.2.0/index.html"  
title="v0.2.0">v0.2.0</a>
+</li>
+                  
                       <li>      <a href="../../v0.1.0/index.html"  
title="v0.1.0">v0.1.0</a>
 </li>
                           </ul>
@@ -218,13 +221,20 @@
                                                                                
                                                       
       <li>
   
-                          <a href="../../docs/index.html" title="v0.2.0">
+                          <a href="../../docs/index.html" title="v0.3.0">
           <span class="icon-chevron-right"></span>
-        v0.2.0</a>
+        v0.3.0</a>
                   </li>
                 
       <li>
   
+                          <a href="../../v0.2.0/index.html" title="v0.2.0">
+          <span class="none"></span>
+        v0.2.0</a>
+            </li>
+                
+      <li>
+  
                           <a href="../../v0.1.0/index.html" title="v0.1.0">
           <span class="none"></span>
         v0.1.0</a>

Modified: websites/staging/singa/trunk/content/docs/zh/neural-net.html
==============================================================================
--- websites/staging/singa/trunk/content/docs/zh/neural-net.html (original)
+++ websites/staging/singa/trunk/content/docs/zh/neural-net.html Tue Apr 12 
06:24:50 2016
@@ -1,13 +1,13 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia at 2016-03-29 
+ | Generated by Apache Maven Doxia at 2016-04-12 
  | Rendered using Apache Maven Fluido Skin 1.4
 -->
 <html xmlns="http://www.w3.org/1999/xhtml"; xml:lang="en" lang="en">
   <head>
     <meta charset="UTF-8" />
     <meta name="viewport" content="width=device-width, initial-scale=1.0" />
-    <meta name="Date-Revision-yyyymmdd" content="20160329" />
+    <meta name="Date-Revision-yyyymmdd" content="20160412" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Apache SINGA &#x2013; Neural Net</title>
     <link rel="stylesheet" href="../../css/apache-maven-fluido-1.4.min.css" />
@@ -80,7 +80,7 @@
         <ul class="dropdown-menu">
         
                       <li class="dropdown-submenu">
-                                      <a href="../../docs/index.html"  
title="v0.2.0">v0.2.0</a>
+                                      <a href="../../docs/index.html"  
title="v0.3.0">v0.3.0</a>
               <ul class="dropdown-menu">
                                   <li>      <a href="../../docs/index.html"  
title="English">English</a>
 </li>
@@ -93,6 +93,9 @@
                               </ul>
             </li>
                   
+                      <li>      <a href="../../v0.2.0/index.html"  
title="v0.2.0">v0.2.0</a>
+</li>
+                  
                       <li>      <a href="../../v0.1.0/index.html"  
title="v0.1.0">v0.1.0</a>
 </li>
                           </ul>
@@ -218,13 +221,20 @@
                                                                                
                                                       
       <li>
   
-                          <a href="../../docs/index.html" title="v0.2.0">
+                          <a href="../../docs/index.html" title="v0.3.0">
           <span class="icon-chevron-right"></span>
-        v0.2.0</a>
+        v0.3.0</a>
                   </li>
                 
       <li>
   
+                          <a href="../../v0.2.0/index.html" title="v0.2.0">
+          <span class="none"></span>
+        v0.2.0</a>
+            </li>
+                
+      <li>
+  
                           <a href="../../v0.1.0/index.html" title="v0.1.0">
           <span class="none"></span>
         v0.1.0</a>

Modified: websites/staging/singa/trunk/content/docs/zh/overview.html
==============================================================================
--- websites/staging/singa/trunk/content/docs/zh/overview.html (original)
+++ websites/staging/singa/trunk/content/docs/zh/overview.html Tue Apr 12 
06:24:50 2016
@@ -1,13 +1,13 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia at 2016-03-29 
+ | Generated by Apache Maven Doxia at 2016-04-12 
  | Rendered using Apache Maven Fluido Skin 1.4
 -->
 <html xmlns="http://www.w3.org/1999/xhtml"; xml:lang="en" lang="en">
   <head>
     <meta charset="UTF-8" />
     <meta name="viewport" content="width=device-width, initial-scale=1.0" />
-    <meta name="Date-Revision-yyyymmdd" content="20160329" />
+    <meta name="Date-Revision-yyyymmdd" content="20160412" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Apache SINGA &#x2013; 简介</title>
     <link rel="stylesheet" href="../../css/apache-maven-fluido-1.4.min.css" />
@@ -80,7 +80,7 @@
         <ul class="dropdown-menu">
         
                       <li class="dropdown-submenu">
-                                      <a href="../../docs/index.html"  
title="v0.2.0">v0.2.0</a>
+                                      <a href="../../docs/index.html"  
title="v0.3.0">v0.3.0</a>
               <ul class="dropdown-menu">
                                   <li>      <a href="../../docs/index.html"  
title="English">English</a>
 </li>
@@ -93,6 +93,9 @@
                               </ul>
             </li>
                   
+                      <li>      <a href="../../v0.2.0/index.html"  
title="v0.2.0">v0.2.0</a>
+</li>
+                  
                       <li>      <a href="../../v0.1.0/index.html"  
title="v0.1.0">v0.1.0</a>
 </li>
                           </ul>
@@ -218,13 +221,20 @@
                                                                                
                                                       
       <li>
   
-                          <a href="../../docs/index.html" title="v0.2.0">
+                          <a href="../../docs/index.html" title="v0.3.0">
           <span class="icon-chevron-right"></span>
-        v0.2.0</a>
+        v0.3.0</a>
                   </li>
                 
       <li>
   
+                          <a href="../../v0.2.0/index.html" title="v0.2.0">
+          <span class="none"></span>
+        v0.2.0</a>
+            </li>
+                
+      <li>
+  
                           <a href="../../v0.1.0/index.html" title="v0.1.0">
           <span class="none"></span>
         v0.1.0</a>

Modified: websites/staging/singa/trunk/content/docs/zh/programming-guide.html
==============================================================================
--- websites/staging/singa/trunk/content/docs/zh/programming-guide.html 
(original)
+++ websites/staging/singa/trunk/content/docs/zh/programming-guide.html Tue Apr 
12 06:24:50 2016
@@ -1,13 +1,13 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia at 2016-03-29 
+ | Generated by Apache Maven Doxia at 2016-04-12 
  | Rendered using Apache Maven Fluido Skin 1.4
 -->
 <html xmlns="http://www.w3.org/1999/xhtml"; xml:lang="en" lang="en">
   <head>
     <meta charset="UTF-8" />
     <meta name="viewport" content="width=device-width, initial-scale=1.0" />
-    <meta name="Date-Revision-yyyymmdd" content="20160329" />
+    <meta name="Date-Revision-yyyymmdd" content="20160412" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Apache SINGA &#x2013; 编程指南</title>
     <link rel="stylesheet" href="../../css/apache-maven-fluido-1.4.min.css" />
@@ -80,7 +80,7 @@
         <ul class="dropdown-menu">
         
                       <li class="dropdown-submenu">
-                                      <a href="../../docs/index.html"  
title="v0.2.0">v0.2.0</a>
+                                      <a href="../../docs/index.html"  
title="v0.3.0">v0.3.0</a>
               <ul class="dropdown-menu">
                                   <li>      <a href="../../docs/index.html"  
title="English">English</a>
 </li>
@@ -93,6 +93,9 @@
                               </ul>
             </li>
                   
+                      <li>      <a href="../../v0.2.0/index.html"  
title="v0.2.0">v0.2.0</a>
+</li>
+                  
                       <li>      <a href="../../v0.1.0/index.html"  
title="v0.1.0">v0.1.0</a>
 </li>
                           </ul>
@@ -218,13 +221,20 @@
                                                                                
                                                       
       <li>
   
-                          <a href="../../docs/index.html" title="v0.2.0">
+                          <a href="../../docs/index.html" title="v0.3.0">
           <span class="icon-chevron-right"></span>
-        v0.2.0</a>
+        v0.3.0</a>
                   </li>
                 
       <li>
   
+                          <a href="../../v0.2.0/index.html" title="v0.2.0">
+          <span class="none"></span>
+        v0.2.0</a>
+            </li>
+                
+      <li>
+  
                           <a href="../../v0.1.0/index.html" title="v0.1.0">
           <span class="none"></span>
         v0.1.0</a>



Reply via email to