-
Notifications
You must be signed in to change notification settings - Fork 20
Description
I have successfully compiled the code. But when I run it, I met segmentation fault and the program finished unexpectly:
layer {
name: "fc8_interp"
type: "Interp"
bottom: "fc8_voc12"
top: "fc8_interp"
interp_param {
zoom_factor: 8
}
}
layer {
name: "crf"
type: "DenseCRF"
bottom: "fc8_interp"
bottom: "data_dim"
bottom: "data"
top: "crf_inf"
include {
phase: TEST
}
dense_crf_param {
max_iter: 30
pos_xy_std: 2
pos_w: 2
bi_xy_std: 65
bi_rgb_std: 3
bi_w: 4
}
}
layer {
name: "crf_interp_argmax"
type: "ArgMax"
bottom: "crf_inf"
top: "crf_interp_argmax"
argmax_param {
axis: 1
}
}
I0701 16:02:11.589815 7097 layer_factory.hpp:77] Creating layer data
I0701 16:02:11.589840 7097 net.cpp:106] Creating Layer data
I0701 16:02:11.589846 7097 net.cpp:411] data -> data
I0701 16:02:11.589864 7097 net.cpp:411] data -> label
I0701 16:02:11.589874 7097 net.cpp:411] data -> data_dim
I0701 16:02:11.589885 7097 image_seg_data_layer.cpp:46] Opening file ./data/temp/temp.txt
I0701 16:02:11.589905 7097 image_seg_data_layer.cpp:68] A total of 0 images.
The program has unexpectedly finished.