Skip to content

Commit 2603010

Browse files
committed
Initial checkin
0 parents  commit 2603010

35 files changed

+2836
-0
lines changed

.gitignore

+232
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,232 @@
1+
# Byte-compiled / optimized / DLL files
2+
__pycache__/
3+
*.py[cod]
4+
*$py.class
5+
*.S
6+
# C extensions
7+
*.so
8+
*.ll
9+
.npm
10+
# Distribution / packaging
11+
.Python
12+
env/
13+
build/
14+
develop-eggs/
15+
dist/
16+
downloads/
17+
eggs/
18+
.eggs/
19+
lib/
20+
lib64/
21+
parts/
22+
sdist/
23+
var/
24+
*.egg-info/
25+
.installed.cfg
26+
*.egg
27+
.conda/
28+
# PyInstaller
29+
# Usually these files are written by a python script from a template
30+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
31+
*.manifest
32+
*.spec
33+
34+
# Installer logs
35+
pip-log.txt
36+
pip-delete-this-directory.txt
37+
38+
# Unit test / coverage reports
39+
htmlcov/
40+
.tox/
41+
.coverage
42+
.coverage.*
43+
.cache
44+
nosetests.xml
45+
coverage.xml
46+
*,cover
47+
.hypothesis/
48+
49+
# Translations
50+
*.mo
51+
*.pot
52+
53+
# Django stuff:
54+
*.log
55+
local_settings.py
56+
57+
# Flask stuff:
58+
instance/
59+
.webassets-cache
60+
61+
# Scrapy stuff:
62+
.scrapy
63+
64+
# Sphinx documentation
65+
docs/_build/
66+
docs/gen_modules
67+
68+
# PyBuilder
69+
/target/
70+
71+
# IPython Notebook
72+
.ipynb_checkpoints
73+
74+
# pyenv
75+
.python-version
76+
77+
# celery beat schedule file
78+
celerybeat-schedule
79+
80+
# dotenv
81+
.env
82+
83+
# virtualenv
84+
venv/
85+
ENV/
86+
87+
# Spyder project settings
88+
.spyderproject
89+
90+
# Rope project settings
91+
.ropeproject
92+
*~
93+
*.pyc
94+
*~
95+
config.mk
96+
config.cmake
97+
Win32
98+
*.dir
99+
perf
100+
*.wasm
101+
.emscripten
102+
103+
## IOS
104+
DerivedData/
105+
106+
## Java
107+
*.class
108+
jvm/*/target/
109+
jvm/*/*/target/
110+
*.worksheet
111+
*.idea
112+
*.iml
113+
*.classpath
114+
*.project
115+
*.settings
116+
*/node_modules/
117+
118+
## Various settings
119+
*.pbxuser
120+
!default.pbxuser
121+
*.mode1v3
122+
!default.mode1v3
123+
*.mode2v3
124+
!default.mode2v3
125+
*.perspectivev3
126+
!default.perspectivev3
127+
xcuserdata/
128+
.pkl_memoize_*
129+
130+
.emscripten*
131+
.m2
132+
133+
# Compiled Dynamic libraries
134+
*.so
135+
*.dylib
136+
*.dll
137+
138+
# Compiled Object files
139+
*.slo
140+
*.lo
141+
*.o
142+
*.obj
143+
144+
# Precompiled Headers
145+
*.gch
146+
*.pch
147+
148+
# Compiled Static libraries
149+
*.lai
150+
*.la
151+
*.a
152+
*.lib
153+
154+
# Executables
155+
*.exe
156+
*.out
157+
*.app
158+
159+
## Other
160+
*.moved-aside
161+
*.xccheckout
162+
*.xcscmblueprint
163+
.DS_Store
164+
tags
165+
cscope*
166+
*.lock
167+
168+
# vim temporary files
169+
*.swp
170+
*.swo
171+
172+
perf
173+
.bash_history
174+
*.json
175+
*.params
176+
*.onnx
177+
*.h5
178+
synset.txt
179+
cat.jpg
180+
cat.png
181+
docs.tgz
182+
cat.png
183+
*.mlmodel
184+
# Mac OS X
185+
.DS_Store
186+
187+
# Jetbrain
188+
.idea
189+
.ipython
190+
.jupyter
191+
.nv
192+
.pylint.d
193+
.python_history
194+
.pytest_cache
195+
.local
196+
cmake-build-debug
197+
198+
# Visual Studio
199+
.vs
200+
201+
# Visual Studio Code
202+
.vscode
203+
204+
# tmp file
205+
.nfs*
206+
207+
# keys
208+
*.pem
209+
*.p12
210+
*.pfx
211+
*.cer
212+
*.crt
213+
*.der
214+
215+
# patch sentinel
216+
patched.txt
217+
218+
# Python type checking
219+
.mypy_cache/
220+
.pyre/
221+
222+
# pipenv files
223+
Pipfile
224+
Pipfile.lock
225+
226+
# conda package artifacts
227+
conda/Dockerfile.cuda*
228+
conda/pkg
229+
.node_repl_history
230+
# nix files
231+
.envrc
232+
*.nix

0 commit comments

Comments
 (0)