Skip to content
This repository has been archived by the owner on Nov 17, 2023. It is now read-only.

Commit

Permalink
add explanation for the line
Browse files Browse the repository at this point in the history
  • Loading branch information
lanking520 committed Jan 3, 2019
1 parent 6a5adf7 commit 88ce723
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions scala-package/mxnet-demo/java-demo/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,13 @@ However, you have to define the Classpath before you run the demo code. More inf
The `CLASSPATH` should point to the jar file you have downloaded.

It will load the library automatically and run the example

In order to use the `Param Object`. We requires user to place this line in the front:
```
static NDArray$ NDArray = NDArray$.MODULE$;
```
It would help to have the NDArray companion object static and accessable from the outside.

### Object Detection using Inference API
We also provide an example to do object detection, which downloads a ImageNet trained resnet50 model and runs inference on an image to return the classification result as
```Bash
Expand Down

0 comments on commit 88ce723

Please sign in to comment.