Skip to content

Latest commit

 

History

History
77 lines (55 loc) · 4.86 KB

index.md

File metadata and controls

77 lines (55 loc) · 4.86 KB
layout
default

Welcome to Caffe

Caffe is a framework for convolutional neural network algorithms, developed with speed in mind. It was created by Yangqing Jia, and is in active development by the Berkeley Vision and Learning Center.

Caffe is released under the BSD 2-Clause license.

Why Caffe?

Caffe aims to provide computer vision scientists and practitioners with a clean and modifiable implementation of state-of-the-art deep learning algorithms. For example, network structure is easily specified in separate config files, with no mess of hard-coded parameters in the code.

At the same time, Caffe fits industry needs, with blazing fast C++/CUDA code for GPU computation. Caffe is currently the fastest GPU CNN implementation publicly available, and is able to process more than 40 million images per day with a single NVIDIA K40 or Titan GPU (or 20 million images per day on a K20 GPU)*. That's 192 images per second during training and 500 images per second during test.

Caffe also provides seamless switching between CPU and GPU, which allows one to train models with fast GPUs and then deploy them on non-GPU clusters with one line of code: Caffe::set_mode(Caffe::CPU). Even in CPU mode, computing predictions on an image takes only 20 ms when images are processed in batch mode. While in GPU mode, computing predictions on an image takes only 2 ms when images are processed in batch mode.

Documentation

  • Introductory slides: slides about the Caffe architecture, updated 03/14.
  • Installation: Instructions on installing Caffe (works on Ubuntu, Red Hat, OS X).
  • Pre-trained models: BVLC provides some pre-trained models for academic / non-commercial use.
  • Development: Guidelines for development and contributing to Caffe.

Examples

Citing Caffe

Please kindly cite Caffe in your publications if it helps your research:

@misc{Jia13caffe,
   Author = {Yangqing Jia},
   Title = { {Caffe}: An Open Source Convolutional Architecture for Fast Feature Embedding},
   Year  = {2013},
   Howpublished = {\url{http://caffe.berkeleyvision.org/}
}

Acknowledgements

Yangqing would like to thank the NVIDIA Academic program for providing K20 GPUs, and Oriol Vinyals for various discussions along the journey.

A core set of BVLC members have contributed lots of new functionality and fixes since the original release (alphabetical by first name):

Additionally, the open-source community plays a large and growing role in Caffe's development. Check out the Github project pulse for recent activity, and the contributors for an ordered list (by commit activity). We sincerely appreciate your interest and contributions! If you'd like to contribute, read this.


*: When measured with the SuperVision model that won the ImageNet Large Scale Visual Recognition Challenge 2012. See performance and hardware configuration details.