Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

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