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
Hello folks, I would like to start a topic explaining questions that some of you have already asked. So far, in the **OD API**, only SSD model can be converted...
Hello, does the model support mosaic data enhancement?
Hi, Thank you for a great repository. I am trying to execute the save_model.py file to generate tensorflow model for yolov4-416 original model and then converting it to tflite model...
Hi tf2.3.0 is working on CPU and GPU but it is slow to detect on yolov4-tiny-416. So, I move to use tf2.7 instead it works on CPU but **GPU does...
After saving the model, running detection with 'python detect.py --weights ./checkpoints/yolov4-416 --size 416 --model yolov4 --images ./data/images/kite.jpg' give me an error of: ` cv2.error: OpenCV(4.5.2) :-1: error: (-5:Bad argument) in...
I'm also having issues as well it's giving this error: cv2.error: OpenCV(4.6.0) :-1: error: (-5:Bad argument) in function 'CascadeClassifier' >Overload resolution failed: > - Can't convert object to 'str' for...
Hi, i have successfully implemented yolo tiny on android. Is there a way to get boundingbox coordinates when predicting an image? My aim is to calculate the distance between one...
I find the train set val2017 is in [x1,y1,x2,y2,id] ,but the in detect,py's func (draw_bbox), ` coor[0] = int(coor[0] * image_h) coor[2] = int(coor[2] * image_h) coor[1] = int(coor[1] *...
Hello everyone. I need to get a tflite model from the weight obtained with the workouts (.weight), but this weight occupies about 200 MB, so when transforming this into tflite...