TF_Deformable_Net
TF_Deformable_Net copied to clipboard
Deformable convolution net on Tensorflow
Thanks a lot for the great lib! I'm trying to follow your work, yet facing some problems. When I tried to compile, an error notice is shown as following: /home/siyangyuan/anaconda3/envs/tf14/lib/python3.5/site-packages/tensorflow/include...
make.sh: 35: make.sh: nvcc: not found g++: error: roi_pooling_op.cu.o: No such file or directory make.sh: 50: make.sh: nvcc: not found g++: error: psroi_pooling_op.cu.o: No such file or directory make.sh: 64:...
deform_conv.so: undefined symbol: _ZN10tensorflow8internal21CheckOpMessageBuilder9NewStringB5cxx11Ev
does anyone meet this problem? ``` #!/usr/bin/env bash TF_INC=$(python -c 'import tensorflow as tf; print(tf.sysconfig.get_include())') TF_LIB=$(python -c 'import tensorflow as tf; print(tf.sysconfig.get_lib())') NSYNC_INC=$TF_INC"/external/nsync/public" # please modify $ARCH according to the...
I was running the following command: python faster_rcnn/train_net.py --gpu 0 --weights ./data/pretrain_mod el/Resnet50.npy --imdb voc_2007_trainval --iters 70000 --cfg ./experiments/cfgs/faster_rcnn_end2end_resnet.yml --network Resnet50_train --set EXP_DIR exp_dir when I got this error: **File...
Hello, I follow the tutorial to train the network with ResNet50 setting. The training runs from 125K iterations and the losses are reduced (final loss is around 1.9). But when...
This is my make.sh cd deform_conv_layer nvcc -std=c++11 -ccbin=/usr/bin/g++-4.8 -c -o deform_conv.cu.o deform_conv.cu.cc -I $TF_INC -I $NSYNC_INC -D \GOOGLE_CUDA=1 -x cu -Xcompiler -fPIC -L /usr/lib32/ --expt-relaxed-constexpr -arch=$ARCH g++-4.8 -std=c++11 -shared...
Recently MSRA published their paper about DCN v2 and released their code about v2 op, would you like to change it to tf version? What's more, when I init the...
Hi Thanks so much for sharing your work, Any suggestions on how i may go about training on my own dataset? Thanks in advance
@Zardinality First I want to thank you for your work. Then I have a question. I want to use deformable convolution and deformable pooling on Windows 10. I saw you...
Hello, Can we add deformable convolution at different places? More specifically, for ResNet50, can we add it to the 4th stage, i.e. res4a, 4b, 4c, etc. Do we simply add...