zhaotun

Results 2 issues of zhaotun

```shell python demo.py --input-video test.mp4 --weights weights/jde_576x320_uncertainty.pt --output-format video ``` ```shell Namespace(cfg='cfg/yolov3_1088x608.cfg', conf_thres=0.5, input_video='test.mp4', iou_thres=0.5, min_box_area=200, nms_thres=0.4, output_format='video', output_root='results', track_buffer=30, weights='weights/jde_576x320_uncertainty.pt') 2021-10-19 17:11:49 [INFO]: Starting tracking... Lenth of the video:...

根据 [airockchip](https://github.com/airockchip)/[yolov5](https://github.com/airockchip/yolov5) 使用 ```python python export.py --rknpu rk3399pro ``` 命令成功导出了 yolov5s.torchscript , 然后在rknn-toolkit-1.7.0 的docker里,进入 ```shell rknn_model_zoo/models/CV/object_detection/yolo/RKNN_model_convert ``` yolov5_yolov7.yml内容为: ```shell model_name: yolov5_yolov7 model_framework: pytorch model_file_path: yolov5s.torchscript RK_device_platform: RK3399PRO RK_device_id: simulator dataset:...