Package Base Details: caffe-git

Git Clone URL: https://aur.archlinux.org/caffe-git.git (read-only, click to copy)
Keywords: ai artificial cuda intelligence nvidia
Submitter: jyantis
Maintainer: dbermond
Last Packager: dbermond
Votes: 23
Popularity: 0.000000
First Submitted: 2014-12-08 01:10 (UTC)
Last Updated: 2022-03-01 14:46 (UTC)

Latest Comments

« First ‹ Previous 1 2 3 4 5 6 Next › Last »

gunterb14 commented on 2015-08-19 15:35 (UTC)

liblmdb has been renamed to lmdb

Mikaye commented on 2015-07-12 19:41 (UTC)

Can't use it from C++: caffe/proto/caffe.pb.h is missing Did you forget to install it in the package?

atomicpookavirus commented on 2015-07-11 20:17 (UTC)

makepkg -C fixed my issue

atomicpookavirus commented on 2015-07-11 17:09 (UTC)

I get this error. http://pastebin.com/5cU5wDjr fatal: Not a git repository (or any parent up to mount point /tmp) Stopping at filesystem boundary (GIT_DISCOVERY_ACROSS_FILESYSTEM not set). ==> ERROR: Failure while updating working copy of caffe git repo Aborting...

s-ol commented on 2015-07-08 00:39 (UTC)

had to install openexr and ilmbase seperately, still compiling now...

jyantis commented on 2015-04-12 07:47 (UTC)

ahh great to hear. I just tested it myself and it installed OK. As for the extra 232MB you are right it should be in its own package. I believe at the time I put it there was so a user could test to make sure it works. (It has something like 2.2 GB of dependencies already so it would be good to slim it down if possible).

confusedfla commented on 2015-04-12 07:39 (UTC)

update: I had to remove the caffe-git package with pacman - then the build worked fine again :)

confusedfla commented on 2015-04-12 05:50 (UTC)

I get the following error when building - has anyone an idea what could be the reason? And btw do we really need to bundle the entire "bvlc_reference_caffenet" model - imho those 232MB should be optional ;-) CXX/LD -o .build_release/tools/net_speed_benchmark.bin /usr/lib/libcaffe.so: undefined reference to `gflags::ParseCommandLineFlags(int*, char***, bool)' collect2: error: ld returned 1 exit status Makefile:545: recipe for target '.build_release/tools/finetune_net.bin' failed make: *** [.build_release/tools/finetune_net.bin] Error 1 make: *** Waiting for unfinished jobs.... /usr/lib/libcaffe.so: undefined reference to `gflags::ParseCommandLineFlags(int*, char***, bool)' collect2: error: ld returned 1 exit status Makefile:545: recipe for target '.build_release/tools/caffe.bin' failed make: *** [.build_release/tools/caffe.bin] Error 1 /usr/lib/libcaffe.so: undefined reference to `gflags::ParseCommandLineFlags(int*, char***, bool)' collect2: error: ld returned 1 exit status Makefile:545: recipe for target '.build_release/tools/convert_imageset.bin' failed make: *** [.build_release/tools/convert_imageset.bin] Error 1 /usr/lib/libcaffe.so: undefined reference to `gflags::ParseCommandLineFlags(int*, char***, bool)' collect2: error: ld returned 1 exit status Makefile:545: recipe for target '.build_release/tools/upgrade_net_proto_text.bin' failed make: *** [.build_release/tools/upgrade_net_proto_text.bin] Error 1 /usr/lib/libcaffe.so: undefined reference to `gflags::ParseCommandLineFlags(int*, char***, bool)' collect2: error: ld returned 1 exit status Makefile:545: recipe for target '.build_release/tools/compute_image_mean.bin' failed make: *** [.build_release/tools/compute_image_mean.bin] Error 1 /usr/lib/libcaffe.so: undefined reference to `gflags::ParseCommandLineFlags(int*, char***, bool)' collect2: error: ld returned 1 exit status Makefile:545: recipe for target '.build_release/tools/train_net.bin' failed make: *** [.build_release/tools/train_net.bin] Error 1 /usr/lib/libcaffe.so: undefined reference to `gflags::ParseCommandLineFlags(int*, char***, bool)' collect2: error: ld returned 1 exit status Makefile:545: recipe for target '.build_release/tools/net_speed_benchmark.bin' failed make: *** [.build_release/tools/net_speed_benchmark.bin] Error 1 /usr/lib/libcaffe.so: undefined reference to `gflags::ParseCommandLineFlags(int*, char***, bool)' collect2: error: ld returned 1 exit status Makefile:545: recipe for target '.build_release/tools/device_query.bin' failed make: *** [.build_release/tools/device_query.bin] Error 1

jyantis commented on 2015-02-24 10:40 (UTC)

hollowrld: It seems to be having a lot of issues right now. The latest build does not compile period on my test box. Will check again tomorrow and if it is still broken I will modify the C++ and Python code and include a patch. The issue you are talking about there is an open issue for it as of 6 hours ago. https://github.com/BVLC/caffe/issues/1949 As for the testing. I have commented it out for now and submitted a new PKGBUILD. You can try that one. The reason I don't use "make runtest" is that I find those type of tests fail on different peoples machines (especially with 800+ tests) and then the build doesn't install. So I include them but comment them out in the PKGBUILD so a user that wants to run them can. Also, they don't actually tell you if it worked or not. So quickly classifying a cat image is a quick win to show it actually is working and installed properly.

hllowrld commented on 2015-02-24 05:42 (UTC)

After installing, I'm seeing: ==> Starting check()... Traceback (most recent call last): File "python/classify-print-results.py", line 162, in <module> main(sys.argv) File "python/classify-print-results.py", line 115, in main channel_swap=channel_swap) TypeError: __init__() got an unexpected keyword argument 'gpu' Maybe this is due to an API change? May I ask why we don't simply run `make runtest`?