From 27fa496c6617a6356ecee67f4ea7cc0cf9092005 Mon Sep 17 00:00:00 2001 From: zhangli Date: Wed, 22 Mar 2017 10:20:26 +0800 Subject: [PATCH] change wiki link after code restructuring --- README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index a94e306c..ed72d7ea 100644 --- a/README.md +++ b/README.md @@ -55,13 +55,13 @@ RDD[..] --transform-->RDD[ndarray, ndarray].map(Sample.from_ndarray(features, la ## Run python test * Package Scala code by: ```$BigDL_HOME/make-dist.sh``` -* Set SPARK_HOME and then run: ```$BigDL_HOME/dl/src/main/python/dev/run-all.sh``` +* Set SPARK_HOME and then run: ```$BigDL_HOME/pyspark/dev/run-all.sh``` ## Installing on Ubuntu 1. Build BigDL [Build Page](https://github.com/intel-analytics/BigDL/wiki/Build-Page) - * With Spark1.6: ``` $BIGDL_HOME//make-dist.sh ``` - * With Spark2.0: ``` $BIGDL_HOME//make-dist.sh -P spark_2.0 ``` + * With Spark1.6: ``` $BIGDL_HOME/make-dist.sh ``` + * With Spark2.0: ``` $BIGDL_HOME/make-dist.sh -P spark_2.0 ``` 2. Install python dependensies: * Installing Numpy: @@ -90,12 +90,12 @@ RDD[..] --transform-->RDD[ndarray, ndarray].map(Sample.from_ndarray(features, la --executor-cores 10 \ --executor-memory 20g \ --conf spark.akka.frameSize=64 \ - --py-files ${PYTHON_API_ZIP_PATH},${BigDL_HOME}/dl/src/main/python/models/lenet/lenet5.py \ + --py-files ${PYTHON_API_ZIP_PATH},${BigDL_HOME}/pyspark/bigdl/models/lenet/lenet5.py \ --properties-file ${BigDL_HOME}/dist/conf/spark-bigdl.conf \ --jars ${BigDL_JAR_PATH} \ --conf spark.driver.extraClassPath=${BigDL_JAR_PATH} \ --conf spark.executor.extraClassPath=bigdl-0.1.0-SNAPSHOT-jar-with-dependencies.jar \ - ${BigDL_HOME}/dl/src/main/python/models/lenet/lenet5.py + ${BigDL_HOME}/pyspark/bigdl/models/lenet/lenet5.py ```