https://github.com/BVLC/caffe
Raw File
Tip revision: 19a7e23cccb1b2f07b61ccbb11341ac85d37b9b1 authored by Evan Shelhamer on 20 March 2014, 05:29:17 UTC
fix script path incantation
Tip revision: 19a7e23
.gitignore
## General

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

# 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
*.mexa64
*.mexmaci64

# build, distribute, and bins
build/*
distribute/*
*.testbin
*.bin

# Editor temporaries
*.swp
*~

# IPython notebook checkpoints
.ipynb_checkpoints

## Caffe

# User's build configuration
Makefile.config

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

# Don't version the generated documentation
docs/_site
_site
back to top