.gitignore 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262
  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. coco2017labels-segments.zip
  42. test2017.zip
  43. train2017.zip
  44. val2017.zip
  45. # MATLAB GitIgnore -----------------------------------------------------------------------------------------------------
  46. *.m~
  47. *.mat
  48. !targets*.mat
  49. # Neural Network weights -----------------------------------------------------------------------------------------------
  50. *.weights
  51. *.pt
  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. *.ptl
  64. *.trt
  65. # GitHub Python GitIgnore ----------------------------------------------------------------------------------------------
  66. # Byte-compiled / optimized / DLL files
  67. __pycache__/
  68. *.py[cod]
  69. *$py.class
  70. # C extensions
  71. *.so
  72. # Distribution / packaging
  73. .Python
  74. env/
  75. build/
  76. develop-eggs/
  77. dist/
  78. downloads/
  79. eggs/
  80. .eggs/
  81. lib/
  82. lib64/
  83. parts/
  84. sdist/
  85. var/
  86. wheels/
  87. *.egg-info/
  88. /wandb/
  89. .installed.cfg
  90. *.egg
  91. # PyInstaller
  92. # Usually these files are written by a python script from a template
  93. # before PyInstaller builds the exe, so as to inject date/other infos into it.
  94. *.manifest
  95. *.spec
  96. # Installer logs
  97. pip-log.txt
  98. pip-delete-this-directory.txt
  99. # Unit test / coverage reports
  100. htmlcov/
  101. .tox/
  102. .coverage
  103. .coverage.*
  104. .cache
  105. nosetests.xml
  106. coverage.xml
  107. *.cover
  108. .hypothesis/
  109. # Translations
  110. *.mo
  111. *.pot
  112. # Django stuff:
  113. *.log
  114. local_settings.py
  115. # Flask stuff:
  116. instance/
  117. .webassets-cache
  118. # Scrapy stuff:
  119. .scrapy
  120. # Sphinx documentation
  121. docs/_build/
  122. # PyBuilder
  123. target/
  124. # Jupyter Notebook
  125. .ipynb_checkpoints
  126. # pyenv
  127. .python-version
  128. # celery beat schedule file
  129. celerybeat-schedule
  130. # SageMath parsed files
  131. *.sage.py
  132. # dotenv
  133. .env
  134. # virtualenv
  135. .venv*
  136. venv*/
  137. ENV*/
  138. # Spyder project settings
  139. .spyderproject
  140. .spyproject
  141. # Rope project settings
  142. .ropeproject
  143. # mkdocs documentation
  144. /site
  145. # mypy
  146. .mypy_cache/
  147. # https://github.com/github/gitignore/blob/master/Global/macOS.gitignore -----------------------------------------------
  148. # General
  149. .DS_Store
  150. .AppleDouble
  151. .LSOverride
  152. # Icon must end with two \r
  153. Icon
  154. Icon?
  155. # Thumbnails
  156. ._*
  157. # Files that might appear in the root of a volume
  158. .DocumentRevisions-V100
  159. .fseventsd
  160. .Spotlight-V100
  161. .TemporaryItems
  162. .Trashes
  163. .VolumeIcon.icns
  164. .com.apple.timemachine.donotpresent
  165. # Directories potentially created on remote AFP share
  166. .AppleDB
  167. .AppleDesktop
  168. Network Trash Folder
  169. Temporary Items
  170. .apdisk
  171. # https://github.com/github/gitignore/blob/master/Global/JetBrains.gitignore
  172. # Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and WebStorm
  173. # Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
  174. # User-specific stuff:
  175. .idea/*
  176. .idea/**/workspace.xml
  177. .idea/**/tasks.xml
  178. .idea/dictionaries
  179. .html # Bokeh Plots
  180. .pg # TensorFlow Frozen Graphs
  181. .avi # videos
  182. # Sensitive or high-churn files:
  183. .idea/**/dataSources/
  184. .idea/**/dataSources.ids
  185. .idea/**/dataSources.local.xml
  186. .idea/**/sqlDataSources.xml
  187. .idea/**/dynamic.xml
  188. .idea/**/uiDesigner.xml
  189. # Gradle:
  190. .idea/**/gradle.xml
  191. .idea/**/libraries
  192. # CMake
  193. cmake-build-debug/
  194. cmake-build-release/
  195. # Mongo Explorer plugin:
  196. .idea/**/mongoSettings.xml
  197. ## File-based project format:
  198. *.iws
  199. ## Plugin-specific files:
  200. # IntelliJ
  201. out/
  202. # mpeltonen/sbt-idea plugin
  203. .idea_modules/
  204. # JIRA plugin
  205. atlassian-ide-plugin.xml
  206. # Cursive Clojure plugin
  207. .idea/replstate.xml
  208. # Crashlytics plugin (for Android Studio and IntelliJ)
  209. com_crashlytics_export_strings.xml
  210. crashlytics.properties
  211. crashlytics-build.properties
  212. fabric.properties