Julien Guillaumin
Julien Guillaumin
Same issue this morning ...
Yes. You have to edit : `/usr/local/lib/python2.7/dist-packages/tensorflow/include/tensorflow/core/platform/default/mutex.h` (path mentioned in your error message). By replacing : ``` #include "nsync_cv.h" #include "nsync_mu.h" ``` By : ``` #include "external/nsync/public/nsync_cv.h" #include "external/nsync/public/nsync_mu.h" ```...
I prefer to modify `make.sh` instead of modifying TensorFlow source code : ``` TF_INC=$(python -c 'import tensorflow as tf; print(tf.sysconfig.get_include())') NSYNC_INC=$TF_INC"/external/nsync/public" CUDA_PATH=/usr/local/cuda/ CXXFLAGS='' if [[ "$OSTYPE" =~ ^darwin ]]; then...
Pull request : https://github.com/smallcorgi/Faster-RCNN_TF/pull/246/commits/218d17a15c2d55e093fd8f41c545744c8b7faebc
In addition, you can encounter some `Undefined symbol` error, while the compilation was done correctly. Same issue, it's due to new compilation rules since Tensorflow 1.x.y ! Correct make file...
Which version of TensorFlow are you using ? On linux ? Built from binaries ? or from source code ?
hummm .. it seems curious. 1/ Did you activate your python env where TensorFlow is installed ?? (like `source activate tensorflow`) 2 / Is there `third_party/eigen3/unsupported/Eigen/CXX11/Tensor` starting from this path...
Hi, I implemented this activation function here: https://github.com/JGuillaumin/one_week_one_paper/tree/master/week_46_drop_activation I also implemented `DropActivation` (better than RReLU !!!)
You should use : pip install --upgrade markdown==2.6.7