You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Aug 11, 2023. It is now read-only.
I am using yolov4-tiny.weights with yolov4-tiny-relu-new_coords.cfg and using yolov4-tiny-relu-new_coords-tpu.cfg convert to tflite with compile.
But the perform on the edgetpu is 60sec per image.
btw,the yolov4-tiny-relu.cfg and yolov4-tiny-relu-tpu.cfg on edgetpu is 0.18 per img.
Yolov4:v3.1.0
tf:2.4.1
The text was updated successfully, but these errors were encountered:
yolov4-tiny-relu-tpu model outputs are 4, x1, logistic(x1), x2, logistic(x2).
and yolov4-tiny-relut-new_coords outputs are 2, logistic(x1), logistic(x2).
So ,in yolov4 3.1.0, if you try to predict new_coords, outputs are 2, but yolov4 try to find 4 outputs, because 3.1.0 don't know new_coords.
Since the computational part is in C, the output difference could probably go beyond the allocated memory and cause problems with the system itself.
I am using yolov4-tiny.weights with yolov4-tiny-relu-new_coords.cfg and using yolov4-tiny-relu-new_coords-tpu.cfg convert to tflite with compile.
But the perform on the edgetpu is 60sec per image.
btw,the yolov4-tiny-relu.cfg and yolov4-tiny-relu-tpu.cfg on edgetpu is 0.18 per img.
Yolov4:v3.1.0
tf:2.4.1
The text was updated successfully, but these errors were encountered: