Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: marcoslucianops/DeepStream-Yolo
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: master
Choose a base ref
...
head repository: shenyinsong/DeepStream-Yolo
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref

There isn’t anything to compare.

marcoslucianops:master and shenyinsong:master are entirely different commit histories.

Showing with 13 additions and 1 deletion.
  1. +13 −1 README.md
14 changes: 13 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -365,7 +365,19 @@ Python is slightly slower than C (on Jetson Nano, ~2FPS).

**Q:** How to use YoloV3-Tiny-PRN? (~2FPS increase on NVIDIA Jetson Nano)

**A:** Replace nvdsinfer_custom_impl_Yolo/yolo.cpp file to my [yolo.cpp](https://github.com/marcoslucianops/DeepStream-Yolo/blob/master/examples/yolov3-tiny-prn/nvdsinfer_custom_impl_Yolo/yolo.cpp) file.
**A:** Replace nvdsinfer_custom_impl_Yolo/yolo.cpp file to my [yolo.cpp](https://github.com/marcoslucianops/DeepStream-Yolo/blob/master/examples/yolov3-tiny-prn/nvdsinfer_custom_impl_Yolo/yolo.cpp) file and change config_infer.txt file from

```
custom-network-config=yolov3-tiny.cfg
model-file=yolov3-tiny.weights
```

to

```
custom-network-config=yolov3-tiny-prn.cfg
model-file=yolov3-tiny-prn.weights
```

##