-
Notifications
You must be signed in to change notification settings - Fork 30
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
how to user this model2 with detection api because here .pb file is not available #10
Comments
Seems you've got it to run but your graphic card seems to have too little memory to handle the model. Best regards |
Hi @daniel that problem has been solved issue is that which .pb file is created how to use it for detection. Best regards with detection_graph.as_default(): label_map = label_map_util.load_labelmap("./label.txt") with detection_graph.as_default():
print (image_np)
out.write(image_np)
print(classes)print(scores)
cap.release() |
this error is after running that script KeyError: "The name 'image_tensor:0' refers to a Tensor which does not exist. The operation, 'image_tensor', does not exist in the graph." |
These kinds of issues are hard to solve as you need to read your graph and find what the actual inputs should be called. Maybe Tensorboard can help you there. Best regards |
could you tell me the steps to train a datasets that is really big open_images_v4. |
I've not tried it myself and maybe I will look into it in the future and create a video to describe the workflow. But in the meantime, I found that some people had made a tutorial of how they built one of the datasets. https://algorithmia.com/blog/deep-dive-into-object-detection-with-open-images-using-tensorflow Maybe that could be an inspiration for you. Best regards |
2019-10-23 10:55:06.715141: W tensorflow/core/framework/allocator.cc:107] Allocation of 25690112 exceeds 10% of system memory.
The text was updated successfully, but these errors were encountered: