-
Notifications
You must be signed in to change notification settings - Fork 27
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
Issues in string_int_label_map.pb #11
Comments
For the first question, it seems like you installed several protobuf and use the wrong one. Currently TensorFlow is using the protobuf 3.1.0, so try to remove other versions of protobuf in your computer. The link of how to install the protobuf is here: |
Thanks! |
Try use this commit version of TensorFlow and it should work correctly. |
@JieHe96 i did as you said as it is still not working. ps : after some more reading it appears in the ios code you are checking the version for "3003002 < GOOGLE_PROTOBUF_MIN_PROTOC_VERSION" |
same error, seems it needs 3.3, but on https://www.tensorflow.org/versions/r0.12/get_started/os_setup you will find only 3.1 did someone solve this issue? |
same error +1 |
I solved this problem by cloning the 1.4.0 tensorflow tag. If you check the version of protobuff common that gets included with the 1.4.0 TF tag its Protobuf 3.4.0. Get the correct 3.4.0 binary for your system here: Get the original .proto definition file here: Then run something like: Make sure to use the protoc binary for 3.4.0 that you downloaded above. Then replace the files in the ex_SSD_Mobilenet_TF folder: I might make a PR that provides these changes so others don't have to mess around so much. |
@madhavajay thanks for telling us, I'll try at work time later, |
@madhavajay do I still need to change something in original tensorflow folder? like this There are many points and instructions here, but where to start, what is the obligation to carry out |
@madhavajay solved it, big thanks! didn't need it to change anything in tensorflow 1.4.0 files I just installed protobuf 1.4.0 and only did this
and it worked! |
First, awesome project! 😁
Getting a couple errors with the
string_int_label_map.pb
files included in your project.First is:
Second is:
No member named 'Shutdown' in 'object_detection::protos::StringIntLabelMapItemDefaultTypeInternal'
for:
It seems that these files should've been regenerated when I built tensorflow, but I can't find them in the gen directory.
Any ideas?
Thanks!
The text was updated successfully, but these errors were encountered: