All Projects → leo2105 → Caffe-installation-Raspberry-Pi-3

leo2105 / Caffe-installation-Raspberry-Pi-3

Licence: other
No description or website provided.

Projects that are alternatives of or similar to Caffe-installation-Raspberry-Pi-3

Stochastic-Quantization
Training Low-bits DNNs with Stochastic Quantization
Stars: ✭ 70 (+204.35%)
Mutual labels:  caffe
caffe example
install script and example for clCaffe which will run caffe by OpenCL (this is for https://github.com/01org/caffe/tree/inference-optimize)
Stars: ✭ 12 (-47.83%)
Mutual labels:  caffe
ppq
PPL Quantization Tool (PPQ) is a powerful offline neural network quantization tool.
Stars: ✭ 281 (+1121.74%)
Mutual labels:  caffe
PCN-Windows
No description or website provided.
Stars: ✭ 21 (-8.7%)
Mutual labels:  caffe
caffe-mobilenet v2
caffe based mobilenet v2 deploy
Stars: ✭ 29 (+26.09%)
Mutual labels:  caffe
Deeplearning-digital-pathology
Full package for applying deep learning to virtual slides.
Stars: ✭ 59 (+156.52%)
Mutual labels:  caffe
caffe-unet-docker
The U-Net Segmentation server (caffe_unet) for Docker
Stars: ✭ 25 (+8.7%)
Mutual labels:  caffe
Deep-Reinforcement-Learning-CS285-Pytorch
Solutions of assignments of Deep Reinforcement Learning course presented by the University of California, Berkeley (CS285) in Pytorch framework
Stars: ✭ 104 (+352.17%)
Mutual labels:  berkeley
Classification Nets
Implement popular models by different DL framework. Such as tensorflow and caffe
Stars: ✭ 17 (-26.09%)
Mutual labels:  caffe
deep-parking
Code to reproduce 'Deep Learning for Decentralized Parking Lot Occupancy Detection' paper.
Stars: ✭ 81 (+252.17%)
Mutual labels:  caffe
fooddist
An open-source food image embedding model
Stars: ✭ 26 (+13.04%)
Mutual labels:  caffe
Caffe BEGAN
Caffe/C++ implementation of Boundary Equilibrium Generative Adversarial Networks paper for face generation
Stars: ✭ 22 (-4.35%)
Mutual labels:  caffe
yolov5 onnx2caffe
yolov5 onnx caffe
Stars: ✭ 73 (+217.39%)
Mutual labels:  caffe
fpga caffe
No description or website provided.
Stars: ✭ 116 (+404.35%)
Mutual labels:  caffe
superpixelRefinement
Superpixel-based Refinement for Object Proposal Generation (ICPR 2020)
Stars: ✭ 24 (+4.35%)
Mutual labels:  caffe
BBB-routing
🅱🅱🅱-routing - a simulation of Network layer protocols with Byzantine Robustness
Stars: ✭ 15 (-34.78%)
Mutual labels:  berkeley
deep-learning-platforms
deep-learning platforms,framework,data(深度学习平台、框架、资料)
Stars: ✭ 17 (-26.09%)
Mutual labels:  caffe
theWorldInSafety
Surveillance System Against Violence
Stars: ✭ 31 (+34.78%)
Mutual labels:  caffe
adversarial-attacks
Code for our CVPR 2018 paper, "On the Robustness of Semantic Segmentation Models to Adversarial Attacks"
Stars: ✭ 90 (+291.3%)
Mutual labels:  caffe
TrainCaffeCustomDataset
Transfer learning in Caffe: example on how to train CaffeNet on custom dataset
Stars: ✭ 20 (-13.04%)
Mutual labels:  caffe

Caffe installation in Raspberry Pi 3

This is a installation of caffe in raspberry pi

Installation of dependencies

sudo apt-get update && sudo apt-get upgrade

sudo apt-get install -y gfortran cython

sudo apt-get install -y libprotobuf-dev libleveldb-dev libsnappy-dev libopencv-dev libhdf5-serial-dev protobuf-compiler git

sudo apt-get install --no-install-recommends libboost-all-dev

sudo apt-get install -y python-dev libgflags-dev libgoogle-glog-dev liblmdb-dev libatlas-base-dev python-skimage

sudo pip install pyzmq jsonschema pillow numpy scipy ipython jupyter pyyaml

Install caffe

git clone https://github.com/BVLC/caffe

cd caffe

cp Makefile.config.example Makefile.config

sudo nano Makefile.config

Modify next lines, instead of these

'#'CPU_ONLY := 1

/usr/lib/python2.7/dist-packages/numpy/core/include

INCLUDE_DIRS := $(PYTHON_INCLUDE) /usr/local/include

LIBRARY_DIRS := $(PYTHON_LIB) /usr/local/lib /usr/lib

with

CPU_ONLY := 1

/usr/local/lib/python2.7/dist-packages/numpy/core/include

INCLUDE_DIRS := $(PYTHON_INCLUDE) /usr/local/include /usr/include/hdf5/serial/

LIBRARY_DIRS := $(PYTHON_LIB) /usr/local/lib /usr/lib /usr/lib/arm-linux-gnueabihf/hdf5/serial/

Put in your terminal

make all

make test

make runtest

make pycaffe

./scripts/download_model_binary.py models/bvlc_googlenet

sudo nano ~/.bashrc

export PYTHONPATH=/home/pi/caffe/python:$PYTHONPATH // Add at the end of file

Protobuf installation

cd ~/caffe

cd python

python setup.py build

python setup.py google_test

sudo python setup.py install

Example Web Demo in Caffe

will continue

Thanks to Knight of Pi :

http://www.knight-of-pi.org/deepdream-on-the-raspberry-pi-3-with-raspbian-jessie/

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].