Conversation
99e07f1 to
a9e5e2d
Compare
madjam
reviewed
Apr 10, 2017
README.md
Outdated
| 2. Once launch is succeed, setup the following variable with proper value | ||
|
|
||
| ```bash | ||
| export HOSTNAME=ec2-107-22-159-132.compute-1.amazonaws.com |
There was a problem hiding this comment.
A user might simply copy/paste what you have here and realize it does not work.
- Instead of a real host name, I'd suggest changing this to export HOSTNAME=
- export PERM=
README.md
Outdated
|
|
||
| Make sure coursier launcher is available in the PATH. | ||
|
|
||
| 6. Install [Jupyter-Scala Kernel V0.3.x](https://github.com/alexarchambault/jupyter-scala) according to the instructions given below: |
There was a problem hiding this comment.
change "according to" to "by following"
README.md
Outdated
| ssh -i $PERM -L 8888:localhost:8888 ubuntu@HOSTNAME | ||
| ``` | ||
|
|
||
| Here we forward the EC2 machine's 8888 port into localhost. |
There was a problem hiding this comment.
Change to "Here we forward the EC2 machine's 8888 port to local port 8888"
README.md
Outdated
| jupyter notebook | ||
| ``` | ||
|
|
||
| 8. Now we are able to view and edit the notebooks on the browser using the URL: http://localhost:8888/tree/mxnet-notebooks/scala/. Choose scala211 kernel if asked. Include mxnet-scala jar created in step-4 in classpath by command `classpath.addPath("jar-path")` in the notebook you want to run. |
There was a problem hiding this comment.
change "on the browser" to "from the browser"
README.md
Outdated
|
|
||
| 1. Launch a g2.2xlarge or p2.2xlarge instance by using AMI `ami-fe217de9` on N. Virginia (us-east-1). This AMI is built by using [this script](https://gist.github.com/mli/b64322f446b2043e3350ddcbfa5957be). Remember to open the TCP port 8888 in the security group. | ||
|
|
||
| 2. Once launch is succeed, setup the following variable with proper value |
There was a problem hiding this comment.
- Change "Once launch is succeed" to "Once the instance successfully launches"
- Change variable to variables
README.md
Outdated
|
|
||
| Here we forward the EC2 machine's 8888 port into localhost. | ||
|
|
||
| 4. Install [Maven](https://gist.github.com/sebsto/19b99f1fa1f32cae5d00). Install [Scala 2.11.8](https://www.scala-lang.org/files/archive/scala-2.11.8.rpm). Go to MXNet source code, compile scala-package by command `make scalapkg`. Compiled jar file will be created in `mxnet/scala-package/assembly/{your-architecture}/target` directory. |
There was a problem hiding this comment.
Change "by command" to "by running command"
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Added basic ndarray and mnist tutorials for scala.