Meta Byte Track
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

README.md 564B

12345678910111213141516171819
  1. ## ByteTrack-ONNXRuntime in Python
  2. This doc introduces how to convert your pytorch model into onnx, and how to run an onnxruntime demo to verify your convertion.
  3. ### Convert Your Model to ONNX
  4. ```shell
  5. cd <ByteTrack_HOME>
  6. python3 tools/export_onnx.py --output-name bytetrack_s.onnx -f exps/example/mot/yolox_s_mix_det.py -c pretrained/bytetrack_s_mot17.pth.tar
  7. ```
  8. ### ONNXRuntime Demo
  9. You can run onnx demo with **16 FPS** (96-core Intel(R) Xeon(R) Platinum 8163 CPU @ 2.50GHz):
  10. ```shell
  11. cd <ByteTrack_HOME>/deploy/ONNXRuntime
  12. python3 onnx_inference.py
  13. ```