1
+ # Customized
2
+ weights /*
3
+ ! weights /ckpt.t7
4
+ ! weights /DHN.pth
5
+ ! weights /osnet_x0_25.pth
6
+
1
7
# Byte-compiled / optimized / DLL files
2
8
__pycache__ /
3
9
* .py [cod ]
20
26
sdist /
21
27
var /
22
28
wheels /
23
- pip-wheel-metadata/
24
29
share /python-wheels /
25
30
* .egg-info /
26
31
.installed.cfg
@@ -50,6 +55,7 @@ coverage.xml
50
55
* .py,cover
51
56
.hypothesis /
52
57
.pytest_cache /
58
+ cover /
53
59
54
60
# Translations
55
61
* .mo
@@ -72,6 +78,7 @@ instance/
72
78
docs /_build /
73
79
74
80
# PyBuilder
81
+ .pybuilder /
75
82
target /
76
83
77
84
# Jupyter Notebook
@@ -81,11 +88,10 @@ target/
81
88
profile_default /
82
89
ipython_config.py
83
90
84
- # Profiling
85
- *.pclprof
86
-
87
91
# pyenv
88
- .python-version
92
+ # For a library or package, you might want to ignore these files since the code is
93
+ # intended to run in multiple environments; otherwise, check them in:
94
+ # .python-version
89
95
90
96
# pipenv
91
97
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
@@ -94,7 +100,22 @@ ipython_config.py
94
100
# install all needed dependencies.
95
101
# Pipfile.lock
96
102
97
- # PEP 582; used by e.g. github.com/David-OConnor/pyflow
103
+ # poetry
104
+ # Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
105
+ # This is especially recommended for binary packages to ensure reproducibility, and is more
106
+ # commonly ignored for libraries.
107
+ # https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
108
+ # poetry.lock
109
+
110
+ # pdm
111
+ # Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
112
+ # pdm.lock
113
+ # pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
114
+ # in version control.
115
+ # https://pdm.fming.dev/#use-with-ide
116
+ .pdm.toml
117
+
118
+ # PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
98
119
__pypackages__ /
99
120
100
121
# Celery stuff
@@ -131,9 +152,15 @@ dmypy.json
131
152
# Pyre type checker
132
153
.pyre /
133
154
134
- # datasets and projects
135
- datasets/
136
- runs/
137
- wandb/
155
+ # pytype static type analyzer
156
+ .pytype /
157
+
158
+ # Cython debug symbols
159
+ cython_debug /
138
160
139
- .DS_Store
161
+ # PyCharm
162
+ # JetBrains specific template is maintained in a separate JetBrains.gitignore that can
163
+ # be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
164
+ # and can be added to the global gitignore or merged into this file. For a more nuclear
165
+ # option (not recommended) you can uncomment the following to ignore the entire idea folder.
166
+ # .idea/
0 commit comments