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

Commit

Permalink
fix on doc
Browse files Browse the repository at this point in the history
  • Loading branch information
lanking520 committed Nov 14, 2018
1 parent f92a843 commit 8b38878
Showing 1 changed file with 7 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,13 @@ build and run pre-trained Resnet 18 model.
1. [Prerequisites](#prerequisites)
2. [Download artifacts](#download-artifacts)
3. [Setup datapath and parameters](#setup-datapath-and-parameters)
4. [Run the image inference example](#run-the-image-inference-example)
4. [Run the image classifier example](#run-the-image-inference-example)

## Prerequisites

1. MXNet
2. MXNet Scala Package
3. [IntelliJ IDE (or alternative IDE) project setup](https://github.com/apache/incubator-mxnet/blob/master/docs/tutorials/java/mxnet_java_on_intellij.md) with the MXNet Java Package
4. wget
1. Build from source with [MXNet](https://mxnet.incubator.apache.org/install/index.html)
2. [IntelliJ IDE (or alternative IDE) project setup](https://github.com/apache/incubator-mxnet/blob/master/docs/tutorials/java/mxnet_java_on_intellij.md) with the MXNet Java Package
3. wget

## Download Artifacts

Expand All @@ -38,9 +37,9 @@ The available arguments are as follows:
| `model-dir`                   | Folder path with prefix to the model (including json, params, and any synset file). |
| `input-image` | The image to run inference on. |

## Run the image inference example
## Run the image classifier example

After the previous steps, you should be able to run the code using the following script that will pass all of the required parameters to the Infer API.
After the previous steps, you should be able to run the code using the following script that will pass all of the required parameters to the Predictor API.

From the `scala-package/examples/scripts/infer/predictor/` folder run:

Expand All @@ -52,7 +51,7 @@ bash run_predictor_java_example.sh ../models/resnet-18/resnet-18 ../images/kitte
* These are relative paths to this script.
* You may need to run `chmod +x run_predictor_java_example.sh` before running this script.

The example should give expected output as shown below:
The example should give an output similar to the one shown below:
```
Predict with Float input
Probability : 0.30337515 Class : n02123159 tiger cat
Expand Down

0 comments on commit 8b38878

Please sign in to comment.