Diff of /.gitignore [000000] .. [a378de]

Switch to unified view

a b/.gitignore
1
# For this repo
2
3
models/
4
results/
5
dataset/
6
logs/
7
training2017/
8
*.zip
9
10
# macOS
11
12
.DS_Store
13
14
15
# limit language detection in Github repo 
16
.gitattributes
17
18
19
###
20
# Python gitignore 
21
###
22
23
# Byte-compiled / optimized / DLL files
24
__pycache__/
25
*.pyc
26
*.py[cod]
27
*$py.class
28
29
# C extensions
30
*.so
31
32
# Distribution / packaging
33
.Python
34
build/
35
develop-eggs/
36
dist/
37
downloads/
38
eggs/
39
.eggs/
40
lib/
41
lib64/
42
parts/
43
sdist/
44
var/
45
wheels/
46
*.egg-info/
47
.installed.cfg
48
*.egg
49
MANIFEST
50
51
# PyInstaller
52
#  Usually these files are written by a python script from a template
53
#  before PyInstaller builds the exe, so as to inject date/other infos into it.
54
*.manifest
55
*.spec
56
57
# Installer logs
58
pip-log.txt
59
pip-delete-this-directory.txt
60
61
# Unit test / coverage reports
62
htmlcov/
63
.tox/
64
.coverage
65
.coverage.*
66
.cache
67
nosetests.xml
68
coverage.xml
69
*.cover
70
.hypothesis/
71
.pytest_cache/
72
73
# Translations
74
*.mo
75
*.pot
76
77
# Django stuff:
78
*.log
79
local_settings.py
80
db.sqlite3
81
82
# Flask stuff:
83
instance/
84
.webassets-cache
85
86
# Scrapy stuff:
87
.scrapy
88
89
# Sphinx documentation
90
docs/_build/
91
92
# PyBuilder
93
target/
94
95
# Jupyter Notebook
96
.ipynb_checkpoints
97
98
# pyenv
99
.python-version
100
101
# celery beat schedule file
102
celerybeat-schedule
103
104
# SageMath parsed files
105
*.sage.py
106
107
# Environments
108
.env
109
.venv
110
env/
111
venv/
112
ENV/
113
env.bak/
114
venv.bak/
115
116
# Spyder project settings
117
.spyderproject
118
.spyproject
119
120
# Rope project settings
121
.ropeproject
122
123
# mkdocs documentation
124
/site
125
126
# mypy
127
.mypy_cache/