Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

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