Skip to content

Commit 9d8ce20

Browse files
birth
0 parents  commit 9d8ce20

File tree

271 files changed

+313355
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

271 files changed

+313355
-0
lines changed

.gitignore

Lines changed: 93 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,93 @@
1+
# IntelliJ project files
2+
.idea
3+
*.iml
4+
out
5+
gen
6+
7+
### Vim template
8+
[._]*.s[a-w][a-z]
9+
[._]s[a-w][a-z]
10+
*.un~
11+
Session.vim
12+
.netrwhist
13+
*~
14+
15+
### IPythonNotebook template
16+
# Temporary data
17+
.ipynb_checkpoints/
18+
19+
### Python template
20+
# Byte-compiled / optimized / DLL files
21+
__pycache__/
22+
*.py[cod]
23+
*$py.class
24+
25+
# C extensions
26+
*.so
27+
28+
# Distribution / packaging
29+
.Python
30+
env/
31+
build/
32+
develop-eggs/
33+
dist/
34+
downloads/
35+
eggs/
36+
.eggs/
37+
#lib/
38+
#lib64/
39+
parts/
40+
sdist/
41+
var/
42+
*.egg-info/
43+
.installed.cfg
44+
*.egg
45+
46+
# PyInstaller
47+
# Usually these files are written by a python script from a template
48+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
49+
*.manifest
50+
*.spec
51+
52+
# Installer logs
53+
pip-log.txt
54+
pip-delete-this-directory.txt
55+
56+
# Unit test / coverage reports
57+
htmlcov/
58+
.tox/
59+
.coverage
60+
.coverage.*
61+
.cache
62+
nosetests.xml
63+
coverage.xml
64+
*,cover
65+
66+
# Translations
67+
*.mo
68+
*.pot
69+
70+
# Django stuff:
71+
*.log
72+
73+
# Sphinx documentation
74+
docs/_build/
75+
76+
# PyBuilder
77+
target/
78+
79+
*.ipynb
80+
*.params
81+
*.json
82+
.vscode/
83+
84+
lib/dataset/pycocotools/*.c
85+
lib/dataset/pycocotools/*.cpp
86+
lib/nms/*.c
87+
lib/nms/*.cpp
88+
89+
external
90+
output
91+
model
92+
93+
.db

0 commit comments

Comments
 (0)