-
Notifications
You must be signed in to change notification settings - Fork 87
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
About misjudgment measures #18
Comments
Hi, "Or, I would like to make a change so that the same detection result will be the detection result for the first time three consecutive times, where should I fix the code?" - this solution also seems like a hack for me, only difference is that maybe it is easier to implement. Please have a look at the YOLOClassifier.java and put breakpoints into the classifyImage() method and try to investigate the results what you get. Probably it is easier to debug the YOLOClassifier.java by using this implementation: https://github.com/szaza/tensorflow-example-java; This application also uses the YOLOClassifier, however you can specify the input images one by one. Best wishes for your work and please notify me about your results! Best regards, |
Thank you for your reply. Keides2 |
@szaza |
Hi, |
Hi @szaza, Long-time no see. Since the object detection judgment is quick, the following improvements have been made. [specification] The modified code is as follows:
Thank you, |
Hi, |
@szaza
Hi,
The results learned with darknet are very good results (loss = 0.15, avg loss = 0.13, precison = 0.87, recall = 0.97, F1 - score = 0.92, mAP = 0.96), but converting the weights file to a pb file afterwards, when this pb file is loaded on andoroid-yolo-v2 and detection of an object is done, it reacts too quickly and classifies the photographed object instantly, so it seems to be erroneously judging .
Can I change the code so that object detection starts after the same object appears for 1 second or more?
Or, I would like to make a change so that the same detection result will be the detection result for the first time three consecutive times, where should I fix the code?
Thnak you in advance,
keides2
The text was updated successfully, but these errors were encountered: