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 2016/01/08 10:47:12 UTC

svn commit: r1723670 - /incubator/singa/site/trunk/content/markdown/docs/python.md

Author: wangwei
Date: Fri Jan  8 09:47:12 2016
New Revision: 1723670

URL: http://svn.apache.org/viewvc?rev=1723670&view=rev
Log:
fix typos.

Modified:
    incubator/singa/site/trunk/content/markdown/docs/python.md

Modified: incubator/singa/site/trunk/content/markdown/docs/python.md
URL: http://svn.apache.org/viewvc/incubator/singa/site/trunk/content/markdown/docs/python.md?rev=1723670&r1=1723669&r2=1723670&view=diff
==============================================================================
--- incubator/singa/site/trunk/content/markdown/docs/python.md (original)
+++ incubator/singa/site/trunk/content/markdown/docs/python.md Fri Jan  8 09:47:12 2016
@@ -30,7 +30,7 @@ Here is the layout of python related cod
 
 ## Compiling and running instructions
 
-In order to use the Python APIs, users need to add the following option when compiling
+In order to use the Python APIs, users need to add the following arguments when compiling
 SINGA,
 
     ./configure --enable-python --with-python=PYTHON_DIR
@@ -43,12 +43,12 @@ The training program is launched by
 
     bin/singa-run.sh -exec <user_main.py>
 
-where user_main.py creates the JobProto object and pass it to Driver::Train to
+where user_main.py creates the JobProto object and passes it to Driver::Train to
 start the training.
 
 For example,
 
-    cd SINGA_ROOT
+    cd SINGAROOT
     bin/singa-run.sh -exec tool/python/examples/cifar10_cnn.py