Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/toolchain/appendix/yolo_example.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ Follow the model's document to save the pretrained model as an `h5` file:

```bash
cd keras_yolo3
wget https://pjreddie.com/media/files/yolov3-tiny.weights
wget https://data.pjreddie.com/files/yolov3.weights
python convert.py yolov3-tiny.cfg yolov3-tiny.weights /data1/yolo.h5
```

Expand Down Expand Up @@ -62,7 +62,7 @@ cp /workspace/E2E_Simulator/app/test_image_folder/yolo/000000350003.jpg ./.
Now we have image `000000350003.jpg` at `/data1` for testing.

```bash
wget ttps://doc.kneron.com/docs/toolchain/res/yolo.opt.onnx --no-check-certificate
wget https://doc.kneron.com/docs/toolchain/res/yolo.opt.onnx --no-check-certificate
```
Now we provide a ready-made 'keras to onnx' model for testing in the following steps

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ Follow the model's document to save the pretrained model as an `h5` file:

```bash
cd keras_yolo3
wget https://pjreddie.com/media/files/yolov3-tiny.weights
wget https://data.pjreddie.com/files/yolov3.weights
python convert.py yolov3-tiny.cfg yolov3-tiny.weights /data1/yolo.h5
```

Expand Down
Loading