Object detection using tensorflow object detection api
I had two questions regarding the tensorflow object detection api: a) Whenever I run the code provided in either jupyter notebook or spyder, my kernel keeps crashing. I am using windows os. Why is this so and how can it be rectified?
b) How can I calculate mean average precision for object detection using the tensorflow api?
You must be logged in to post. Please login or register an account.
a) Maybe you're running out of memory, need more information though.
b) same way as anywhere: Precision = Number of true positives /(number of true positives + number of false positives)
-Harrison 6 years ago
You must be logged in to post. Please login or register an account.