How can I replicate the process of running TextBoxes in caffe installed in an Anaconda3 environment? Caffe was simply installed using the conda install -c anaconda caffe. Caffe can be successfully imported and it can run a simple network with mnist. Now, caffe is found in /home/anaconda3/envs/caffe as the output of the command whereis caffe.
But the file structure is different from the usual caffe installation. I'm really confused on how to properly run demo.py.
Do I have to edit the makefile.config?
Which paths should go into CAFFE_ROOT and PYTHONPATH?
Note:
TextBoxes is cloned here:
How can I replicate the process of running TextBoxes in caffe installed in an Anaconda3 environment? Caffe was simply installed using the
conda install -c anaconda caffe
. Caffe can be successfully imported and it can run a simple network with mnist. Now, caffe is found in /home/anaconda3/envs/caffe as the output of the commandwhereis caffe
. But the file structure is different from the usual caffe installation. I'm really confused on how to properly run demo.py.