-
Notifications
You must be signed in to change notification settings - Fork 25
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
Problem with Makefile #8
Comments
Sounds like you have linking problems. Can you double check you're linking to the tensorflow you're running it in? |
I changed this variable TF_INC="/home/firiuza/anaconda3/envs/yad2k/lib/python3.6/site-packages/tensorflow/include" in Makefile. So I think I have the right link. Thanks! |
@Firyuza Did you fix the problem? |
@EkaterinaPogodina Unfortunately, I couldn't fix it. But I converted this C++ code that requires build into Tensorflow. |
You did the matching with tf ops? Sounds great! Can you share that? |
I had to compile roi pooling layer with "-D_GLIBCXX_USE_CXX11_ABI=0" parameter due to GCC version >= 5 to avoid this issue. |
@hosang I'm not sure that I did right conversion, but I tested it and it works. Hope you will understand my code, because it's not so easy to read :( matching loss find the ground truth box for each detection that has maximum IoU
add extra item at the end of tensor for labels and weights
save indices of ground truth that match to detections
add extra item at the end of tensor for labels and weights
|
@hosang is there any dependency on the Tensorflow version ? |
I use the following tf version, which fixes a lot of issues. FYI. |
@hosang I also have the same error. Is there any dependency on the Tensorflow version? |
If it is of any help, here is what worked for me (TensorFlow 1.14) Issue #12 . |
@SchroeterJulien Please see #14, I successfully run the code (TF 1.12.0) |
Hello!
I did
make
and in terminal I just saw the warnings, no errors. But when I tried to debug train.py I get such error:tensorflow.python.framework.errors_impl.NotFoundError: ~/nms_net/roi_pooling_layer/roi_pooling.so: undefined symbol: _ZN10tensorflow7strings6StrCatB5cxx11ERKNS0_8AlphaNumE
Thanks!
The text was updated successfully, but these errors were encountered: