-
Notifications
You must be signed in to change notification settings - Fork 61
Description
For Acceleration, I modified the body net(res50) in the prototxt and added some custom caffe layers(it works fine and passed some tests already)and
now I'm trying to train FastMask from the scratch with COCO(without pre trained res-50 model).
Currently, I put coco data in an external hard disk)
/home/lee/FastMask/... << git cloned.
/home/lee/caffe ... << my own caffe ( I use this caffe. I copied all the files committed by voidrank to here, and compiled successfully).
/media/lee/xxxxxx/coco/... << coco data here.
lee@lee-All-Series:~/FastMask$ python train.py 0 fm-res39
I already modified the train.py to know where is my caffe and coco API.
sys.path.append(os.path.abspath("/home/lee/coco/PythonAPI"))
sys.path.append(os.path.abspath("/home/lee/caffe/python"))
sys.path.append(os.path.abspath("python_layers"))
sys.path.append(os.path.abspath("/home/lee/FastMask"))
and finally, I faced errors as below.
WARNING: Logging before InitGoogleLogging() is written to STDERR
E0830 01:31:46.447471 2199 common.cpp:114] Cannot create Cublas handle. Cublas won't be available.
E0830 01:31:46.448586 2199 common.cpp:121] Cannot create Curand generator. Curand won't be available.
F0830 01:31:46.449659 2199 common.cpp:152] Check failed: error == cudaSuccess (30 vs. 0) unknown error
*** Check failure stack trace: ***
Aborted (core dumped)
Is this because I put coco data in a ext disk?
I wonder, if I put coco data in an external disk, how can I make it to know where it is? there is no option for it.
or can you guys guess what is the reason?
Please help me.