tensorflow-yolov4-tflite
tensorflow-yolov4-tflite copied to clipboard
YOLOv4, YOLOv4-tiny, YOLOv3, YOLOv3-tiny Implemented in Tensorflow 2.0, Android. Convert YOLO v4 .weights tensorflow, tensorrt and tflite
I trained yolov4 on custom dataset containing two classes for object detection. I then saved the resulting weights to a tensorflow model ( the size of the model was 244.4...
After TF Lite quantization the size of Yolov4 tiny model is reduced indeed. But the latency is increasing. For dynamic-range quantization up to 2-3 times. For int8 - up to...
I converted the yolo v4 model to tensorRT and then ran the demo on the video and got very poor performance, see output below. Running with yolo v4 tiny I...
Doesnt detect anything in tf 2.4.0
I trained YOLOV4-Tiny model over a custom dataset which had three classes. I used main darknet approach:"https://github.com/AlexeyAB/darknet#yolo-v4-in-other-frameworks" in order to train/test the model, and it detects and predicts very well....
Thank you for providing this great/useful code! Now I try to make the model learn COCO data with the given weights, "yolov4.weights" and my ultimate goal is to do pruning/quantization...
able to detect with- - python detect.py --weights ./flc_asset/flc-tiny-yolo3-int8.tflite --size 416 --model yolov3 --image 1.jpg --framework tflite but i dont think, int8 running properly. As resulted image name is result.png...
I tried to overfit the model by training it with 1 image (also custom class) to see if the model works. However, the detection result is bad compared to using...
For generating label data for e.g. training the network, the COCO label information are translated into YOLO grid cell labels. Doing this, an IOU score was calculated wrongly, mixing up...
Hi, I'm new in android studio so could you help me that how can we add licence_plate_recog.py (https://github.com/Mann1904/Automatic-Number-Plate-Recognition/blob/b54cd57c635bfd123cff5e2ef2a0c6cc06a050ee/license_plate_recognizer.py#L2) on android ?