.gitignore 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259
  1. # Repo-specific GitIgnore ----------------------------------------------------------------------------------------------
  2. *.jpg
  3. *.jpeg
  4. *.png
  5. *.bmp
  6. *.tif
  7. *.tiff
  8. *.heic
  9. *.JPG
  10. *.JPEG
  11. *.PNG
  12. *.BMP
  13. *.TIF
  14. *.TIFF
  15. *.HEIC
  16. *.mp4
  17. *.mov
  18. *.MOV
  19. *.avi
  20. *.data
  21. *.json
  22. *.cfg
  23. !setup.cfg
  24. !cfg/yolov3*.cfg
  25. storage.googleapis.com
  26. runs/*
  27. data/*
  28. data/images/*
  29. !data/*.yaml
  30. !data/hyps
  31. !data/scripts
  32. !data/images
  33. !data/images/zidane.jpg
  34. !data/images/bus.jpg
  35. !data/*.sh
  36. results*.csv
  37. # Datasets -------------------------------------------------------------------------------------------------------------
  38. coco/
  39. coco128/
  40. VOC/
  41. VOC2007_wm
  42. datasets
  43. .github
  44. # MATLAB GitIgnore -----------------------------------------------------------------------------------------------------
  45. *.m~
  46. *.mat
  47. !targets*.mat
  48. # Neural Network weights -----------------------------------------------------------------------------------------------
  49. *.weights
  50. *.pt
  51. *.pb
  52. *.onnx
  53. *.engine
  54. *.mlmodel
  55. *.torchscript
  56. *.tflite
  57. *.h5
  58. *_saved_model/
  59. *_web_model/
  60. *_openvino_model/
  61. darknet53.conv.74
  62. yolov3-tiny.conv.15
  63. # GitHub Python GitIgnore ----------------------------------------------------------------------------------------------
  64. # Byte-compiled / optimized / DLL files
  65. __pycache__/
  66. *.py[cod]
  67. *$py.class
  68. # C extensions
  69. *.so
  70. # Distribution / packaging
  71. .Python
  72. env/
  73. build/
  74. develop-eggs/
  75. dist/
  76. downloads/
  77. eggs/
  78. .eggs/
  79. lib/
  80. lib64/
  81. parts/
  82. sdist/
  83. var/
  84. wheels/
  85. *.egg-info/
  86. /wandb/
  87. .installed.cfg
  88. *.egg
  89. # PyInstaller
  90. # Usually these files are written by a python script from a template
  91. # before PyInstaller builds the exe, so as to inject date/other infos into it.
  92. *.manifest
  93. *.spec
  94. # Installer logs
  95. pip-log.txt
  96. pip-delete-this-directory.txt
  97. # Unit test / coverage reports
  98. htmlcov/
  99. .tox/
  100. .coverage
  101. .coverage.*
  102. .cache
  103. nosetests.xml
  104. coverage.xml
  105. *.cover
  106. .hypothesis/
  107. # Translations
  108. *.mo
  109. *.pot
  110. # Django stuff:
  111. *.log
  112. local_settings.py
  113. # Flask stuff:
  114. instance/
  115. .webassets-cache
  116. # Scrapy stuff:
  117. .scrapy
  118. # Sphinx documentation
  119. docs/_build/
  120. # PyBuilder
  121. target/
  122. # Jupyter Notebook
  123. .ipynb_checkpoints
  124. # pyenv
  125. .python-version
  126. # celery beat schedule file
  127. celerybeat-schedule
  128. # SageMath parsed files
  129. *.sage.py
  130. # dotenv
  131. .env
  132. # virtualenv
  133. .venv*
  134. venv*/
  135. ENV*/
  136. # Spyder project settings
  137. .spyderproject
  138. .spyproject
  139. # Rope project settings
  140. .ropeproject
  141. # mkdocs documentation
  142. /site
  143. # mypy
  144. .mypy_cache/
  145. # https://github.com/github/gitignore/blob/master/Global/macOS.gitignore -----------------------------------------------
  146. # General
  147. .DS_Store
  148. .AppleDouble
  149. .LSOverride
  150. # Icon must end with two \r
  151. Icon
  152. Icon?
  153. # Thumbnails
  154. ._*
  155. # Files that might appear in the root of a volume
  156. .DocumentRevisions-V100
  157. .fseventsd
  158. .Spotlight-V100
  159. .TemporaryItems
  160. .Trashes
  161. .VolumeIcon.icns
  162. .com.apple.timemachine.donotpresent
  163. # Directories potentially created on remote AFP share
  164. .AppleDB
  165. .AppleDesktop
  166. Network Trash Folder
  167. Temporary Items
  168. .apdisk
  169. # https://github.com/github/gitignore/blob/master/Global/JetBrains.gitignore
  170. # Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and WebStorm
  171. # Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
  172. # User-specific stuff:
  173. .idea/*
  174. .idea/**/workspace.xml
  175. .idea/**/tasks.xml
  176. .idea/dictionaries
  177. .html # Bokeh Plots
  178. .pg # TensorFlow Frozen Graphs
  179. .avi # videos
  180. # Sensitive or high-churn files:
  181. .idea/**/dataSources/
  182. .idea/**/dataSources.ids
  183. .idea/**/dataSources.local.xml
  184. .idea/**/sqlDataSources.xml
  185. .idea/**/dynamic.xml
  186. .idea/**/uiDesigner.xml
  187. # Gradle:
  188. .idea/**/gradle.xml
  189. .idea/**/libraries
  190. # CMake
  191. cmake-build-debug/
  192. cmake-build-release/
  193. # Mongo Explorer plugin:
  194. .idea/**/mongoSettings.xml
  195. ## File-based project format:
  196. *.iws
  197. ## Plugin-specific files:
  198. # IntelliJ
  199. out/
  200. # mpeltonen/sbt-idea plugin
  201. .idea_modules/
  202. # JIRA plugin
  203. atlassian-ide-plugin.xml
  204. # Cursive Clojure plugin
  205. .idea/replstate.xml
  206. # Crashlytics plugin (for Android Studio and IntelliJ)
  207. com_crashlytics_export_strings.xml
  208. crashlytics.properties
  209. crashlytics-build.properties
  210. fabric.properties