Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

257 Zeilen
3.9KB

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