does anyone knows how to convert Yolov2 tiny model to onnx. Please help me in it.
does anyone knows how to convert Yolov2 tiny model to onnx. Please help me in it.
If you're using a YOLOv2 model trained in Darknet, you will need the weights and configuration files (yolov2-tiny.weights
and yolov2-tiny.cfg
). You'll convert the YOLOv2 model to PyTorch first, as PyTorch has built-in support to export models to ONNX. You'll need to install the ONNX library to export models.