ggml-python 0.0.34__tar.gz → 0.0.36__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1057) hide show
  1. ggml_python-0.0.36/.github/dependabot.yaml +15 -0
  2. {ggml_python-0.0.34 → ggml_python-0.0.36}/.github/workflows/publish.yaml +2 -2
  3. {ggml_python-0.0.34 → ggml_python-0.0.36}/.github/workflows/test.yaml +36 -47
  4. {ggml_python-0.0.34 → ggml_python-0.0.36}/.github/workflows/wheels-cuda.yaml +6 -6
  5. {ggml_python-0.0.34 → ggml_python-0.0.36}/.github/workflows/wheels-index.yaml +2 -1
  6. {ggml_python-0.0.34 → ggml_python-0.0.36}/.github/workflows/wheels-metal.yaml +3 -3
  7. {ggml_python-0.0.34 → ggml_python-0.0.36}/.github/workflows/wheels.yaml +5 -5
  8. {ggml_python-0.0.34 → ggml_python-0.0.36}/PKG-INFO +8 -8
  9. {ggml_python-0.0.34 → ggml_python-0.0.36}/examples/clip/requirements.txt +8 -8
  10. ggml_python-0.0.36/examples/optimizer/simple.py +89 -0
  11. {ggml_python-0.0.34 → ggml_python-0.0.36}/examples/replit/main.py +50 -158
  12. {ggml_python-0.0.34 → ggml_python-0.0.36}/examples/replit/requirements.txt +1 -1
  13. ggml_python-0.0.36/ggml/__init__.py +3 -0
  14. {ggml_python-0.0.34 → ggml_python-0.0.36}/ggml/ggml.py +539 -410
  15. {ggml_python-0.0.34 → ggml_python-0.0.36}/ggml/utils.py +8 -14
  16. {ggml_python-0.0.34 → ggml_python-0.0.36}/pyproject.toml +7 -7
  17. {ggml_python-0.0.34 → ggml_python-0.0.36}/tests/test_ggml.py +43 -7
  18. ggml_python-0.0.36/vendor/ggml/AUTHORS +175 -0
  19. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/CMakeLists.txt +11 -9
  20. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/LICENSE +1 -1
  21. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/ci/run.sh +4 -1
  22. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/docs/gguf.md +1 -1
  23. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/common-ggml.cpp +2 -0
  24. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/common.cpp +13 -0
  25. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/mnist/convert-h5-to-ggml.py +3 -4
  26. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/whisper/CMakeLists.txt +1 -1
  27. ggml_python-0.0.36/vendor/ggml/examples/whisper/grammar-parser.cpp +423 -0
  28. ggml_python-0.0.36/vendor/ggml/examples/whisper/grammar-parser.h +29 -0
  29. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/whisper/main.cpp +142 -8
  30. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/whisper/whisper.cpp +319 -199
  31. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/whisper/whisper.h +4 -0
  32. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/include/ggml/ggml.h +73 -33
  33. ggml_python-0.0.36/vendor/ggml/scripts/gen-authors.sh +9 -0
  34. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/scripts/sync-llama-am.sh +12 -0
  35. ggml_python-0.0.36/vendor/ggml/scripts/sync-llama.last +1 -0
  36. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/scripts/sync-llama.sh +5 -0
  37. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/scripts/sync-whisper-am.sh +20 -2
  38. ggml_python-0.0.36/vendor/ggml/scripts/sync-whisper.last +1 -0
  39. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/scripts/sync-whisper.sh +7 -0
  40. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/src/ggml-alloc.c +8 -8
  41. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/src/ggml-backend.c +23 -17
  42. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/src/ggml-common.h +3 -2
  43. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/src/ggml-cuda/argsort.cu +39 -13
  44. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/src/ggml-cuda/binbcast.cu +68 -24
  45. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/src/ggml-cuda/clamp.cu +0 -1
  46. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/src/ggml-cuda/common.cuh +186 -85
  47. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/src/ggml-cuda/convert.cu +123 -123
  48. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/src/ggml-cuda/convert.cuh +1 -1
  49. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/src/ggml-cuda/cpy.cu +29 -0
  50. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/src/ggml-cuda/cpy.cuh +2 -0
  51. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/src/ggml-cuda/dequantize.cuh +5 -5
  52. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/src/ggml-cuda/dmmv.cu +3 -7
  53. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/src/ggml-cuda/dmmv.cuh +11 -0
  54. ggml_python-0.0.36/vendor/ggml/src/ggml-cuda/fattn-common.cuh +47 -0
  55. ggml_python-0.0.36/vendor/ggml/src/ggml-cuda/fattn-vec-f16.cu +430 -0
  56. ggml_python-0.0.36/vendor/ggml/src/ggml-cuda/fattn-vec-f16.cuh +5 -0
  57. ggml_python-0.0.36/vendor/ggml/src/ggml-cuda/fattn-vec-f32.cu +384 -0
  58. ggml_python-0.0.36/vendor/ggml/src/ggml-cuda/fattn-vec-f32.cuh +3 -0
  59. ggml_python-0.0.36/vendor/ggml/src/ggml-cuda/fattn.cu +699 -0
  60. ggml_python-0.0.36/vendor/ggml/src/ggml-cuda/fattn.cuh +3 -0
  61. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/src/ggml-cuda/mmq.cu +10 -20
  62. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/src/ggml-cuda/mmvq.cu +2 -4
  63. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/src/ggml-cuda/quantize.cu +8 -8
  64. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/src/ggml-cuda/quantize.cuh +1 -1
  65. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/src/ggml-cuda/scale.cu +0 -1
  66. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/src/ggml-cuda/softmax.cu +46 -33
  67. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/src/ggml-cuda/unary.cu +26 -0
  68. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/src/ggml-cuda/unary.cuh +3 -0
  69. ggml_python-0.0.36/vendor/ggml/src/ggml-cuda/upscale.cu +51 -0
  70. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/src/ggml-cuda.cu +447 -248
  71. ggml_python-0.0.36/vendor/ggml/src/ggml-impl.h +607 -0
  72. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/src/ggml-kompute.cpp +14 -1
  73. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/src/ggml-metal.m +621 -379
  74. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/src/ggml-metal.metal +1327 -1842
  75. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/src/ggml-opencl.cpp +1 -0
  76. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/src/ggml-quants.c +2648 -468
  77. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/src/ggml-quants.h +82 -82
  78. ggml_python-0.0.36/vendor/ggml/src/ggml-rpc.cpp +1023 -0
  79. ggml_python-0.0.36/vendor/ggml/src/ggml-rpc.h +24 -0
  80. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/src/ggml-sycl.cpp +1021 -510
  81. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/src/ggml-vulkan.cpp +1265 -554
  82. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/src/ggml-vulkan.h +0 -11
  83. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/src/ggml.c +1742 -484
  84. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/tests/test-backend-ops.cpp +150 -118
  85. ggml_python-0.0.34/ggml/__init__.py +0 -3
  86. ggml_python-0.0.34/ggml/experimental.py +0 -1219
  87. ggml_python-0.0.34/tests/test_experimental_api.py +0 -91
  88. ggml_python-0.0.34/vendor/ggml/scripts/sync-llama.last +0 -1
  89. ggml_python-0.0.34/vendor/ggml/scripts/sync-whisper.last +0 -1
  90. ggml_python-0.0.34/vendor/ggml/src/ggml-cuda/alibi.cu +0 -63
  91. ggml_python-0.0.34/vendor/ggml/src/ggml-cuda/alibi.cuh +0 -5
  92. ggml_python-0.0.34/vendor/ggml/src/ggml-cuda/upscale.cu +0 -48
  93. ggml_python-0.0.34/vendor/ggml/src/ggml-impl.h +0 -265
  94. {ggml_python-0.0.34 → ggml_python-0.0.36}/.gitignore +0 -0
  95. {ggml_python-0.0.34 → ggml_python-0.0.36}/.gitmodules +0 -0
  96. {ggml_python-0.0.34 → ggml_python-0.0.36}/.readthedocs.yaml +0 -0
  97. {ggml_python-0.0.34 → ggml_python-0.0.36}/CMakeLists.txt +0 -0
  98. {ggml_python-0.0.34 → ggml_python-0.0.36}/LICENSE.md +0 -0
  99. {ggml_python-0.0.34 → ggml_python-0.0.36}/Makefile +0 -0
  100. {ggml_python-0.0.34 → ggml_python-0.0.36}/README.md +0 -0
  101. {ggml_python-0.0.34 → ggml_python-0.0.36}/docs/api-reference.md +0 -0
  102. {ggml_python-0.0.34 → ggml_python-0.0.36}/docs/index.md +0 -0
  103. {ggml_python-0.0.34 → ggml_python-0.0.36}/examples/clip/README.md +0 -0
  104. {ggml_python-0.0.34 → ggml_python-0.0.36}/examples/clip/convert-pt-to-ggml.py +0 -0
  105. {ggml_python-0.0.34 → ggml_python-0.0.36}/examples/clip/model.py +0 -0
  106. {ggml_python-0.0.34 → ggml_python-0.0.36}/examples/clip/utils.py +0 -0
  107. {ggml_python-0.0.34 → ggml_python-0.0.36}/examples/custom-operators/example_jax.py +0 -0
  108. {ggml_python-0.0.34 → ggml_python-0.0.36}/examples/replit/README.md +0 -0
  109. {ggml_python-0.0.34 → ggml_python-0.0.36}/examples/replit/app.py +0 -0
  110. {ggml_python-0.0.34 → ggml_python-0.0.36}/ggml/py.typed +0 -0
  111. {ggml_python-0.0.34 → ggml_python-0.0.36}/mkdocs.yml +0 -0
  112. {ggml_python-0.0.34 → ggml_python-0.0.36}/scripts/releases-to-pep-503.sh +0 -0
  113. {ggml_python-0.0.34 → ggml_python-0.0.36}/tests/__init__.py +0 -0
  114. {ggml_python-0.0.34 → ggml_python-0.0.36}/tests/test_ggml_cuda.py +0 -0
  115. {ggml_python-0.0.34 → ggml_python-0.0.36}/tests/test_ggml_metal.py +0 -0
  116. {ggml_python-0.0.34 → ggml_python-0.0.36}/tests/test_utils.py +0 -0
  117. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/.editorconfig +0 -0
  118. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/.git +0 -0
  119. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/.github/workflows/ci.yml +0 -0
  120. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/.gitignore +0 -0
  121. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/Package.swift +0 -0
  122. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/README.md +0 -0
  123. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/build.zig +0 -0
  124. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/cmake/BuildTypes.cmake +0 -0
  125. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/cmake/GitVars.cmake +0 -0
  126. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/docs/logo/ggml-logo-inverted.jpg +0 -0
  127. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/docs/logo/ggml-logo-inverted.svg +0 -0
  128. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/docs/logo/ggml-logo-transparent-inverted.png +0 -0
  129. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/docs/logo/ggml-logo-transparent.png +0 -0
  130. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/docs/logo/ggml-logo.jpg +0 -0
  131. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/docs/logo/ggml-logo.svg +0 -0
  132. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/CMakeLists.txt +0 -0
  133. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/common-ggml.h +0 -0
  134. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/common.h +0 -0
  135. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/dr_wav.h +0 -0
  136. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/gpt-2/CMakeLists.txt +0 -0
  137. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/gpt-2/README.md +0 -0
  138. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/gpt-2/convert-cerebras-to-ggml.py +0 -0
  139. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/gpt-2/convert-ckpt-to-ggml.py +0 -0
  140. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/gpt-2/convert-h5-to-ggml.py +0 -0
  141. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/gpt-2/download-ggml-model.sh +0 -0
  142. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/gpt-2/download-model.sh +0 -0
  143. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/gpt-2/main-alloc.cpp +0 -0
  144. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/gpt-2/main-backend.cpp +0 -0
  145. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/gpt-2/main-batched.cpp +0 -0
  146. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/gpt-2/main-ctx.cpp +0 -0
  147. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/gpt-2/main-sched.cpp +0 -0
  148. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/gpt-2/quantize.cpp +0 -0
  149. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/gpt-j/CMakeLists.txt +0 -0
  150. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/gpt-j/README.md +0 -0
  151. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/gpt-j/convert-h5-to-ggml.py +0 -0
  152. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/gpt-j/download-ggml-model.sh +0 -0
  153. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/gpt-j/download-model.sh +0 -0
  154. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/gpt-j/main.cpp +0 -0
  155. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/gpt-j/quantize.cpp +0 -0
  156. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/magika/CMakeLists.txt +0 -0
  157. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/magika/README.md +0 -0
  158. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/magika/convert.py +0 -0
  159. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/magika/main.cpp +0 -0
  160. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/mnist/CMakeLists.txt +0 -0
  161. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/mnist/README.md +0 -0
  162. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/mnist/main-cnn.cpp +0 -0
  163. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/mnist/main-cpu.cpp +0 -0
  164. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/mnist/main-mtl.cpp +0 -0
  165. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/mnist/main-mtl.h +0 -0
  166. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/mnist/main-mtl.m +0 -0
  167. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/mnist/main.cpp +0 -0
  168. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/mnist/mnist-cnn.py +0 -0
  169. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/mnist/web/.gitignore +0 -0
  170. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/mnist/web/index.html +0 -0
  171. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/prompts/dolly-v2.txt +0 -0
  172. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/prompts/gpt-2-chinese.txt +0 -0
  173. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/prompts/gpt-2.txt +0 -0
  174. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/prompts/gpt-j.txt +0 -0
  175. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/prompts/gpt-neox-japanese.txt +0 -0
  176. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/prompts/gpt-neox.txt +0 -0
  177. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/prompts/polyglot-ko.txt +0 -0
  178. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/prompts/replit.txt +0 -0
  179. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/prompts/starcoder.txt +0 -0
  180. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/prompts/test-cases.txt +0 -0
  181. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/prompts/tokenize_huggingface.py +0 -0
  182. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/prompts/whisper.txt +0 -0
  183. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/python/README.md +0 -0
  184. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/python/api.h +0 -0
  185. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/python/example_add_quant.py +0 -0
  186. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/python/example_test_all_quants.py +0 -0
  187. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/python/ggml/__init__.py +0 -0
  188. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/python/ggml/__init__.pyi +0 -0
  189. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/python/ggml/cffi.py +0 -0
  190. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/python/ggml/ffi/__init__.pyi +0 -0
  191. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/python/ggml/utils.py +0 -0
  192. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/python/regenerate.py +0 -0
  193. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/python/stubs.py +0 -0
  194. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/python/test_tensor.py +0 -0
  195. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/sam/CMakeLists.txt +0 -0
  196. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/sam/README.md +0 -0
  197. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/sam/convert-pth-to-ggml.py +0 -0
  198. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/sam/example.jpg +0 -0
  199. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/sam/main.cpp +0 -0
  200. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/simple/CMakeLists.txt +0 -0
  201. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/simple/README.md +0 -0
  202. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/simple/simple-backend.cpp +0 -0
  203. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/simple/simple-ctx.cpp +0 -0
  204. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/stb_image.h +0 -0
  205. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/stb_image_write.h +0 -0
  206. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/whisper/README.md +0 -0
  207. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/whisper/convert-pt-to-ggml.py +0 -0
  208. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/whisper/quantize.cpp +0 -0
  209. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/CMakeLists.txt +0 -0
  210. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/README.md +0 -0
  211. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/convert-yolov3-tiny.py +0 -0
  212. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/coco.names +0 -0
  213. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/100_0.png +0 -0
  214. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/100_1.png +0 -0
  215. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/100_2.png +0 -0
  216. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/100_3.png +0 -0
  217. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/100_4.png +0 -0
  218. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/100_5.png +0 -0
  219. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/100_6.png +0 -0
  220. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/100_7.png +0 -0
  221. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/101_0.png +0 -0
  222. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/101_1.png +0 -0
  223. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/101_2.png +0 -0
  224. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/101_3.png +0 -0
  225. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/101_4.png +0 -0
  226. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/101_5.png +0 -0
  227. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/101_6.png +0 -0
  228. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/101_7.png +0 -0
  229. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/102_0.png +0 -0
  230. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/102_1.png +0 -0
  231. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/102_2.png +0 -0
  232. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/102_3.png +0 -0
  233. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/102_4.png +0 -0
  234. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/102_5.png +0 -0
  235. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/102_6.png +0 -0
  236. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/102_7.png +0 -0
  237. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/103_0.png +0 -0
  238. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/103_1.png +0 -0
  239. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/103_2.png +0 -0
  240. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/103_3.png +0 -0
  241. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/103_4.png +0 -0
  242. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/103_5.png +0 -0
  243. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/103_6.png +0 -0
  244. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/103_7.png +0 -0
  245. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/104_0.png +0 -0
  246. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/104_1.png +0 -0
  247. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/104_2.png +0 -0
  248. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/104_3.png +0 -0
  249. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/104_4.png +0 -0
  250. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/104_5.png +0 -0
  251. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/104_6.png +0 -0
  252. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/104_7.png +0 -0
  253. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/105_0.png +0 -0
  254. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/105_1.png +0 -0
  255. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/105_2.png +0 -0
  256. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/105_3.png +0 -0
  257. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/105_4.png +0 -0
  258. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/105_5.png +0 -0
  259. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/105_6.png +0 -0
  260. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/105_7.png +0 -0
  261. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/106_0.png +0 -0
  262. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/106_1.png +0 -0
  263. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/106_2.png +0 -0
  264. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/106_3.png +0 -0
  265. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/106_4.png +0 -0
  266. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/106_5.png +0 -0
  267. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/106_6.png +0 -0
  268. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/106_7.png +0 -0
  269. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/107_0.png +0 -0
  270. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/107_1.png +0 -0
  271. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/107_2.png +0 -0
  272. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/107_3.png +0 -0
  273. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/107_4.png +0 -0
  274. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/107_5.png +0 -0
  275. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/107_6.png +0 -0
  276. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/107_7.png +0 -0
  277. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/108_0.png +0 -0
  278. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/108_1.png +0 -0
  279. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/108_2.png +0 -0
  280. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/108_3.png +0 -0
  281. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/108_4.png +0 -0
  282. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/108_5.png +0 -0
  283. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/108_6.png +0 -0
  284. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/108_7.png +0 -0
  285. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/109_0.png +0 -0
  286. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/109_1.png +0 -0
  287. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/109_2.png +0 -0
  288. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/109_3.png +0 -0
  289. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/109_4.png +0 -0
  290. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/109_5.png +0 -0
  291. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/109_6.png +0 -0
  292. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/109_7.png +0 -0
  293. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/110_0.png +0 -0
  294. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/110_1.png +0 -0
  295. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/110_2.png +0 -0
  296. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/110_3.png +0 -0
  297. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/110_4.png +0 -0
  298. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/110_5.png +0 -0
  299. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/110_6.png +0 -0
  300. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/110_7.png +0 -0
  301. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/111_0.png +0 -0
  302. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/111_1.png +0 -0
  303. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/111_2.png +0 -0
  304. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/111_3.png +0 -0
  305. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/111_4.png +0 -0
  306. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/111_5.png +0 -0
  307. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/111_6.png +0 -0
  308. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/111_7.png +0 -0
  309. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/112_0.png +0 -0
  310. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/112_1.png +0 -0
  311. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/112_2.png +0 -0
  312. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/112_3.png +0 -0
  313. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/112_4.png +0 -0
  314. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/112_5.png +0 -0
  315. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/112_6.png +0 -0
  316. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/112_7.png +0 -0
  317. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/113_0.png +0 -0
  318. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/113_1.png +0 -0
  319. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/113_2.png +0 -0
  320. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/113_3.png +0 -0
  321. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/113_4.png +0 -0
  322. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/113_5.png +0 -0
  323. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/113_6.png +0 -0
  324. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/113_7.png +0 -0
  325. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/114_0.png +0 -0
  326. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/114_1.png +0 -0
  327. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/114_2.png +0 -0
  328. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/114_3.png +0 -0
  329. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/114_4.png +0 -0
  330. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/114_5.png +0 -0
  331. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/114_6.png +0 -0
  332. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/114_7.png +0 -0
  333. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/115_0.png +0 -0
  334. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/115_1.png +0 -0
  335. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/115_2.png +0 -0
  336. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/115_3.png +0 -0
  337. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/115_4.png +0 -0
  338. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/115_5.png +0 -0
  339. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/115_6.png +0 -0
  340. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/115_7.png +0 -0
  341. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/116_0.png +0 -0
  342. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/116_1.png +0 -0
  343. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/116_2.png +0 -0
  344. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/116_3.png +0 -0
  345. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/116_4.png +0 -0
  346. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/116_5.png +0 -0
  347. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/116_6.png +0 -0
  348. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/116_7.png +0 -0
  349. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/117_0.png +0 -0
  350. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/117_1.png +0 -0
  351. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/117_2.png +0 -0
  352. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/117_3.png +0 -0
  353. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/117_4.png +0 -0
  354. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/117_5.png +0 -0
  355. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/117_6.png +0 -0
  356. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/117_7.png +0 -0
  357. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/118_0.png +0 -0
  358. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/118_1.png +0 -0
  359. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/118_2.png +0 -0
  360. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/118_3.png +0 -0
  361. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/118_4.png +0 -0
  362. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/118_5.png +0 -0
  363. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/118_6.png +0 -0
  364. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/118_7.png +0 -0
  365. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/119_0.png +0 -0
  366. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/119_1.png +0 -0
  367. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/119_2.png +0 -0
  368. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/119_3.png +0 -0
  369. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/119_4.png +0 -0
  370. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/119_5.png +0 -0
  371. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/119_6.png +0 -0
  372. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/119_7.png +0 -0
  373. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/120_0.png +0 -0
  374. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/120_1.png +0 -0
  375. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/120_2.png +0 -0
  376. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/120_3.png +0 -0
  377. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/120_4.png +0 -0
  378. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/120_5.png +0 -0
  379. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/120_6.png +0 -0
  380. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/120_7.png +0 -0
  381. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/121_0.png +0 -0
  382. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/121_1.png +0 -0
  383. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/121_2.png +0 -0
  384. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/121_3.png +0 -0
  385. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/121_4.png +0 -0
  386. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/121_5.png +0 -0
  387. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/121_6.png +0 -0
  388. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/121_7.png +0 -0
  389. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/122_0.png +0 -0
  390. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/122_1.png +0 -0
  391. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/122_2.png +0 -0
  392. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/122_3.png +0 -0
  393. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/122_4.png +0 -0
  394. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/122_5.png +0 -0
  395. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/122_6.png +0 -0
  396. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/122_7.png +0 -0
  397. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/123_0.png +0 -0
  398. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/123_1.png +0 -0
  399. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/123_2.png +0 -0
  400. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/123_3.png +0 -0
  401. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/123_4.png +0 -0
  402. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/123_5.png +0 -0
  403. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/123_6.png +0 -0
  404. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/123_7.png +0 -0
  405. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/124_0.png +0 -0
  406. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/124_1.png +0 -0
  407. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/124_2.png +0 -0
  408. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/124_3.png +0 -0
  409. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/124_4.png +0 -0
  410. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/124_5.png +0 -0
  411. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/124_6.png +0 -0
  412. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/124_7.png +0 -0
  413. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/125_0.png +0 -0
  414. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/125_1.png +0 -0
  415. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/125_2.png +0 -0
  416. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/125_3.png +0 -0
  417. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/125_4.png +0 -0
  418. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/125_5.png +0 -0
  419. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/125_6.png +0 -0
  420. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/125_7.png +0 -0
  421. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/126_0.png +0 -0
  422. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/126_1.png +0 -0
  423. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/126_2.png +0 -0
  424. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/126_3.png +0 -0
  425. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/126_4.png +0 -0
  426. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/126_5.png +0 -0
  427. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/126_6.png +0 -0
  428. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/126_7.png +0 -0
  429. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/32_0.png +0 -0
  430. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/32_1.png +0 -0
  431. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/32_2.png +0 -0
  432. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/32_3.png +0 -0
  433. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/32_4.png +0 -0
  434. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/32_5.png +0 -0
  435. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/32_6.png +0 -0
  436. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/32_7.png +0 -0
  437. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/33_0.png +0 -0
  438. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/33_1.png +0 -0
  439. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/33_2.png +0 -0
  440. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/33_3.png +0 -0
  441. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/33_4.png +0 -0
  442. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/33_5.png +0 -0
  443. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/33_6.png +0 -0
  444. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/33_7.png +0 -0
  445. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/34_0.png +0 -0
  446. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/34_1.png +0 -0
  447. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/34_2.png +0 -0
  448. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/34_3.png +0 -0
  449. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/34_4.png +0 -0
  450. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/34_5.png +0 -0
  451. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/34_6.png +0 -0
  452. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/34_7.png +0 -0
  453. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/35_0.png +0 -0
  454. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/35_1.png +0 -0
  455. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/35_2.png +0 -0
  456. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/35_3.png +0 -0
  457. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/35_4.png +0 -0
  458. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/35_5.png +0 -0
  459. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/35_6.png +0 -0
  460. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/35_7.png +0 -0
  461. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/36_0.png +0 -0
  462. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/36_1.png +0 -0
  463. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/36_2.png +0 -0
  464. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/36_3.png +0 -0
  465. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/36_4.png +0 -0
  466. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/36_5.png +0 -0
  467. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/36_6.png +0 -0
  468. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/36_7.png +0 -0
  469. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/37_0.png +0 -0
  470. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/37_1.png +0 -0
  471. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/37_2.png +0 -0
  472. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/37_3.png +0 -0
  473. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/37_4.png +0 -0
  474. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/37_5.png +0 -0
  475. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/37_6.png +0 -0
  476. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/37_7.png +0 -0
  477. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/38_0.png +0 -0
  478. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/38_1.png +0 -0
  479. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/38_2.png +0 -0
  480. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/38_3.png +0 -0
  481. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/38_4.png +0 -0
  482. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/38_5.png +0 -0
  483. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/38_6.png +0 -0
  484. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/38_7.png +0 -0
  485. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/39_0.png +0 -0
  486. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/39_1.png +0 -0
  487. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/39_2.png +0 -0
  488. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/39_3.png +0 -0
  489. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/39_4.png +0 -0
  490. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/39_5.png +0 -0
  491. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/39_6.png +0 -0
  492. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/39_7.png +0 -0
  493. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/40_0.png +0 -0
  494. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/40_1.png +0 -0
  495. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/40_2.png +0 -0
  496. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/40_3.png +0 -0
  497. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/40_4.png +0 -0
  498. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/40_5.png +0 -0
  499. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/40_6.png +0 -0
  500. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/40_7.png +0 -0
  501. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/41_0.png +0 -0
  502. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/41_1.png +0 -0
  503. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/41_2.png +0 -0
  504. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/41_3.png +0 -0
  505. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/41_4.png +0 -0
  506. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/41_5.png +0 -0
  507. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/41_6.png +0 -0
  508. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/41_7.png +0 -0
  509. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/42_0.png +0 -0
  510. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/42_1.png +0 -0
  511. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/42_2.png +0 -0
  512. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/42_3.png +0 -0
  513. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/42_4.png +0 -0
  514. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/42_5.png +0 -0
  515. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/42_6.png +0 -0
  516. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/42_7.png +0 -0
  517. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/43_0.png +0 -0
  518. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/43_1.png +0 -0
  519. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/43_2.png +0 -0
  520. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/43_3.png +0 -0
  521. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/43_4.png +0 -0
  522. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/43_5.png +0 -0
  523. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/43_6.png +0 -0
  524. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/43_7.png +0 -0
  525. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/44_0.png +0 -0
  526. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/44_1.png +0 -0
  527. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/44_2.png +0 -0
  528. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/44_3.png +0 -0
  529. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/44_4.png +0 -0
  530. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/44_5.png +0 -0
  531. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/44_6.png +0 -0
  532. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/44_7.png +0 -0
  533. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/45_0.png +0 -0
  534. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/45_1.png +0 -0
  535. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/45_2.png +0 -0
  536. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/45_3.png +0 -0
  537. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/45_4.png +0 -0
  538. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/45_5.png +0 -0
  539. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/45_6.png +0 -0
  540. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/45_7.png +0 -0
  541. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/46_0.png +0 -0
  542. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/46_1.png +0 -0
  543. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/46_2.png +0 -0
  544. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/46_3.png +0 -0
  545. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/46_4.png +0 -0
  546. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/46_5.png +0 -0
  547. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/46_6.png +0 -0
  548. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/46_7.png +0 -0
  549. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/47_0.png +0 -0
  550. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/47_1.png +0 -0
  551. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/47_2.png +0 -0
  552. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/47_3.png +0 -0
  553. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/47_4.png +0 -0
  554. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/47_5.png +0 -0
  555. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/47_6.png +0 -0
  556. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/47_7.png +0 -0
  557. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/48_0.png +0 -0
  558. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/48_1.png +0 -0
  559. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/48_2.png +0 -0
  560. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/48_3.png +0 -0
  561. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/48_4.png +0 -0
  562. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/48_5.png +0 -0
  563. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/48_6.png +0 -0
  564. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/48_7.png +0 -0
  565. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/49_0.png +0 -0
  566. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/49_1.png +0 -0
  567. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/49_2.png +0 -0
  568. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/49_3.png +0 -0
  569. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/49_4.png +0 -0
  570. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/49_5.png +0 -0
  571. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/49_6.png +0 -0
  572. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/49_7.png +0 -0
  573. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/50_0.png +0 -0
  574. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/50_1.png +0 -0
  575. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/50_2.png +0 -0
  576. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/50_3.png +0 -0
  577. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/50_4.png +0 -0
  578. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/50_5.png +0 -0
  579. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/50_6.png +0 -0
  580. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/50_7.png +0 -0
  581. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/51_0.png +0 -0
  582. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/51_1.png +0 -0
  583. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/51_2.png +0 -0
  584. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/51_3.png +0 -0
  585. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/51_4.png +0 -0
  586. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/51_5.png +0 -0
  587. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/51_6.png +0 -0
  588. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/51_7.png +0 -0
  589. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/52_0.png +0 -0
  590. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/52_1.png +0 -0
  591. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/52_2.png +0 -0
  592. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/52_3.png +0 -0
  593. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/52_4.png +0 -0
  594. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/52_5.png +0 -0
  595. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/52_6.png +0 -0
  596. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/52_7.png +0 -0
  597. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/53_0.png +0 -0
  598. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/53_1.png +0 -0
  599. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/53_2.png +0 -0
  600. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/53_3.png +0 -0
  601. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/53_4.png +0 -0
  602. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/53_5.png +0 -0
  603. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/53_6.png +0 -0
  604. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/53_7.png +0 -0
  605. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/54_0.png +0 -0
  606. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/54_1.png +0 -0
  607. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/54_2.png +0 -0
  608. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/54_3.png +0 -0
  609. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/54_4.png +0 -0
  610. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/54_5.png +0 -0
  611. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/54_6.png +0 -0
  612. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/54_7.png +0 -0
  613. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/55_0.png +0 -0
  614. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/55_1.png +0 -0
  615. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/55_2.png +0 -0
  616. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/55_3.png +0 -0
  617. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/55_4.png +0 -0
  618. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/55_5.png +0 -0
  619. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/55_6.png +0 -0
  620. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/55_7.png +0 -0
  621. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/56_0.png +0 -0
  622. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/56_1.png +0 -0
  623. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/56_2.png +0 -0
  624. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/56_3.png +0 -0
  625. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/56_4.png +0 -0
  626. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/56_5.png +0 -0
  627. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/56_6.png +0 -0
  628. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/56_7.png +0 -0
  629. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/57_0.png +0 -0
  630. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/57_1.png +0 -0
  631. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/57_2.png +0 -0
  632. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/57_3.png +0 -0
  633. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/57_4.png +0 -0
  634. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/57_5.png +0 -0
  635. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/57_6.png +0 -0
  636. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/57_7.png +0 -0
  637. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/58_0.png +0 -0
  638. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/58_1.png +0 -0
  639. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/58_2.png +0 -0
  640. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/58_3.png +0 -0
  641. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/58_4.png +0 -0
  642. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/58_5.png +0 -0
  643. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/58_6.png +0 -0
  644. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/58_7.png +0 -0
  645. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/59_0.png +0 -0
  646. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/59_1.png +0 -0
  647. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/59_2.png +0 -0
  648. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/59_3.png +0 -0
  649. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/59_4.png +0 -0
  650. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/59_5.png +0 -0
  651. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/59_6.png +0 -0
  652. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/59_7.png +0 -0
  653. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/60_0.png +0 -0
  654. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/60_1.png +0 -0
  655. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/60_2.png +0 -0
  656. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/60_3.png +0 -0
  657. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/60_4.png +0 -0
  658. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/60_5.png +0 -0
  659. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/60_6.png +0 -0
  660. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/60_7.png +0 -0
  661. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/61_0.png +0 -0
  662. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/61_1.png +0 -0
  663. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/61_2.png +0 -0
  664. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/61_3.png +0 -0
  665. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/61_4.png +0 -0
  666. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/61_5.png +0 -0
  667. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/61_6.png +0 -0
  668. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/61_7.png +0 -0
  669. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/62_0.png +0 -0
  670. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/62_1.png +0 -0
  671. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/62_2.png +0 -0
  672. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/62_3.png +0 -0
  673. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/62_4.png +0 -0
  674. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/62_5.png +0 -0
  675. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/62_6.png +0 -0
  676. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/62_7.png +0 -0
  677. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/63_0.png +0 -0
  678. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/63_1.png +0 -0
  679. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/63_2.png +0 -0
  680. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/63_3.png +0 -0
  681. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/63_4.png +0 -0
  682. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/63_5.png +0 -0
  683. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/63_6.png +0 -0
  684. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/63_7.png +0 -0
  685. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/64_0.png +0 -0
  686. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/64_1.png +0 -0
  687. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/64_2.png +0 -0
  688. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/64_3.png +0 -0
  689. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/64_4.png +0 -0
  690. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/64_5.png +0 -0
  691. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/64_6.png +0 -0
  692. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/64_7.png +0 -0
  693. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/65_0.png +0 -0
  694. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/65_1.png +0 -0
  695. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/65_2.png +0 -0
  696. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/65_3.png +0 -0
  697. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/65_4.png +0 -0
  698. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/65_5.png +0 -0
  699. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/65_6.png +0 -0
  700. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/65_7.png +0 -0
  701. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/66_0.png +0 -0
  702. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/66_1.png +0 -0
  703. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/66_2.png +0 -0
  704. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/66_3.png +0 -0
  705. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/66_4.png +0 -0
  706. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/66_5.png +0 -0
  707. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/66_6.png +0 -0
  708. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/66_7.png +0 -0
  709. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/67_0.png +0 -0
  710. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/67_1.png +0 -0
  711. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/67_2.png +0 -0
  712. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/67_3.png +0 -0
  713. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/67_4.png +0 -0
  714. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/67_5.png +0 -0
  715. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/67_6.png +0 -0
  716. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/67_7.png +0 -0
  717. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/68_0.png +0 -0
  718. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/68_1.png +0 -0
  719. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/68_2.png +0 -0
  720. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/68_3.png +0 -0
  721. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/68_4.png +0 -0
  722. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/68_5.png +0 -0
  723. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/68_6.png +0 -0
  724. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/68_7.png +0 -0
  725. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/69_0.png +0 -0
  726. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/69_1.png +0 -0
  727. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/69_2.png +0 -0
  728. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/69_3.png +0 -0
  729. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/69_4.png +0 -0
  730. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/69_5.png +0 -0
  731. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/69_6.png +0 -0
  732. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/69_7.png +0 -0
  733. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/70_0.png +0 -0
  734. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/70_1.png +0 -0
  735. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/70_2.png +0 -0
  736. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/70_3.png +0 -0
  737. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/70_4.png +0 -0
  738. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/70_5.png +0 -0
  739. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/70_6.png +0 -0
  740. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/70_7.png +0 -0
  741. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/71_0.png +0 -0
  742. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/71_1.png +0 -0
  743. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/71_2.png +0 -0
  744. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/71_3.png +0 -0
  745. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/71_4.png +0 -0
  746. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/71_5.png +0 -0
  747. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/71_6.png +0 -0
  748. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/71_7.png +0 -0
  749. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/72_0.png +0 -0
  750. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/72_1.png +0 -0
  751. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/72_2.png +0 -0
  752. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/72_3.png +0 -0
  753. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/72_4.png +0 -0
  754. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/72_5.png +0 -0
  755. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/72_6.png +0 -0
  756. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/72_7.png +0 -0
  757. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/73_0.png +0 -0
  758. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/73_1.png +0 -0
  759. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/73_2.png +0 -0
  760. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/73_3.png +0 -0
  761. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/73_4.png +0 -0
  762. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/73_5.png +0 -0
  763. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/73_6.png +0 -0
  764. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/73_7.png +0 -0
  765. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/74_0.png +0 -0
  766. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/74_1.png +0 -0
  767. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/74_2.png +0 -0
  768. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/74_3.png +0 -0
  769. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/74_4.png +0 -0
  770. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/74_5.png +0 -0
  771. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/74_6.png +0 -0
  772. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/74_7.png +0 -0
  773. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/75_0.png +0 -0
  774. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/75_1.png +0 -0
  775. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/75_2.png +0 -0
  776. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/75_3.png +0 -0
  777. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/75_4.png +0 -0
  778. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/75_5.png +0 -0
  779. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/75_6.png +0 -0
  780. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/75_7.png +0 -0
  781. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/76_0.png +0 -0
  782. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/76_1.png +0 -0
  783. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/76_2.png +0 -0
  784. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/76_3.png +0 -0
  785. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/76_4.png +0 -0
  786. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/76_5.png +0 -0
  787. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/76_6.png +0 -0
  788. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/76_7.png +0 -0
  789. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/77_0.png +0 -0
  790. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/77_1.png +0 -0
  791. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/77_2.png +0 -0
  792. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/77_3.png +0 -0
  793. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/77_4.png +0 -0
  794. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/77_5.png +0 -0
  795. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/77_6.png +0 -0
  796. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/77_7.png +0 -0
  797. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/78_0.png +0 -0
  798. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/78_1.png +0 -0
  799. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/78_2.png +0 -0
  800. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/78_3.png +0 -0
  801. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/78_4.png +0 -0
  802. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/78_5.png +0 -0
  803. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/78_6.png +0 -0
  804. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/78_7.png +0 -0
  805. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/79_0.png +0 -0
  806. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/79_1.png +0 -0
  807. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/79_2.png +0 -0
  808. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/79_3.png +0 -0
  809. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/79_4.png +0 -0
  810. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/79_5.png +0 -0
  811. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/79_6.png +0 -0
  812. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/79_7.png +0 -0
  813. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/80_0.png +0 -0
  814. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/80_1.png +0 -0
  815. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/80_2.png +0 -0
  816. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/80_3.png +0 -0
  817. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/80_4.png +0 -0
  818. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/80_5.png +0 -0
  819. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/80_6.png +0 -0
  820. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/80_7.png +0 -0
  821. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/81_0.png +0 -0
  822. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/81_1.png +0 -0
  823. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/81_2.png +0 -0
  824. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/81_3.png +0 -0
  825. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/81_4.png +0 -0
  826. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/81_5.png +0 -0
  827. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/81_6.png +0 -0
  828. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/81_7.png +0 -0
  829. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/82_0.png +0 -0
  830. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/82_1.png +0 -0
  831. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/82_2.png +0 -0
  832. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/82_3.png +0 -0
  833. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/82_4.png +0 -0
  834. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/82_5.png +0 -0
  835. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/82_6.png +0 -0
  836. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/82_7.png +0 -0
  837. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/83_0.png +0 -0
  838. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/83_1.png +0 -0
  839. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/83_2.png +0 -0
  840. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/83_3.png +0 -0
  841. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/83_4.png +0 -0
  842. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/83_5.png +0 -0
  843. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/83_6.png +0 -0
  844. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/83_7.png +0 -0
  845. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/84_0.png +0 -0
  846. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/84_1.png +0 -0
  847. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/84_2.png +0 -0
  848. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/84_3.png +0 -0
  849. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/84_4.png +0 -0
  850. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/84_5.png +0 -0
  851. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/84_6.png +0 -0
  852. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/84_7.png +0 -0
  853. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/85_0.png +0 -0
  854. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/85_1.png +0 -0
  855. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/85_2.png +0 -0
  856. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/85_3.png +0 -0
  857. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/85_4.png +0 -0
  858. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/85_5.png +0 -0
  859. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/85_6.png +0 -0
  860. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/85_7.png +0 -0
  861. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/86_0.png +0 -0
  862. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/86_1.png +0 -0
  863. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/86_2.png +0 -0
  864. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/86_3.png +0 -0
  865. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/86_4.png +0 -0
  866. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/86_5.png +0 -0
  867. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/86_6.png +0 -0
  868. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/86_7.png +0 -0
  869. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/87_0.png +0 -0
  870. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/87_1.png +0 -0
  871. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/87_2.png +0 -0
  872. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/87_3.png +0 -0
  873. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/87_4.png +0 -0
  874. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/87_5.png +0 -0
  875. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/87_6.png +0 -0
  876. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/87_7.png +0 -0
  877. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/88_0.png +0 -0
  878. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/88_1.png +0 -0
  879. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/88_2.png +0 -0
  880. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/88_3.png +0 -0
  881. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/88_4.png +0 -0
  882. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/88_5.png +0 -0
  883. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/88_6.png +0 -0
  884. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/88_7.png +0 -0
  885. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/89_0.png +0 -0
  886. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/89_1.png +0 -0
  887. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/89_2.png +0 -0
  888. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/89_3.png +0 -0
  889. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/89_4.png +0 -0
  890. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/89_5.png +0 -0
  891. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/89_6.png +0 -0
  892. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/89_7.png +0 -0
  893. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/90_0.png +0 -0
  894. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/90_1.png +0 -0
  895. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/90_2.png +0 -0
  896. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/90_3.png +0 -0
  897. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/90_4.png +0 -0
  898. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/90_5.png +0 -0
  899. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/90_6.png +0 -0
  900. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/90_7.png +0 -0
  901. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/91_0.png +0 -0
  902. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/91_1.png +0 -0
  903. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/91_2.png +0 -0
  904. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/91_3.png +0 -0
  905. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/91_4.png +0 -0
  906. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/91_5.png +0 -0
  907. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/91_6.png +0 -0
  908. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/91_7.png +0 -0
  909. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/92_0.png +0 -0
  910. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/92_1.png +0 -0
  911. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/92_2.png +0 -0
  912. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/92_3.png +0 -0
  913. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/92_4.png +0 -0
  914. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/92_5.png +0 -0
  915. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/92_6.png +0 -0
  916. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/92_7.png +0 -0
  917. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/93_0.png +0 -0
  918. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/93_1.png +0 -0
  919. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/93_2.png +0 -0
  920. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/93_3.png +0 -0
  921. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/93_4.png +0 -0
  922. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/93_5.png +0 -0
  923. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/93_6.png +0 -0
  924. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/93_7.png +0 -0
  925. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/94_0.png +0 -0
  926. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/94_1.png +0 -0
  927. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/94_2.png +0 -0
  928. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/94_3.png +0 -0
  929. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/94_4.png +0 -0
  930. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/94_5.png +0 -0
  931. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/94_6.png +0 -0
  932. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/94_7.png +0 -0
  933. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/95_0.png +0 -0
  934. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/95_1.png +0 -0
  935. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/95_2.png +0 -0
  936. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/95_3.png +0 -0
  937. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/95_4.png +0 -0
  938. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/95_5.png +0 -0
  939. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/95_6.png +0 -0
  940. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/95_7.png +0 -0
  941. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/96_0.png +0 -0
  942. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/96_1.png +0 -0
  943. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/96_2.png +0 -0
  944. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/96_3.png +0 -0
  945. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/96_4.png +0 -0
  946. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/96_5.png +0 -0
  947. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/96_6.png +0 -0
  948. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/96_7.png +0 -0
  949. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/97_0.png +0 -0
  950. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/97_1.png +0 -0
  951. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/97_2.png +0 -0
  952. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/97_3.png +0 -0
  953. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/97_4.png +0 -0
  954. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/97_5.png +0 -0
  955. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/97_6.png +0 -0
  956. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/97_7.png +0 -0
  957. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/98_0.png +0 -0
  958. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/98_1.png +0 -0
  959. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/98_2.png +0 -0
  960. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/98_3.png +0 -0
  961. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/98_4.png +0 -0
  962. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/98_5.png +0 -0
  963. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/98_6.png +0 -0
  964. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/98_7.png +0 -0
  965. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/99_0.png +0 -0
  966. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/99_1.png +0 -0
  967. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/99_2.png +0 -0
  968. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/99_3.png +0 -0
  969. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/99_4.png +0 -0
  970. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/99_5.png +0 -0
  971. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/99_6.png +0 -0
  972. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/data/labels/99_7.png +0 -0
  973. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/yolo-image.cpp +0 -0
  974. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/yolo-image.h +0 -0
  975. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/examples/yolo/yolov3-tiny.cpp +0 -0
  976. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/ggml-common.h +0 -0
  977. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/ggml.pc.in +0 -0
  978. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/include/ggml/ggml-alloc.h +0 -0
  979. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/include/ggml/ggml-backend.h +0 -0
  980. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/requirements.txt +0 -0
  981. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/spm-headers/ggml-alloc.h +0 -0
  982. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/spm-headers/ggml-backend.h +0 -0
  983. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/spm-headers/ggml.h +0 -0
  984. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/spm-headers/module.modulemap +0 -0
  985. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/src/CMakeLists.txt +0 -0
  986. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/src/ggml-backend-impl.h +0 -0
  987. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/src/ggml-cuda/acc.cu +0 -0
  988. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/src/ggml-cuda/acc.cuh +0 -0
  989. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/src/ggml-cuda/arange.cu +0 -0
  990. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/src/ggml-cuda/arange.cuh +0 -0
  991. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/src/ggml-cuda/argsort.cuh +0 -0
  992. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/src/ggml-cuda/binbcast.cuh +0 -0
  993. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/src/ggml-cuda/clamp.cuh +0 -0
  994. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/src/ggml-cuda/concat.cu +0 -0
  995. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/src/ggml-cuda/concat.cuh +0 -0
  996. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/src/ggml-cuda/diagmask.cu +0 -0
  997. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/src/ggml-cuda/diagmask.cuh +0 -0
  998. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/src/ggml-cuda/getrows.cu +0 -0
  999. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/src/ggml-cuda/getrows.cuh +0 -0
  1000. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/src/ggml-cuda/im2col.cu +0 -0
  1001. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/src/ggml-cuda/im2col.cuh +0 -0
  1002. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/src/ggml-cuda/mmq.cuh +0 -0
  1003. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/src/ggml-cuda/mmvq.cuh +0 -0
  1004. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/src/ggml-cuda/norm.cu +0 -0
  1005. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/src/ggml-cuda/norm.cuh +0 -0
  1006. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/src/ggml-cuda/pad.cu +0 -0
  1007. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/src/ggml-cuda/pad.cuh +0 -0
  1008. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/src/ggml-cuda/pool2d.cu +0 -0
  1009. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/src/ggml-cuda/pool2d.cuh +0 -0
  1010. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/src/ggml-cuda/rope.cu +0 -0
  1011. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/src/ggml-cuda/rope.cuh +0 -0
  1012. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/src/ggml-cuda/scale.cuh +0 -0
  1013. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/src/ggml-cuda/softmax.cuh +0 -0
  1014. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/src/ggml-cuda/sumrows.cu +0 -0
  1015. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/src/ggml-cuda/sumrows.cuh +0 -0
  1016. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/src/ggml-cuda/tsembd.cu +0 -0
  1017. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/src/ggml-cuda/tsembd.cuh +0 -0
  1018. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/src/ggml-cuda/upscale.cuh +0 -0
  1019. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/src/ggml-cuda/vecdotq.cuh +0 -0
  1020. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/src/ggml-cuda.h +0 -0
  1021. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/src/ggml-kompute.h +0 -0
  1022. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/src/ggml-metal.h +0 -0
  1023. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/src/ggml-opencl.h +0 -0
  1024. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/src/ggml-sycl.h +0 -0
  1025. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/tests/CMakeLists.txt +0 -0
  1026. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/tests/test-arange.cpp +0 -0
  1027. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/tests/test-backend-buffer.cpp +0 -0
  1028. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/tests/test-blas0.c +0 -0
  1029. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/tests/test-conv-transpose.c +0 -0
  1030. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/tests/test-conv1d.cpp +0 -0
  1031. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/tests/test-conv2d.cpp +0 -0
  1032. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/tests/test-customop.c +0 -0
  1033. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/tests/test-dup.c +0 -0
  1034. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/tests/test-grad0.cpp +0 -0
  1035. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/tests/test-mul-mat.cpp +0 -0
  1036. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/tests/test-mul-mat0.c +0 -0
  1037. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/tests/test-mul-mat1.c +0 -0
  1038. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/tests/test-mul-mat2.c +0 -0
  1039. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/tests/test-opt.cpp +0 -0
  1040. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/tests/test-pool.c +0 -0
  1041. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/tests/test-quantize-fns.cpp +0 -0
  1042. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/tests/test-quantize-perf.cpp +0 -0
  1043. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/tests/test-rel-pos.c +0 -0
  1044. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/tests/test-svd0.c +0 -0
  1045. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/tests/test-timestep_embedding.cpp +0 -0
  1046. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/tests/test-vec0.c +0 -0
  1047. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/tests/test-vec1.c +0 -0
  1048. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/tests/test-vec2.c +0 -0
  1049. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/tests/test-xpos.c +0 -0
  1050. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/tests/test0.c +0 -0
  1051. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/tests/test0.zig +0 -0
  1052. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/tests/test1.c +0 -0
  1053. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/tests/test1.zig +0 -0
  1054. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/tests/test2.c +0 -0
  1055. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/tests/test2.zig +0 -0
  1056. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/tests/test3.c +0 -0
  1057. {ggml_python-0.0.34 → ggml_python-0.0.36}/vendor/ggml/tests/test3.zig +0 -0
@@ -0,0 +1,15 @@
1
+ # To get started with Dependabot version updates, you'll need to specify which
2
+ # package ecosystems to update and where the package manifests are located.
3
+ # Please see the documentation for all configuration options:
4
+ # https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
5
+
6
+ version: 2
7
+ updates:
8
+ - package-ecosystem: "pip" # See documentation for possible values
9
+ directory: "/" # Location of package manifests
10
+ schedule:
11
+ interval: "weekly"
12
+ - package-ecosystem: "github-actions"
13
+ directory: "/"
14
+ schedule:
15
+ interval: "weekly"
@@ -10,11 +10,11 @@ jobs:
10
10
  runs-on: ubuntu-latest
11
11
 
12
12
  steps:
13
- - uses: actions/checkout@v3
13
+ - uses: actions/checkout@v4
14
14
  with:
15
15
  submodules: "true"
16
16
  - name: Set up Python
17
- uses: actions/setup-python@v4
17
+ uses: actions/setup-python@v5
18
18
  with:
19
19
  python-version: "3.8"
20
20
  - name: Install dependencies
@@ -10,116 +10,105 @@ on:
10
10
 
11
11
  jobs:
12
12
  build-linux:
13
-
14
13
  runs-on: ubuntu-latest
15
14
  strategy:
16
15
  matrix:
17
16
  python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
18
17
 
19
18
  steps:
20
- - uses: actions/checkout@v3
19
+ - uses: actions/checkout@v4
21
20
  with:
22
21
  submodules: "true"
23
22
  - name: Set up Python ${{ matrix.python-version }}
24
- uses: actions/setup-python@v4
23
+ uses: actions/setup-python@v5
25
24
  with:
26
25
  python-version: ${{ matrix.python-version }}
27
26
  - name: Install dependencies
28
27
  run: |
29
28
  python3 -m pip install --upgrade pip pytest cmake scikit-build setuptools
30
- python3 -m pip install --verbose --editable .
29
+ python3 -m pip install \
30
+ --verbose \
31
+ --config-settings cmake.args='-DCMAKE_BUILD_TYPE=Debug;-DCMAKE_CXX_FLAGS=-g3;-DCMAKE_C_FLAGS=-g3' \
32
+ --config-settings cmake.verbose=true \
33
+ --config-settings logging.level=INFO \
34
+ --config-settings install.strip=false \
35
+ --editable .
31
36
  - name: Test with pytest
32
37
  run: |
33
- python3 -m pytest
38
+ python -m pytest -s -vvvv
34
39
 
35
40
  build-windows:
36
-
37
41
  runs-on: windows-latest
38
42
  strategy:
39
43
  matrix:
40
44
  python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
41
45
 
42
46
  steps:
43
- - uses: actions/checkout@v3
47
+ - uses: actions/checkout@v4
44
48
  with:
45
49
  submodules: "true"
46
50
  - name: Set up Python ${{ matrix.python-version }}
47
- uses: actions/setup-python@v4
51
+ uses: actions/setup-python@v5
48
52
  with:
49
53
  python-version: ${{ matrix.python-version }}
50
54
 
51
55
  - name: Install dependencies
52
56
  run: |
53
57
  python3 -m pip install --upgrade pip pytest cmake scikit-build setuptools
54
- python3 -m pip install --verbose --editable .
58
+ python3 -m pip install --verbose --config-settings cmake.args='-DCMAKE_BUILD_TYPE=Debug;-DCMAKE_CXX_FLAGS=-g3;-DCMAKE_C_FLAGS=-g3' --config-settings cmake.verbose=true --config-settings logging.level=INFO --config-settings install.strip=false --editable .
55
59
  - name: Test with pytest
56
60
  run: |
57
- python3 -m pytest
61
+ python -m pytest -s -vvvv
58
62
 
59
63
  build-macos:
60
-
61
- runs-on: macos-latest
64
+ runs-on: macos-13
62
65
  strategy:
63
66
  matrix:
64
67
  python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
65
68
 
66
69
  steps:
67
- - uses: actions/checkout@v3
70
+ - uses: actions/checkout@v4
68
71
  with:
69
72
  submodules: "true"
70
73
  - name: Set up Python ${{ matrix.python-version }}
71
- uses: actions/setup-python@v4
74
+ uses: actions/setup-python@v5
72
75
  with:
73
76
  python-version: ${{ matrix.python-version }}
74
77
  - name: Install dependencies
75
78
  run: |
76
79
  python3 -m pip install --upgrade pip pytest cmake scikit-build setuptools
77
- python3 -m pip install --verbose --editable .
80
+ python3 -m pip install \
81
+ --verbose \
82
+ --config-settings cmake.args='-DCMAKE_BUILD_TYPE=Debug;-DCMAKE_CXX_FLAGS=-g3;-DCMAKE_C_FLAGS=-g3' \
83
+ --config-settings cmake.verbose=true \
84
+ --config-settings logging.level=INFO \
85
+ --config-settings install.strip=false \
86
+ --editable .
78
87
  - name: Test with pytest
79
88
  run: |
80
- python3 -m pytest
81
-
82
- # build-linux-opencl:
83
- # runs-on: ubuntu-latest
84
-
85
- # steps:
86
- # - uses: actions/checkout@v3
87
- # with:
88
- # submodules: "true"
89
-
90
- # - name: Dependencies
91
- # run: |
92
- # wget -O- https://apt.repos.intel.com/intel-gpg-keys/GPG-PUB-KEY-INTEL-SW-PRODUCTS.PUB | gpg --dearmor | sudo tee /usr/share/keyrings/oneapi-archive-keyring.gpg > /dev/null
93
- # echo "deb [signed-by=/usr/share/keyrings/oneapi-archive-keyring.gpg] https://apt.repos.intel.com/oneapi all main" | sudo tee /etc/apt/sources.list.d/oneAPI.list
94
- # sudo apt-get update
95
- # sudo apt-get install -y --no-install-recommends llvm intel-oneapi-runtime-opencl intel-oneapi-runtime-compilers libclblast-dev
96
- # sudo apt-get install -y python3-dev python3-pip make
97
-
98
- # - name: Setup
99
- # run: |
100
- # python3 -m pip install pytest
101
- # make build.clblast
102
-
103
- # - name: Test with pytest
104
- # run: |
105
- # make test
89
+ python -m pytest -s -vvvv
106
90
 
107
91
  build-macos-metal:
108
-
109
- runs-on: macos-latest
92
+ runs-on: macos-13
110
93
 
111
94
  steps:
112
- - uses: actions/checkout@v3
95
+ - uses: actions/checkout@v4
113
96
  with:
114
97
  submodules: "true"
115
98
  - name: Set up Python
116
- uses: actions/setup-python@v4
99
+ uses: actions/setup-python@v5
117
100
  with:
118
101
  python-version: "3.8"
119
102
  - name: Install dependencies
120
103
  run: |
121
104
  python3 -m pip install --upgrade pip pytest cmake scikit-build setuptools
122
- python3 -m pip install --verbose --editable . --config-settings=cmake.args='-DGGML_METAL=On'
105
+ python3 -m pip install \
106
+ --verbose \
107
+ --config-settings cmake.args='-DCMAKE_BUILD_TYPE=Debug;-DCMAKE_CXX_FLAGS=-g3;-DCMAKE_C_FLAGS=-g3;-DGGML_METAL=On' \
108
+ --config-settings cmake.verbose=true \
109
+ --config-settings logging.level=INFO \
110
+ --config-settings install.strip=false \
111
+ --editable .
123
112
  - name: Test with pytest
124
113
  run: |
125
- python3 -m pytest
114
+ python -m pytest -s -vvvv
@@ -22,7 +22,7 @@ jobs:
22
22
  $matrix = @{
23
23
  'os' = @('ubuntu-20.04', 'windows-latest')
24
24
  'pyver' = @("3.10", "3.11", "3.12")
25
- 'cuda' = @("12.1.1", "12.2.2", "12.3.2")
25
+ 'cuda' = @("12.1.1", "12.2.2", "12.3.2", "12.4.1")
26
26
  'releasetag' = @("basic")
27
27
  }
28
28
 
@@ -47,12 +47,12 @@ jobs:
47
47
  with:
48
48
  submodules: "recursive"
49
49
 
50
- - uses: actions/setup-python@v4
50
+ - uses: actions/setup-python@v5
51
51
  with:
52
52
  python-version: ${{ matrix.pyver }}
53
53
 
54
54
  - name: Setup Mamba
55
- uses: conda-incubator/setup-miniconda@v2.2.0
55
+ uses: conda-incubator/setup-miniconda@v3.0.4
56
56
  with:
57
57
  activate-environment: "build"
58
58
  python-version: ${{ matrix.pyver }}
@@ -65,7 +65,7 @@ jobs:
65
65
  - name: VS Integration Cache
66
66
  id: vs-integration-cache
67
67
  if: runner.os == 'Windows'
68
- uses: actions/cache@v3.3.2
68
+ uses: actions/cache@v4.0.2
69
69
  with:
70
70
  path: ./MSBuildExtensions
71
71
  key: cuda-${{ matrix.cuda }}-vs-integration
@@ -74,7 +74,7 @@ jobs:
74
74
  if: runner.os == 'Windows' && steps.vs-integration-cache.outputs.cache-hit != 'true'
75
75
  run: |
76
76
  if ($env:CUDAVER -eq '12.1.1') {$x = '12.1.0'} else {$x = $env:CUDAVER}
77
- $links = (Invoke-RestMethod 'https://github.com/Jimver/cuda-toolkit/raw/dc0ca7bb29c5a92f7a963d3d5c93f8d59765136a/src/links/windows-links.ts').Trim().split().where({$_ -ne ''})
77
+ $links = (Invoke-RestMethod 'https://raw.githubusercontent.com/Jimver/cuda-toolkit/master/src/links/windows-links.ts').Trim().split().where({$_ -ne ''})
78
78
  for ($i=$q=0;$i -lt $links.count -and $q -lt 2;$i++) {if ($links[$i] -eq "'$x',") {$q++}}
79
79
  Invoke-RestMethod $links[$i].Trim("'") -OutFile 'cudainstaller.zip'
80
80
  & 'C:\Program Files\7-Zip\7z.exe' e cudainstaller.zip -oMSBuildExtensions -r *\MSBuildExtensions\* > $null
@@ -122,7 +122,7 @@ jobs:
122
122
  python -m build --wheel
123
123
  Write-Output "CUDA_VERSION=$cudaVersion" >> $env:GITHUB_ENV
124
124
 
125
- - uses: softprops/action-gh-release@v1
125
+ - uses: softprops/action-gh-release@v2
126
126
  with:
127
127
  files: dist/*
128
128
  tag_name: ${{ github.ref_name }}-cu${{ env.CUDA_VERSION }}
@@ -31,13 +31,14 @@ jobs:
31
31
  - name: Checkout
32
32
  uses: actions/checkout@v4
33
33
  - name: Setup Pages
34
- uses: actions/configure-pages@v4
34
+ uses: actions/configure-pages@v5
35
35
  - name: Build
36
36
  run: |
37
37
  ./scripts/releases-to-pep-503.sh index/whl/cpu '^[v]?[0-9]+\.[0-9]+\.[0-9]+$'
38
38
  ./scripts/releases-to-pep-503.sh index/whl/cu121 '^[v]?[0-9]+\.[0-9]+\.[0-9]+-cu121$'
39
39
  ./scripts/releases-to-pep-503.sh index/whl/cu122 '^[v]?[0-9]+\.[0-9]+\.[0-9]+-cu122$'
40
40
  ./scripts/releases-to-pep-503.sh index/whl/cu123 '^[v]?[0-9]+\.[0-9]+\.[0-9]+-cu123$'
41
+ ./scripts/releases-to-pep-503.sh index/whl/cu124 '^[v]?[0-9]+\.[0-9]+\.[0-9]+-cu124$'
41
42
  ./scripts/releases-to-pep-503.sh index/whl/metal '^[v]?[0-9]+\.[0-9]+\.[0-9]+-metal$'
42
43
  - name: Upload artifact
43
44
  uses: actions/upload-pages-artifact@v3
@@ -1,4 +1,4 @@
1
- name: Build Wheels (Metal)
1
+ name: Wheels Metal
2
2
 
3
3
  on: workflow_dispatch
4
4
 
@@ -41,7 +41,7 @@ jobs:
41
41
  with:
42
42
  submodules: "recursive"
43
43
 
44
- - uses: actions/setup-python@v4
44
+ - uses: actions/setup-python@v5
45
45
  with:
46
46
  python-version: ${{ matrix.pyver }}
47
47
 
@@ -78,7 +78,7 @@ jobs:
78
78
  VERBOSE=1 python -m build --wheel
79
79
  fi
80
80
 
81
- - uses: softprops/action-gh-release@v1
81
+ - uses: softprops/action-gh-release@v2
82
82
  with:
83
83
  files: dist/*
84
84
  # set release name to <tag>-metal
@@ -14,12 +14,12 @@ jobs:
14
14
  os: [ubuntu-20.04, macos-11, windows-2022]
15
15
 
16
16
  steps:
17
- - uses: actions/checkout@v3
17
+ - uses: actions/checkout@v4
18
18
  with:
19
19
  submodules: "recursive"
20
20
 
21
21
  - name: Build wheels
22
- uses: pypa/cibuildwheel@v2.16.5
22
+ uses: pypa/cibuildwheel@v2.18.0
23
23
  env:
24
24
  # disable repair
25
25
  CIBW_REPAIR_WHEEL_COMMAND: ""
@@ -30,7 +30,7 @@ jobs:
30
30
  package-dir: .
31
31
  output-dir: wheelhouse
32
32
 
33
- - uses: actions/upload-artifact@v3
33
+ - uses: actions/upload-artifact@v4
34
34
  with:
35
35
  path: ./wheelhouse/*.whl
36
36
 
@@ -40,11 +40,11 @@ jobs:
40
40
  runs-on: ubuntu-latest
41
41
 
42
42
  steps:
43
- - uses: actions/download-artifact@v3
43
+ - uses: actions/download-artifact@v4
44
44
  with:
45
45
  name: artifact
46
46
  path: dist
47
- - uses: softprops/action-gh-release@v1
47
+ - uses: softprops/action-gh-release@v2
48
48
  with:
49
49
  files: dist/*
50
50
  env:
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: ggml_python
3
- Version: 0.0.34
3
+ Version: 0.0.36
4
4
  Summary: Python bindings for ggml
5
5
  Author-Email: Andrei Betlen <abetlen@gmail.com>
6
6
  License: MIT
@@ -23,13 +23,13 @@ Requires-Dist: mkdocs-material; extra == "docs"
23
23
  Requires-Dist: pillow; extra == "docs"
24
24
  Requires-Dist: cairosvg; extra == "docs"
25
25
  Requires-Dist: build; extra == "publish"
26
- Requires-Dist: accelerate==0.19.0; extra == "convert"
27
- Requires-Dist: numpy==1.24.3; extra == "convert"
28
- Requires-Dist: sentencepiece==0.1.98; extra == "convert"
29
- Requires-Dist: torch==2.0.1; extra == "convert"
30
- Requires-Dist: torchaudio==2.0.2; extra == "convert"
31
- Requires-Dist: torchvision==0.15.2; extra == "convert"
32
- Requires-Dist: transformers==4.29.2; extra == "convert"
26
+ Requires-Dist: accelerate==0.30.1; extra == "convert"
27
+ Requires-Dist: numpy==1.26.4; extra == "convert"
28
+ Requires-Dist: sentencepiece==0.2.0; extra == "convert"
29
+ Requires-Dist: torch==2.3.0; extra == "convert"
30
+ Requires-Dist: torchaudio==2.3.0; extra == "convert"
31
+ Requires-Dist: torchvision==0.18.0; extra == "convert"
32
+ Requires-Dist: transformers==4.40.2; extra == "convert"
33
33
  Provides-Extra: test
34
34
  Provides-Extra: docs
35
35
  Provides-Extra: publish
@@ -1,24 +1,24 @@
1
1
  --extra-index-url https://download.pytorch.org/whl/cpu
2
- certifi==2022.12.7
2
+ certifi==2023.7.22
3
3
  charset-normalizer==2.1.1
4
4
  clip==1.0
5
5
  filelock==3.9.0
6
6
  ftfy==6.1.1
7
7
  ggml-python @ git+https://github.com/abetlen/ggml-python@main
8
- idna==3.4
9
- Jinja2==3.1.2
8
+ idna==3.7
9
+ Jinja2==3.1.4
10
10
  MarkupSafe==2.1.2
11
- mpmath==1.2.1
11
+ mpmath==1.3.0
12
12
  networkx==3.0
13
13
  numpy==1.24.1
14
- Pillow==9.3.0
14
+ Pillow==10.3.0
15
15
  regex==2023.6.3
16
- requests==2.28.1
16
+ requests==2.31.0
17
17
  scipy==1.10.1
18
18
  sympy==1.11.1
19
19
  torch==2.0.1+cpu
20
20
  torchvision==0.15.2+cpu
21
- tqdm==4.65.0
21
+ tqdm==4.66.3
22
22
  typing-extensions==4.6.3
23
- urllib3==1.26.13
23
+ urllib3==1.26.18
24
24
  wcwidth==0.2.6
@@ -0,0 +1,89 @@
1
+ # %% [markdown]
2
+ """
3
+ # Single-batch stochastic gradient descent example using ggml
4
+
5
+ This example demonstrates how to use ggml to implement a simple SGD optimizer.
6
+ """
7
+ # %%
8
+ import ggml
9
+ import random
10
+
11
+ a_real = 3.0
12
+ b_real = 4.0
13
+
14
+ ctx0 = ggml.ggml_init(ggml.ggml_init_params(
15
+ mem_size=128 * 1024 * 1024, mem_buffer=None, no_alloc=False
16
+ ))
17
+
18
+ assert ctx0 is not None
19
+
20
+ # define parameters
21
+ a = ggml.ggml_new_tensor_1d(ctx0, ggml.GGML_TYPE_F32, 1)
22
+ ggml.ggml_set_param(ctx0, a)
23
+
24
+ b = ggml.ggml_new_tensor_1d(ctx0, ggml.GGML_TYPE_F32, 1)
25
+ ggml.ggml_set_param(ctx0, b)
26
+
27
+ # define input and output
28
+ x = ggml.ggml_new_tensor_1d(ctx0, ggml.GGML_TYPE_F32, 1)
29
+ ggml.ggml_set_input(x)
30
+
31
+ tmp = ggml.ggml_mul(ctx0, a, x)
32
+ f = ggml.ggml_add(ctx0, tmp, b)
33
+
34
+ # define loss
35
+ f_true = ggml.ggml_new_tensor_1d(ctx0, ggml.GGML_TYPE_F32, 1)
36
+ ggml.ggml_set_input(f_true)
37
+
38
+ tmp = ggml.ggml_sub(ctx0, f, f_true)
39
+ loss = ggml.ggml_mul(ctx0, tmp, tmp)
40
+
41
+ # build forward and backward graph
42
+ gf = ggml.ggml_new_graph_custom(ctx0, ggml.GGML_DEFAULT_GRAPH_SIZE, True)
43
+ ggml.ggml_build_forward_expand(gf, loss)
44
+ gb = ggml.ggml_graph_dup(ctx0, gf)
45
+ ggml.ggml_build_backward_expand(ctx0, gf, gb, False)
46
+
47
+ # initialize parameters
48
+ ggml.ggml_set_f32(a, 1.0)
49
+ ggml.ggml_set_f32(b, 1.0)
50
+
51
+ # SGD
52
+ lr = 1e-2
53
+ nsteps = 1000
54
+ decay = 1e-3
55
+
56
+ for i in range(nsteps):
57
+ # sample data
58
+ x_sample = random.uniform(-10, 10)
59
+ f_sample = a_real * x_sample + b_real
60
+
61
+ # set input
62
+ ggml.ggml_set_f32(x, x_sample)
63
+ ggml.ggml_set_f32(f_true, f_sample)
64
+
65
+ # reset graph
66
+ ggml.ggml_graph_reset(gf)
67
+ ggml.ggml_set_f32(loss.contents.grad, 1.0)
68
+
69
+ # compute forward and backward
70
+ ggml.ggml_graph_compute_with_ctx(ctx0, gb, 1)
71
+
72
+ # print loss
73
+ loss_ = ggml.ggml_get_f32_1d(loss, 0)
74
+ print(f"step {i}: loss = {loss_}")
75
+
76
+ # decay learning rate
77
+ lr *= (1.0 - decay)
78
+
79
+ # update parameters
80
+ ggml.ggml_set_f32(a, ggml.ggml_get_f32_1d(a, 0) - lr * ggml.ggml_get_f32_1d(a.contents.grad, 0))
81
+ ggml.ggml_set_f32(b, ggml.ggml_get_f32_1d(b, 0) - lr * ggml.ggml_get_f32_1d(b.contents.grad, 0))
82
+
83
+ # print parameters
84
+ print(f"a = {ggml.ggml_get_f32_1d(a, 0):.2f}, b = {ggml.ggml_get_f32_1d(b, 0):.2f}")
85
+
86
+
87
+ ggml.ggml_free(ctx0)
88
+
89
+ # %%