.gitignore 3.9 KB

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