.gitignore 3.9 KB

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