-
Notifications
You must be signed in to change notification settings - Fork 189
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Too slow on web server #6
Comments
I know that the efficiency of Faster RCNN is fairly limited. I started with it because of its high accuracy. I need enough accuracy to design the algorithm for this project. Since I already got a basic structure now, I really should find a way to improve the inference time of each frame. Changing the model to yolov4 would be a really nice approach! I will work on it once I got time. Thanks! |
this is a comparison of accuracy and process speed between different object detection model from this article
No matter speed or acc, yolo3 > fast R-CNN, we even use better version of yolo3 (yolo4). |
Fun story, this model is very great. US military use this model on drone to automatically identify enemy and fire them. Because of this application, the author of yolo4 give up object detection field and switch to other research area. |
hey guys can yall gimme a little advice so i can move in the field of machine learning and deep learning |
@AditSoni Hey, can you please tell me what error message did you get? |
and now I have got a new error: Something went wrong when importing OpenPose |
@AditSoni Hi, I think this problem has something to do with your environment setup, please try it on Windows or Ubuntu. |
@AditSoni Hi, please start a new issue if you encounter any further problems. Thanks! |
Since Fast RCNN is a very CPU-bound object detection model, it loop over all sub image to find out possible. Although it does a lot optimization like Dynamic Programming. It still not a good fit on real time object detection.
I recommend you to use yolo4. I is the fastest object detection right now If I am not wrong.
There is python API in file
darknet.py
. Since I don't have datasets for training, I cannot help you to training deep learning model. Sorry~The text was updated successfully, but these errors were encountered: