You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@singa.apache.org by wa...@apache.org on 2015/06/26 07:59:19 UTC

svn commit: r1687674 - /incubator/singa/site/trunk/content/markdown/quick-start.md

Author: wangwei
Date: Fri Jun 26 05:59:19 2015
New Revision: 1687674

URL: http://svn.apache.org/r1687674
Log:
update instructions for creating dataset and running on multiple nodes.

Modified:
    incubator/singa/site/trunk/content/markdown/quick-start.md

Modified: incubator/singa/site/trunk/content/markdown/quick-start.md
URL: http://svn.apache.org/viewvc/incubator/singa/site/trunk/content/markdown/quick-start.md?rev=1687674&r1=1687673&r2=1687674&view=diff
==============================================================================
--- incubator/singa/site/trunk/content/markdown/quick-start.md (original)
+++ incubator/singa/site/trunk/content/markdown/quick-start.md Fri Jun 26 05:59:19 2015
@@ -50,6 +50,7 @@ The hyper-parameters are set following
 Download the dataset and create the data shards for training and testing.
 
     cd examples/cifar10/
+    cp Makefile.example Makefile
     make download
     make create
 
@@ -134,6 +135,21 @@ All other settings are the same as runni
 
 #### Training in a cluster
 
+To run the distributed Hogwild framework, configure the cluster.conf as:
+
+    nworker_groups: 2
+    nserver_groups: 2
+
+and start one process as,
+    
+    ./bin/singa-run.sh -model=... -cluster=...
+
+and then start another process as,
+ 
+    ./singa -model=... -cluster=...
+
+Note that the two commands are different! The first one will start the zookeeper. Currently we assume 
+that the example/cifar10 folder is in NFS. 
 
 ### Run with Mesos