Repository: systemml Updated Branches: refs/heads/master c30757e90 -> cf0877b43
[MINOR] Fix nn links on Spark Batch Mode docs Also update invocation examples. Project: http://git-wip-us.apache.org/repos/asf/systemml/repo Commit: http://git-wip-us.apache.org/repos/asf/systemml/commit/cf0877b4 Tree: http://git-wip-us.apache.org/repos/asf/systemml/tree/cf0877b4 Diff: http://git-wip-us.apache.org/repos/asf/systemml/diff/cf0877b4 Branch: refs/heads/master Commit: cf0877b43138b0dc7185467b3435b41c2d45b8a1 Parents: c30757e Author: Deron Eriksson <[email protected]> Authored: Thu Jun 15 18:32:45 2017 -0700 Committer: Deron Eriksson <[email protected]> Committed: Thu Jun 15 18:32:45 2017 -0700 ---------------------------------------------------------------------- docs/spark-batch-mode.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/systemml/blob/cf0877b4/docs/spark-batch-mode.md ---------------------------------------------------------------------- diff --git a/docs/spark-batch-mode.md b/docs/spark-batch-mode.md index 353dff6..7f8f4c0 100644 --- a/docs/spark-batch-mode.md +++ b/docs/spark-batch-mode.md @@ -53,12 +53,12 @@ to be deprecated. All the primary algorithm scripts included with SystemML use n **Example #1: DML Invocation with Named Arguments** - spark-submit systemml/SystemML.jar -f systemml/algorithms/Kmeans.dml -nvargs X=X.mtx k=5 + spark-submit SystemML.jar -f scripts/algorithms/Kmeans.dml -nvargs X=X.mtx k=5 **Example #2: DML Invocation with Positional Arguments** - spark-submit systemml/SystemML.jar -f example/test/LinearRegression.dml -args "v" "y" 0.00000001 "w" + spark-submit SystemML.jar -f src/test/scripts/applications/linear_regression/LinearRegression.dml -args "v" "y" 0.00000001 "w" # Execution modes @@ -77,8 +77,8 @@ For best performance, we recommend setting the following flags when running Syst # Examples Please see the MNIST examples in the included -[SystemML-NN](https://github.com/apache/systemml/tree/master/scripts/staging/SystemML-NN) +[SystemML-NN](https://github.com/apache/systemml/tree/master/scripts/nn) library for examples of Spark Batch mode execution with SystemML to train MNIST classifiers: - * [MNIST Softmax Classifier](https://github.com/apache/systemml/blob/master/scripts/staging/SystemML-NN/examples/mnist_softmax-train.dml) - * [MNIST LeNet ConvNet](https://github.com/apache/systemml/blob/master/scripts/staging/SystemML-NN/examples/mnist_lenet-train.dml) + * [MNIST Softmax Classifier](https://github.com/apache/systemml/blob/master/scripts/nn/examples/mnist_softmax-train.dml) + * [MNIST LeNet ConvNet](https://github.com/apache/systemml/blob/master/scripts/nn/examples/mnist_lenet-train.dml)
