Diff of /.gitignore [000000] .. [98867e]

Switch to unified view

a b/.gitignore
1
pretrained/
2
.bundle/
3
*.bak
4
*.log
5
*~
6
.~*
7
.pypirc
8
~*
9
tmp*
10
tags
11
12
# Byte-compiled / optimized / DLL files
13
__pycache__/
14
*.py[cod]
15
*$py.class
16
17
# C extensions
18
*.so
19
20
# Distribution / packaging
21
.Python
22
env/
23
build/
24
conda-dist
25
develop-eggs/
26
dist/
27
downloads/
28
eggs/
29
.eggs/
30
lib/
31
lib64/
32
parts/
33
sdist/
34
var/
35
wheels/
36
*.egg-info/
37
.installed.cfg
38
*.egg
39
40
# PyInstaller
41
#  Usually these files are written by a python script from a template
42
#  before PyInstaller builds the exe, so as to inject date/other infos into it.
43
*.manifest
44
*.spec
45
46
# Installer logs
47
pip-log.txt
48
pip-delete-this-directory.txt
49
50
# Unit test / coverage reports
51
htmlcov/
52
.tox/
53
.coverage
54
.coverage.*
55
.cache
56
nosetests.xml
57
coverage.xml
58
*.cover
59
.hypothesis/
60
61
# Translations
62
*.mo
63
*.pot
64
65
# Django stuff:
66
*.log
67
local_settings.py
68
69
# Flask stuff:
70
instance/
71
.webassets-cache
72
73
# Scrapy stuff:
74
.scrapy
75
76
# Sphinx documentation
77
docs/_build/
78
79
# PyBuilder
80
target/
81
82
# Jupyter Notebook
83
.ipynb_checkpoints
84
85
# pyenv
86
.python-version
87
88
# celery beat schedule file
89
celerybeat-schedule
90
91
# SageMath parsed files
92
*.sage.py
93
94
# dotenv
95
.env
96
97
# virtualenv
98
.venv
99
venv/
100
ENV/
101
102
# Spyder project settings
103
.spyderproject
104
.spyproject
105
106
# Rope project settings
107
.ropeproject
108
109
# mkdocs documentation
110
/site
111
112
# mypy
113
.mypy_cache/
114
115
.vscode
116
*.swp
117
118
# osx generated files
119
.DS_Store
120
.DS_Store?
121
.Trashes
122
ehthumbs.db
123
Thumbs.db
124
.idea
125
126
# pytest
127
.pytest_cache
128
129
# tools/trust-doc-nbs
130
examples/.last_checked
131
132
# symlinks to fastai
133
examples/fastai
134
docs_src/fastai
135
136
# editor
137
.projectile
138
139
# .gitconfig is now autogenerated
140
.gitconfig
141
142
# our make release log files
143
release-*.log
144