https://github.com/BVLC/caffe
Raw File
Tip revision: 709dc15af4a06bebda027c1eb2b3f3e3375d5077 authored by Evan Shelhamer on 08 August 2014, 19:06:41 UTC
Merge pull request #880 from BVLC/next
Tip revision: 709dc15
.gitignore
## General

# Compiled Object files
*.slo
*.lo
*.o
*.cuo

# Compiled Dynamic libraries
*.so
*.dylib

# Compiled Static libraries
*.lai
*.la
*.a

# Compiled protocol buffers
*.pb.h
*.pb.cc
*_pb2.py

# Compiled python
*.pyc

# Compiled MATLAB
*.mex*

# build, distribute, and bins
build
.build_debug/*
.build_release/*
distribute/*
*.testbin
*.bin
python/caffe/proto/

# Editor temporaries
*.swp
*~

# IPython notebook checkpoints
.ipynb_checkpoints

## Caffe

# User's build configuration
Makefile.config

# Data and examples are either
# 1. reference, and not casually committed
# 2. custom, and live on their own unless they're deliberated contributed
data/*
examples/*

# Generated documentation
docs/_site
docs/gathered
_site

# Sublime Text settings
*.sublime-workspace
*.sublime-project

back to top