Open sntaus opened 7 years ago
In my case, demo was not working and causing Segmentation Fault error for Tensor flow version 1.0.1. I tried the same on an older version i.e 0.12.0 and it worked there. In the search of the solution, I found this. It worked out for me. Uninstall numpy and reinstall it using the below command: pip install --no-binary=:all: numpy Hope it helps.
@jaig Your solution works for me. Thank you!
@jaig I have the same problem.But when i try your solution, result is below
Requirement already satisfied: numpy in /home/gpf/Soft/anaconda3/envs/py27/lib/python2.7/site-packages (1.13.3) tensorflow 1.4.1 requires backports.weakref>=1.0rc1, which is not installed. tensorflow 1.4.1 has requirement tensorflow-tensorboard<0.5.0,>=0.4.0rc1, but you'll have tensorflow-tensorboard 0.1.5 which is incompatible.
I set up everything following the tutorials and then tried to train it using -
./experiments/scripts/faster_rcnn_end2end.sh gpu 0 VGG16 pascal_voc
, but I keep getting aSegmentation Fault (Core Dumped)
every time.Here's what I get on my Terminal when I run the command:
I got the exact same error (Segmentation Fault) when I tried to train using the official python (caffe) implementation of Faster RCNN - rbgirshick/py-faster-rcnn. It seems like I get the error at -
from datasets.factory import get_imdb
(tools/train_net.py
Line 17). So, at this moment I couldn't get either of the two Faster RCNN implementations to train on my machine.Please note - demo.py works fine!
Full disclosure: I'm very new to deep learning, so my apologies if this could have been caused by a stupid error on my part.