https://github.com/BVLC/caffe
Raw File
Tip revision: 3f2b97e93ed5ab612b6d00995294e37a422f0931 authored by Fabian Tschopp on 10 July 2018, 11:32:15 UTC
Merge pull request #6456 from samuelwx/deconv
Tip revision: 3f2b97e
.gitignore
## General

# Fuse files
*.fuse*

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

# Compiled Dynamic libraries
*.so
*.dylib
*.dll

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

# Compiled Executables
*.exe

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

# Compiled python
*.pyc
*.pyd

# Compiled MATLAB
*.mex*

# IPython notebook checkpoints
.ipynb_checkpoints

# Editor temporaries
*.swp
*~

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

# Eclipse Project settings
*.*project
.settings

# QtCreator files
*.user

# PyCharm files
.idea

# Visual Studio Code files
.vscode

# OSX dir files
.DS_Store

## Caffe

# User's build configuration
Makefile.config

# Data and models are either
# 1. reference, and not casually committed
# 2. custom, and live on their own unless they're deliberated contributed
data/*
models/*
*.caffemodel
*.caffemodel.h5
*.solverstate
*.solverstate.h5
*.binaryproto
*leveldb
*lmdb

# build, distribute, and bins (+ python proto bindings)
cmake_build
build
build_opencl
build_cuda
build_arm
build_64
.build_opencl
.build_cuda
.build_arm
.build_64
.build
.build_debug/*
.build_release/*
distribute/*
*.testbin
*.bin
python/caffe/proto/
cmake_build
.cmake_build
*.gen.cmake
.libdnn_debug
.caffe_debug

# Generated documentation
docs/_site
docs/_includes
docs/gathered
_site
doxygen
docs/dev

# LevelDB files
*.sst
*.ldb
LOCK
LOG*
CURRENT
MANIFEST-*

# Visual Studio files
*.user
*.suo
*.sdf
*.opensdf
*.pdb
*.props

# Log files
log*.txt
error*.txt
*.ffs_db
back to top