ggml-python 0.0.30__tar.gz → 0.0.31__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.
- ggml_python-0.0.31/.github/workflows/wheels-cuda.yaml +130 -0
- ggml_python-0.0.31/.github/workflows/wheels-index.yaml +48 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/PKG-INFO +3 -3
- {ggml_python-0.0.30 → ggml_python-0.0.31}/README.md +2 -2
- {ggml_python-0.0.30 → ggml_python-0.0.31}/examples/replit/main.py +8 -8
- ggml_python-0.0.31/ggml/__init__.py +3 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/ggml/ggml.py +447 -458
- ggml_python-0.0.31/scripts/releases-to-pep-503.sh +58 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/tests/test_ggml.py +4 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/tests/test_ggml_cuda.py +1 -1
- {ggml_python-0.0.30 → ggml_python-0.0.31}/tests/test_ggml_metal.py +1 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/CMakeLists.txt +3 -2
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/docs/gguf.md +61 -21
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/common-ggml.cpp +6 -27
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/gpt-2/main-backend.cpp +2 -2
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/gpt-2/main-batched.cpp +7 -10
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/gpt-2/main-sched.cpp +15 -16
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/magika/CMakeLists.txt +2 -2
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/magika/main.cpp +1 -1
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/python/README.md +1 -1
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/python/ggml/__init__.pyi +4 -4
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/simple/CMakeLists.txt +2 -2
- ggml_python-0.0.31/vendor/ggml/examples/simple/README.md +61 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/simple/simple-backend.cpp +2 -2
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/simple/simple-ctx.cpp +4 -4
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/whisper/main.cpp +50 -15
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/whisper/whisper.cpp +613 -23
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/whisper/whisper.h +48 -1
- ggml_python-0.0.31/vendor/ggml/ggml-common.h +1830 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/include/ggml/ggml-alloc.h +13 -5
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/include/ggml/ggml-backend.h +44 -20
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/include/ggml/ggml.h +71 -50
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/scripts/sync-llama-am.sh +4 -0
- ggml_python-0.0.31/vendor/ggml/scripts/sync-llama.last +1 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/scripts/sync-llama.sh +2 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/scripts/sync-whisper-am.sh +4 -0
- ggml_python-0.0.31/vendor/ggml/scripts/sync-whisper.last +1 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/scripts/sync-whisper.sh +2 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/src/CMakeLists.txt +16 -6
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/src/ggml-alloc.c +57 -67
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/src/ggml-backend-impl.h +19 -3
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/src/ggml-backend.c +482 -229
- ggml_python-0.0.31/vendor/ggml/src/ggml-common.h +1852 -0
- ggml_python-0.0.31/vendor/ggml/src/ggml-cuda/acc.cu +47 -0
- ggml_python-0.0.31/vendor/ggml/src/ggml-cuda/acc.cuh +5 -0
- ggml_python-0.0.31/vendor/ggml/src/ggml-cuda/alibi.cu +63 -0
- ggml_python-0.0.31/vendor/ggml/src/ggml-cuda/alibi.cuh +5 -0
- ggml_python-0.0.31/vendor/ggml/src/ggml-cuda/arange.cu +34 -0
- ggml_python-0.0.31/vendor/ggml/src/ggml-cuda/arange.cuh +5 -0
- ggml_python-0.0.31/vendor/ggml/src/ggml-cuda/argsort.cu +77 -0
- ggml_python-0.0.31/vendor/ggml/src/ggml-cuda/argsort.cuh +3 -0
- ggml_python-0.0.31/vendor/ggml/src/ggml-cuda/binbcast.cu +236 -0
- ggml_python-0.0.31/vendor/ggml/src/ggml-cuda/binbcast.cuh +6 -0
- ggml_python-0.0.31/vendor/ggml/src/ggml-cuda/clamp.cu +35 -0
- ggml_python-0.0.31/vendor/ggml/src/ggml-cuda/clamp.cuh +5 -0
- ggml_python-0.0.31/vendor/ggml/src/ggml-cuda/common.cuh +557 -0
- ggml_python-0.0.31/vendor/ggml/src/ggml-cuda/concat.cu +49 -0
- ggml_python-0.0.31/vendor/ggml/src/ggml-cuda/concat.cuh +5 -0
- ggml_python-0.0.31/vendor/ggml/src/ggml-cuda/convert.cu +824 -0
- ggml_python-0.0.31/vendor/ggml/src/ggml-cuda/convert.cuh +13 -0
- ggml_python-0.0.31/vendor/ggml/src/ggml-cuda/cpy.cu +461 -0
- ggml_python-0.0.31/vendor/ggml/src/ggml-cuda/cpy.cuh +7 -0
- ggml_python-0.0.31/vendor/ggml/src/ggml-cuda/dequantize.cuh +103 -0
- ggml_python-0.0.31/vendor/ggml/src/ggml-cuda/diagmask.cu +40 -0
- ggml_python-0.0.31/vendor/ggml/src/ggml-cuda/diagmask.cuh +5 -0
- ggml_python-0.0.31/vendor/ggml/src/ggml-cuda/dmmv.cu +817 -0
- ggml_python-0.0.31/vendor/ggml/src/ggml-cuda/dmmv.cuh +7 -0
- ggml_python-0.0.31/vendor/ggml/src/ggml-cuda/getrows.cu +178 -0
- ggml_python-0.0.31/vendor/ggml/src/ggml-cuda/getrows.cuh +5 -0
- ggml_python-0.0.31/vendor/ggml/src/ggml-cuda/im2col.cu +104 -0
- ggml_python-0.0.31/vendor/ggml/src/ggml-cuda/im2col.cuh +5 -0
- ggml_python-0.0.31/vendor/ggml/src/ggml-cuda/mmq.cu +2265 -0
- ggml_python-0.0.31/vendor/ggml/src/ggml-cuda/mmq.cuh +9 -0
- ggml_python-0.0.31/vendor/ggml/src/ggml-cuda/mmvq.cu +406 -0
- ggml_python-0.0.31/vendor/ggml/src/ggml-cuda/mmvq.cuh +7 -0
- ggml_python-0.0.31/vendor/ggml/src/ggml-cuda/norm.cu +215 -0
- ggml_python-0.0.31/vendor/ggml/src/ggml-cuda/norm.cuh +7 -0
- ggml_python-0.0.31/vendor/ggml/src/ggml-cuda/pad.cu +49 -0
- ggml_python-0.0.31/vendor/ggml/src/ggml-cuda/pad.cuh +5 -0
- ggml_python-0.0.31/vendor/ggml/src/ggml-cuda/pool2d.cu +94 -0
- ggml_python-0.0.31/vendor/ggml/src/ggml-cuda/pool2d.cuh +5 -0
- ggml_python-0.0.31/vendor/ggml/src/ggml-cuda/quantize.cu +45 -0
- ggml_python-0.0.31/vendor/ggml/src/ggml-cuda/quantize.cuh +5 -0
- ggml_python-0.0.31/vendor/ggml/src/ggml-cuda/rope.cu +308 -0
- ggml_python-0.0.31/vendor/ggml/src/ggml-cuda/rope.cuh +5 -0
- ggml_python-0.0.31/vendor/ggml/src/ggml-cuda/scale.cu +32 -0
- ggml_python-0.0.31/vendor/ggml/src/ggml-cuda/scale.cuh +5 -0
- ggml_python-0.0.31/vendor/ggml/src/ggml-cuda/softmax.cu +201 -0
- ggml_python-0.0.31/vendor/ggml/src/ggml-cuda/softmax.cuh +5 -0
- ggml_python-0.0.31/vendor/ggml/src/ggml-cuda/sumrows.cu +40 -0
- ggml_python-0.0.31/vendor/ggml/src/ggml-cuda/sumrows.cuh +3 -0
- ggml_python-0.0.31/vendor/ggml/src/ggml-cuda/tsembd.cu +47 -0
- ggml_python-0.0.31/vendor/ggml/src/ggml-cuda/tsembd.cuh +5 -0
- ggml_python-0.0.31/vendor/ggml/src/ggml-cuda/unary.cu +240 -0
- ggml_python-0.0.31/vendor/ggml/src/ggml-cuda/unary.cuh +27 -0
- ggml_python-0.0.31/vendor/ggml/src/ggml-cuda/upscale.cu +48 -0
- ggml_python-0.0.31/vendor/ggml/src/ggml-cuda/upscale.cuh +5 -0
- ggml_python-0.0.31/vendor/ggml/src/ggml-cuda/vecdotq.cuh +1280 -0
- ggml_python-0.0.31/vendor/ggml/src/ggml-cuda.cu +2843 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/src/ggml-cuda.h +6 -15
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/src/ggml-impl.h +6 -2
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/src/ggml-kompute.cpp +10 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/src/ggml-metal.m +111 -37
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/src/ggml-metal.metal +537 -937
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/src/ggml-opencl.cpp +5 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/src/ggml-quants.c +1096 -1105
- ggml_python-0.0.31/vendor/ggml/src/ggml-quants.h +133 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/src/ggml-sycl.cpp +2243 -804
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/src/ggml-sycl.h +19 -4
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/src/ggml-vulkan.cpp +1297 -771
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/src/ggml-vulkan.h +1 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/src/ggml.c +724 -386
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/tests/test-backend-buffer.cpp +2 -3
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/tests/test-backend-ops.cpp +23 -9
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/tests/test-conv1d.cpp +3 -5
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/tests/test-conv2d.cpp +3 -5
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/tests/test-mul-mat.cpp +3 -5
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/tests/test-quantize-fns.cpp +0 -5
- ggml_python-0.0.30/ggml/__init__.py +0 -3
- ggml_python-0.0.30/vendor/ggml/examples/simple/README.md +0 -25
- ggml_python-0.0.30/vendor/ggml/scripts/sync-llama.last +0 -1
- ggml_python-0.0.30/vendor/ggml/scripts/sync-whisper.last +0 -1
- ggml_python-0.0.30/vendor/ggml/src/ggml-cuda.cu +0 -12492
- ggml_python-0.0.30/vendor/ggml/src/ggml-quants.h +0 -362
- {ggml_python-0.0.30 → ggml_python-0.0.31}/.github/workflows/publish.yaml +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/.github/workflows/test.yaml +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/.github/workflows/wheels.yaml +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/.gitignore +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/.gitmodules +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/.readthedocs.yaml +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/CMakeLists.txt +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/LICENSE.md +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/Makefile +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/docs/api-reference.md +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/docs/index.md +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/examples/clip/README.md +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/examples/clip/convert-pt-to-ggml.py +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/examples/clip/model.py +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/examples/clip/requirements.txt +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/examples/clip/utils.py +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/examples/custom-operators/example_jax.py +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/examples/replit/README.md +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/examples/replit/app.py +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/examples/replit/requirements.txt +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/ggml/experimental.py +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/ggml/py.typed +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/ggml/utils.py +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/mkdocs.yml +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/pyproject.toml +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/tests/__init__.py +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/tests/test_experimental_api.py +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/tests/test_utils.py +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/.editorconfig +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/.git +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/.github/workflows/ci.yml +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/.gitignore +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/LICENSE +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/Package.swift +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/README.md +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/build.zig +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/ci/run.sh +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/cmake/BuildTypes.cmake +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/cmake/GitVars.cmake +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/CMakeLists.txt +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/common-ggml.h +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/common.cpp +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/common.h +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/dr_wav.h +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/gpt-2/CMakeLists.txt +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/gpt-2/README.md +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/gpt-2/convert-cerebras-to-ggml.py +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/gpt-2/convert-ckpt-to-ggml.py +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/gpt-2/convert-h5-to-ggml.py +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/gpt-2/download-ggml-model.sh +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/gpt-2/download-model.sh +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/gpt-2/main-alloc.cpp +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/gpt-2/main-ctx.cpp +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/gpt-2/quantize.cpp +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/gpt-j/CMakeLists.txt +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/gpt-j/README.md +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/gpt-j/convert-h5-to-ggml.py +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/gpt-j/download-ggml-model.sh +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/gpt-j/download-model.sh +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/gpt-j/main.cpp +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/gpt-j/quantize.cpp +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/magika/README.md +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/magika/convert.py +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/mnist/CMakeLists.txt +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/mnist/README.md +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/mnist/convert-h5-to-ggml.py +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/mnist/main-cnn.cpp +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/mnist/main-cpu.cpp +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/mnist/main-mtl.cpp +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/mnist/main-mtl.h +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/mnist/main-mtl.m +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/mnist/main.cpp +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/mnist/mnist-cnn.py +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/mnist/web/.gitignore +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/mnist/web/index.html +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/prompts/dolly-v2.txt +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/prompts/gpt-2-chinese.txt +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/prompts/gpt-2.txt +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/prompts/gpt-j.txt +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/prompts/gpt-neox-japanese.txt +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/prompts/gpt-neox.txt +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/prompts/polyglot-ko.txt +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/prompts/replit.txt +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/prompts/starcoder.txt +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/prompts/test-cases.txt +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/prompts/tokenize_huggingface.py +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/prompts/whisper.txt +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/python/api.h +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/python/example_add_quant.py +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/python/example_test_all_quants.py +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/python/ggml/__init__.py +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/python/ggml/cffi.py +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/python/ggml/ffi/__init__.pyi +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/python/ggml/utils.py +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/python/regenerate.py +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/python/stubs.py +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/python/test_tensor.py +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/sam/CMakeLists.txt +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/sam/README.md +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/sam/convert-pth-to-ggml.py +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/sam/example.jpg +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/sam/main.cpp +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/stb_image.h +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/stb_image_write.h +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/whisper/CMakeLists.txt +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/whisper/README.md +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/whisper/convert-pt-to-ggml.py +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/whisper/quantize.cpp +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/CMakeLists.txt +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/README.md +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/convert-yolov3-tiny.py +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/coco.names +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/100_0.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/100_1.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/100_2.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/100_3.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/100_4.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/100_5.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/100_6.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/100_7.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/101_0.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/101_1.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/101_2.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/101_3.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/101_4.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/101_5.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/101_6.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/101_7.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/102_0.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/102_1.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/102_2.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/102_3.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/102_4.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/102_5.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/102_6.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/102_7.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/103_0.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/103_1.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/103_2.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/103_3.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/103_4.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/103_5.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/103_6.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/103_7.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/104_0.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/104_1.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/104_2.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/104_3.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/104_4.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/104_5.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/104_6.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/104_7.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/105_0.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/105_1.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/105_2.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/105_3.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/105_4.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/105_5.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/105_6.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/105_7.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/106_0.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/106_1.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/106_2.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/106_3.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/106_4.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/106_5.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/106_6.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/106_7.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/107_0.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/107_1.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/107_2.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/107_3.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/107_4.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/107_5.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/107_6.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/107_7.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/108_0.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/108_1.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/108_2.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/108_3.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/108_4.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/108_5.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/108_6.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/108_7.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/109_0.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/109_1.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/109_2.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/109_3.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/109_4.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/109_5.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/109_6.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/109_7.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/110_0.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/110_1.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/110_2.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/110_3.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/110_4.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/110_5.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/110_6.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/110_7.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/111_0.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/111_1.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/111_2.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/111_3.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/111_4.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/111_5.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/111_6.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/111_7.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/112_0.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/112_1.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/112_2.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/112_3.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/112_4.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/112_5.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/112_6.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/112_7.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/113_0.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/113_1.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/113_2.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/113_3.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/113_4.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/113_5.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/113_6.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/113_7.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/114_0.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/114_1.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/114_2.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/114_3.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/114_4.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/114_5.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/114_6.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/114_7.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/115_0.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/115_1.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/115_2.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/115_3.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/115_4.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/115_5.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/115_6.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/115_7.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/116_0.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/116_1.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/116_2.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/116_3.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/116_4.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/116_5.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/116_6.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/116_7.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/117_0.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/117_1.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/117_2.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/117_3.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/117_4.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/117_5.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/117_6.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/117_7.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/118_0.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/118_1.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/118_2.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/118_3.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/118_4.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/118_5.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/118_6.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/118_7.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/119_0.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/119_1.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/119_2.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/119_3.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/119_4.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/119_5.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/119_6.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/119_7.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/120_0.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/120_1.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/120_2.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/120_3.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/120_4.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/120_5.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/120_6.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/120_7.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/121_0.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/121_1.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/121_2.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/121_3.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/121_4.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/121_5.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/121_6.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/121_7.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/122_0.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/122_1.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/122_2.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/122_3.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/122_4.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/122_5.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/122_6.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/122_7.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/123_0.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/123_1.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/123_2.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/123_3.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/123_4.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/123_5.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/123_6.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/123_7.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/124_0.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/124_1.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/124_2.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/124_3.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/124_4.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/124_5.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/124_6.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/124_7.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/125_0.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/125_1.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/125_2.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/125_3.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/125_4.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/125_5.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/125_6.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/125_7.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/126_0.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/126_1.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/126_2.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/126_3.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/126_4.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/126_5.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/126_6.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/126_7.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/32_0.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/32_1.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/32_2.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/32_3.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/32_4.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/32_5.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/32_6.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/32_7.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/33_0.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/33_1.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/33_2.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/33_3.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/33_4.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/33_5.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/33_6.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/33_7.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/34_0.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/34_1.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/34_2.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/34_3.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/34_4.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/34_5.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/34_6.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/34_7.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/35_0.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/35_1.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/35_2.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/35_3.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/35_4.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/35_5.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/35_6.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/35_7.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/36_0.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/36_1.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/36_2.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/36_3.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/36_4.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/36_5.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/36_6.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/36_7.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/37_0.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/37_1.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/37_2.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/37_3.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/37_4.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/37_5.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/37_6.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/37_7.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/38_0.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/38_1.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/38_2.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/38_3.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/38_4.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/38_5.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/38_6.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/38_7.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/39_0.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/39_1.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/39_2.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/39_3.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/39_4.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/39_5.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/39_6.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/39_7.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/40_0.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/40_1.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/40_2.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/40_3.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/40_4.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/40_5.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/40_6.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/40_7.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/41_0.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/41_1.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/41_2.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/41_3.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/41_4.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/41_5.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/41_6.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/41_7.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/42_0.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/42_1.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/42_2.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/42_3.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/42_4.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/42_5.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/42_6.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/42_7.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/43_0.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/43_1.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/43_2.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/43_3.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/43_4.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/43_5.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/43_6.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/43_7.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/44_0.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/44_1.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/44_2.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/44_3.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/44_4.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/44_5.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/44_6.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/44_7.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/45_0.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/45_1.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/45_2.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/45_3.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/45_4.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/45_5.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/45_6.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/45_7.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/46_0.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/46_1.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/46_2.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/46_3.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/46_4.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/46_5.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/46_6.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/46_7.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/47_0.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/47_1.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/47_2.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/47_3.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/47_4.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/47_5.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/47_6.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/47_7.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/48_0.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/48_1.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/48_2.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/48_3.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/48_4.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/48_5.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/48_6.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/48_7.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/49_0.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/49_1.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/49_2.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/49_3.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/49_4.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/49_5.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/49_6.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/49_7.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/50_0.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/50_1.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/50_2.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/50_3.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/50_4.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/50_5.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/50_6.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/50_7.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/51_0.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/51_1.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/51_2.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/51_3.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/51_4.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/51_5.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/51_6.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/51_7.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/52_0.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/52_1.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/52_2.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/52_3.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/52_4.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/52_5.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/52_6.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/52_7.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/53_0.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/53_1.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/53_2.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/53_3.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/53_4.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/53_5.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/53_6.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/53_7.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/54_0.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/54_1.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/54_2.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/54_3.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/54_4.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/54_5.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/54_6.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/54_7.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/55_0.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/55_1.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/55_2.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/55_3.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/55_4.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/55_5.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/55_6.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/55_7.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/56_0.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/56_1.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/56_2.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/56_3.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/56_4.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/56_5.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/56_6.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/56_7.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/57_0.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/57_1.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/57_2.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/57_3.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/57_4.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/57_5.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/57_6.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/57_7.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/58_0.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/58_1.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/58_2.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/58_3.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/58_4.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/58_5.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/58_6.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/58_7.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/59_0.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/59_1.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/59_2.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/59_3.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/59_4.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/59_5.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/59_6.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/59_7.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/60_0.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/60_1.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/60_2.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/60_3.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/60_4.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/60_5.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/60_6.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/60_7.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/61_0.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/61_1.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/61_2.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/61_3.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/61_4.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/61_5.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/61_6.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/61_7.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/62_0.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/62_1.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/62_2.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/62_3.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/62_4.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/62_5.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/62_6.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/62_7.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/63_0.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/63_1.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/63_2.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/63_3.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/63_4.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/63_5.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/63_6.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/63_7.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/64_0.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/64_1.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/64_2.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/64_3.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/64_4.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/64_5.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/64_6.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/64_7.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/65_0.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/65_1.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/65_2.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/65_3.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/65_4.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/65_5.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/65_6.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/65_7.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/66_0.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/66_1.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/66_2.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/66_3.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/66_4.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/66_5.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/66_6.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/66_7.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/67_0.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/67_1.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/67_2.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/67_3.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/67_4.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/67_5.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/67_6.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/67_7.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/68_0.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/68_1.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/68_2.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/68_3.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/68_4.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/68_5.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/68_6.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/68_7.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/69_0.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/69_1.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/69_2.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/69_3.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/69_4.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/69_5.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/69_6.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/69_7.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/70_0.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/70_1.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/70_2.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/70_3.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/70_4.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/70_5.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/70_6.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/70_7.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/71_0.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/71_1.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/71_2.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/71_3.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/71_4.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/71_5.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/71_6.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/71_7.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/72_0.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/72_1.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/72_2.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/72_3.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/72_4.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/72_5.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/72_6.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/72_7.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/73_0.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/73_1.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/73_2.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/73_3.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/73_4.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/73_5.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/73_6.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/73_7.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/74_0.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/74_1.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/74_2.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/74_3.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/74_4.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/74_5.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/74_6.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/74_7.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/75_0.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/75_1.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/75_2.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/75_3.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/75_4.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/75_5.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/75_6.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/75_7.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/76_0.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/76_1.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/76_2.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/76_3.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/76_4.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/76_5.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/76_6.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/76_7.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/77_0.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/77_1.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/77_2.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/77_3.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/77_4.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/77_5.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/77_6.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/77_7.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/78_0.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/78_1.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/78_2.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/78_3.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/78_4.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/78_5.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/78_6.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/78_7.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/79_0.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/79_1.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/79_2.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/79_3.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/79_4.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/79_5.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/79_6.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/79_7.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/80_0.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/80_1.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/80_2.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/80_3.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/80_4.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/80_5.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/80_6.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/80_7.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/81_0.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/81_1.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/81_2.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/81_3.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/81_4.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/81_5.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/81_6.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/81_7.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/82_0.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/82_1.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/82_2.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/82_3.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/82_4.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/82_5.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/82_6.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/82_7.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/83_0.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/83_1.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/83_2.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/83_3.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/83_4.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/83_5.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/83_6.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/83_7.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/84_0.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/84_1.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/84_2.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/84_3.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/84_4.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/84_5.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/84_6.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/84_7.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/85_0.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/85_1.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/85_2.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/85_3.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/85_4.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/85_5.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/85_6.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/85_7.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/86_0.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/86_1.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/86_2.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/86_3.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/86_4.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/86_5.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/86_6.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/86_7.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/87_0.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/87_1.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/87_2.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/87_3.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/87_4.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/87_5.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/87_6.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/87_7.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/88_0.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/88_1.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/88_2.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/88_3.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/88_4.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/88_5.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/88_6.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/88_7.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/89_0.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/89_1.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/89_2.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/89_3.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/89_4.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/89_5.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/89_6.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/89_7.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/90_0.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/90_1.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/90_2.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/90_3.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/90_4.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/90_5.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/90_6.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/90_7.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/91_0.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/91_1.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/91_2.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/91_3.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/91_4.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/91_5.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/91_6.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/91_7.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/92_0.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/92_1.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/92_2.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/92_3.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/92_4.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/92_5.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/92_6.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/92_7.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/93_0.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/93_1.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/93_2.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/93_3.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/93_4.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/93_5.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/93_6.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/93_7.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/94_0.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/94_1.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/94_2.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/94_3.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/94_4.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/94_5.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/94_6.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/94_7.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/95_0.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/95_1.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/95_2.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/95_3.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/95_4.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/95_5.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/95_6.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/95_7.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/96_0.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/96_1.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/96_2.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/96_3.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/96_4.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/96_5.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/96_6.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/96_7.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/97_0.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/97_1.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/97_2.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/97_3.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/97_4.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/97_5.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/97_6.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/97_7.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/98_0.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/98_1.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/98_2.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/98_3.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/98_4.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/98_5.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/98_6.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/98_7.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/99_0.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/99_1.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/99_2.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/99_3.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/99_4.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/99_5.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/99_6.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/data/labels/99_7.png +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/yolo-image.cpp +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/yolo-image.h +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/examples/yolo/yolov3-tiny.cpp +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/ggml.pc.in +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/requirements.txt +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/spm-headers/ggml-alloc.h +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/spm-headers/ggml-backend.h +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/spm-headers/ggml.h +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/spm-headers/module.modulemap +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/src/ggml-kompute.h +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/src/ggml-metal.h +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/src/ggml-opencl.h +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/tests/CMakeLists.txt +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/tests/test-arange.cpp +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/tests/test-blas0.c +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/tests/test-conv-transpose.c +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/tests/test-customop.c +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/tests/test-dup.c +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/tests/test-grad0.cpp +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/tests/test-mul-mat0.c +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/tests/test-mul-mat1.c +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/tests/test-mul-mat2.c +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/tests/test-opt.cpp +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/tests/test-pool.c +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/tests/test-quantize-perf.cpp +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/tests/test-rel-pos.c +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/tests/test-svd0.c +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/tests/test-timestep_embedding.cpp +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/tests/test-vec0.c +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/tests/test-vec1.c +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/tests/test-vec2.c +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/tests/test-xpos.c +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/tests/test0.c +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/tests/test0.zig +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/tests/test1.c +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/tests/test1.zig +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/tests/test2.c +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/tests/test2.zig +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/tests/test3.c +0 -0
- {ggml_python-0.0.30 → ggml_python-0.0.31}/vendor/ggml/tests/test3.zig +0 -0
|
@@ -0,0 +1,130 @@
|
|
|
1
|
+
name: Wheels CUDA
|
|
2
|
+
|
|
3
|
+
on: workflow_dispatch
|
|
4
|
+
|
|
5
|
+
permissions:
|
|
6
|
+
contents: write
|
|
7
|
+
|
|
8
|
+
jobs:
|
|
9
|
+
define_matrix:
|
|
10
|
+
name: Define Build Matrix
|
|
11
|
+
runs-on: ubuntu-latest
|
|
12
|
+
outputs:
|
|
13
|
+
matrix: ${{ steps.set-matrix.outputs.matrix }}
|
|
14
|
+
defaults:
|
|
15
|
+
run:
|
|
16
|
+
shell: pwsh
|
|
17
|
+
|
|
18
|
+
steps:
|
|
19
|
+
- name: Define Job Output
|
|
20
|
+
id: set-matrix
|
|
21
|
+
run: |
|
|
22
|
+
$matrix = @{
|
|
23
|
+
'os' = @('ubuntu-20.04', 'windows-latest')
|
|
24
|
+
'pyver' = @("3.10", "3.11", "3.12")
|
|
25
|
+
'cuda' = @("12.1.1", "12.2.2", "12.3.2")
|
|
26
|
+
'releasetag' = @("basic")
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
$matrixOut = ConvertTo-Json $matrix -Compress
|
|
30
|
+
Write-Output ('matrix=' + $matrixOut) >> $env:GITHUB_OUTPUT
|
|
31
|
+
|
|
32
|
+
build_wheels:
|
|
33
|
+
name: Build Wheel ${{ matrix.os }} ${{ matrix.pyver }} ${{ matrix.cuda }} ${{ matrix.releasetag == 'wheels' && 'AVX2' || matrix.releasetag }}
|
|
34
|
+
needs: define_matrix
|
|
35
|
+
runs-on: ${{ matrix.os }}
|
|
36
|
+
strategy:
|
|
37
|
+
matrix: ${{ fromJSON(needs.define_matrix.outputs.matrix) }}
|
|
38
|
+
defaults:
|
|
39
|
+
run:
|
|
40
|
+
shell: pwsh
|
|
41
|
+
env:
|
|
42
|
+
CUDAVER: ${{ matrix.cuda }}
|
|
43
|
+
AVXVER: ${{ matrix.releasetag }}
|
|
44
|
+
|
|
45
|
+
steps:
|
|
46
|
+
- uses: actions/checkout@v4
|
|
47
|
+
with:
|
|
48
|
+
submodules: "recursive"
|
|
49
|
+
|
|
50
|
+
- uses: actions/setup-python@v4
|
|
51
|
+
with:
|
|
52
|
+
python-version: ${{ matrix.pyver }}
|
|
53
|
+
|
|
54
|
+
- name: Setup Mamba
|
|
55
|
+
uses: conda-incubator/setup-miniconda@v2.2.0
|
|
56
|
+
with:
|
|
57
|
+
activate-environment: "build"
|
|
58
|
+
python-version: ${{ matrix.pyver }}
|
|
59
|
+
miniforge-variant: Mambaforge
|
|
60
|
+
miniforge-version: latest
|
|
61
|
+
use-mamba: true
|
|
62
|
+
add-pip-as-python-dependency: true
|
|
63
|
+
auto-activate-base: false
|
|
64
|
+
|
|
65
|
+
- name: VS Integration Cache
|
|
66
|
+
id: vs-integration-cache
|
|
67
|
+
if: runner.os == 'Windows'
|
|
68
|
+
uses: actions/cache@v3.3.2
|
|
69
|
+
with:
|
|
70
|
+
path: ./MSBuildExtensions
|
|
71
|
+
key: cuda-${{ matrix.cuda }}-vs-integration
|
|
72
|
+
|
|
73
|
+
- name: Get Visual Studio Integration
|
|
74
|
+
if: runner.os == 'Windows' && steps.vs-integration-cache.outputs.cache-hit != 'true'
|
|
75
|
+
run: |
|
|
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 ''})
|
|
78
|
+
for ($i=$q=0;$i -lt $links.count -and $q -lt 2;$i++) {if ($links[$i] -eq "'$x',") {$q++}}
|
|
79
|
+
Invoke-RestMethod $links[$i].Trim("'") -OutFile 'cudainstaller.zip'
|
|
80
|
+
& 'C:\Program Files\7-Zip\7z.exe' e cudainstaller.zip -oMSBuildExtensions -r *\MSBuildExtensions\* > $null
|
|
81
|
+
Remove-Item 'cudainstaller.zip'
|
|
82
|
+
|
|
83
|
+
- name: Install Visual Studio Integration
|
|
84
|
+
if: runner.os == 'Windows'
|
|
85
|
+
run: |
|
|
86
|
+
$y = (gi '.\MSBuildExtensions').fullname + '\*'
|
|
87
|
+
(gi 'C:\Program Files\Microsoft Visual Studio\2022\Enterprise\MSBuild\Microsoft\VC\*\BuildCustomizations').fullname.foreach({cp $y $_})
|
|
88
|
+
$cupath = 'CUDA_PATH_V' + $env:CUDAVER.Remove($env:CUDAVER.LastIndexOf('.')).Replace('.','_')
|
|
89
|
+
echo "$cupath=$env:CONDA_PREFIX" >> $env:GITHUB_ENV
|
|
90
|
+
|
|
91
|
+
- name: Install Dependencies
|
|
92
|
+
env:
|
|
93
|
+
MAMBA_DOWNLOAD_FAILFAST: "0"
|
|
94
|
+
MAMBA_NO_LOW_SPEED_LIMIT: "1"
|
|
95
|
+
run: |
|
|
96
|
+
$cudaVersion = $env:CUDAVER
|
|
97
|
+
mamba install -y 'cuda' -c nvidia/label/cuda-$cudaVersion
|
|
98
|
+
python -m pip install build wheel
|
|
99
|
+
|
|
100
|
+
- name: Build Wheel
|
|
101
|
+
run: |
|
|
102
|
+
$cudaVersion = $env:CUDAVER.Remove($env:CUDAVER.LastIndexOf('.')).Replace('.','')
|
|
103
|
+
$env:CUDA_PATH = $env:CONDA_PREFIX
|
|
104
|
+
$env:CUDA_HOME = $env:CONDA_PREFIX
|
|
105
|
+
$env:CUDA_TOOLKIT_ROOT_DIR = $env:CONDA_PREFIX
|
|
106
|
+
if ($IsLinux) {
|
|
107
|
+
$env:LD_LIBRARY_PATH = $env:CONDA_PREFIX + '/lib:' + $env:LD_LIBRARY_PATH
|
|
108
|
+
}
|
|
109
|
+
$env:VERBOSE = '1'
|
|
110
|
+
$env:CMAKE_ARGS = '-DGGML_CUDA=on -DCMAKE_CUDA_ARCHITECTURES=all'
|
|
111
|
+
$env:CMAKE_ARGS = "-DGGML_CUDA_FORCE_MMQ=ON $env:CMAKE_ARGS"
|
|
112
|
+
if ($env:AVXVER -eq 'AVX') {
|
|
113
|
+
$env:CMAKE_ARGS = $env:CMAKE_ARGS + ' -DGGML_AVX2=off -DGGML_FMA=off -DGGML_F16C=off'
|
|
114
|
+
}
|
|
115
|
+
if ($env:AVXVER -eq 'AVX512') {
|
|
116
|
+
$env:CMAKE_ARGS = $env:CMAKE_ARGS + ' -DGGML_AVX512=on'
|
|
117
|
+
}
|
|
118
|
+
if ($env:AVXVER -eq 'basic') {
|
|
119
|
+
$env:CMAKE_ARGS = $env:CMAKE_ARGS + ' -DGGML_AVX=off -DGGML_AVX2=off -DGGML_FMA=off -DGGML_F16C=off'
|
|
120
|
+
}
|
|
121
|
+
$buildtag = "-cu$cudaVersion"
|
|
122
|
+
python -m build --wheel
|
|
123
|
+
Write-Output "CUDA_VERSION=$cudaVersion" >> $env:GITHUB_ENV
|
|
124
|
+
|
|
125
|
+
- uses: softprops/action-gh-release@v1
|
|
126
|
+
with:
|
|
127
|
+
files: dist/*
|
|
128
|
+
tag_name: ${{ github.ref_name }}-cu${{ env.CUDA_VERSION }}
|
|
129
|
+
env:
|
|
130
|
+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
name: Wheels Index
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
# Trigger on any new release
|
|
5
|
+
release:
|
|
6
|
+
types: [published]
|
|
7
|
+
|
|
8
|
+
# Allows you to run this workflow manually from the Actions tab
|
|
9
|
+
workflow_dispatch:
|
|
10
|
+
|
|
11
|
+
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
|
|
12
|
+
permissions:
|
|
13
|
+
contents: read
|
|
14
|
+
pages: write
|
|
15
|
+
id-token: write
|
|
16
|
+
|
|
17
|
+
# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued.
|
|
18
|
+
# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete.
|
|
19
|
+
concurrency:
|
|
20
|
+
group: "pages"
|
|
21
|
+
cancel-in-progress: false
|
|
22
|
+
|
|
23
|
+
jobs:
|
|
24
|
+
# Single deploy job since we're just deploying
|
|
25
|
+
deploy:
|
|
26
|
+
environment:
|
|
27
|
+
name: github-pages
|
|
28
|
+
url: ${{ steps.deployment.outputs.page_url }}
|
|
29
|
+
runs-on: ubuntu-latest
|
|
30
|
+
steps:
|
|
31
|
+
- name: Checkout
|
|
32
|
+
uses: actions/checkout@v4
|
|
33
|
+
- name: Setup Pages
|
|
34
|
+
uses: actions/configure-pages@v4
|
|
35
|
+
- name: Build
|
|
36
|
+
run: |
|
|
37
|
+
./scripts/releases-to-pep-503.sh index/whl/cpu '^[v]?[0-9]+\.[0-9]+\.[0-9]+$'
|
|
38
|
+
./scripts/releases-to-pep-503.sh index/whl/cu121 '^[v]?[0-9]+\.[0-9]+\.[0-9]+$-cu121'
|
|
39
|
+
./scripts/releases-to-pep-503.sh index/whl/cu122 '^[v]?[0-9]+\.[0-9]+\.[0-9]+$-cu122'
|
|
40
|
+
./scripts/releases-to-pep-503.sh index/whl/cu123 '^[v]?[0-9]+\.[0-9]+\.[0-9]+$-cu123'
|
|
41
|
+
- name: Upload artifact
|
|
42
|
+
uses: actions/upload-pages-artifact@v3
|
|
43
|
+
with:
|
|
44
|
+
# Upload entire repository
|
|
45
|
+
path: "index"
|
|
46
|
+
- name: Deploy to GitHub Pages
|
|
47
|
+
id: deployment
|
|
48
|
+
uses: actions/deploy-pages@v4
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: ggml_python
|
|
3
|
-
Version: 0.0.
|
|
3
|
+
Version: 0.0.31
|
|
4
4
|
Summary: Python bindings for ggml
|
|
5
5
|
Author-Email: Andrei Betlen <abetlen@gmail.com>
|
|
6
6
|
License: MIT
|
|
@@ -74,14 +74,14 @@ To build ggml with specific features (ie. OpenBLAS, GPU Support, etc) you can pa
|
|
|
74
74
|
|
|
75
75
|
```bash
|
|
76
76
|
pip install --upgrade pip
|
|
77
|
-
pip install ggml-python --config-settings=cmake.args='-
|
|
77
|
+
pip install ggml-python --config-settings=cmake.args='-DGGML_CUDA=ON'
|
|
78
78
|
```
|
|
79
79
|
|
|
80
80
|
## Options
|
|
81
81
|
|
|
82
82
|
| Option | Description | Default |
|
|
83
83
|
| --- | --- | --- |
|
|
84
|
-
| `
|
|
84
|
+
| `GGML_CUDA` | Enable cuBLAS support | `OFF` |
|
|
85
85
|
| `GGML_CLBLAST` | Enable CLBlast support | `OFF` |
|
|
86
86
|
| `GGML_OPENBLAS` | Enable OpenBLAS support | `OFF` |
|
|
87
87
|
| `GGML_METAL` | Enable Metal support | `OFF` |
|
|
@@ -36,14 +36,14 @@ To build ggml with specific features (ie. OpenBLAS, GPU Support, etc) you can pa
|
|
|
36
36
|
|
|
37
37
|
```bash
|
|
38
38
|
pip install --upgrade pip
|
|
39
|
-
pip install ggml-python --config-settings=cmake.args='-
|
|
39
|
+
pip install ggml-python --config-settings=cmake.args='-DGGML_CUDA=ON'
|
|
40
40
|
```
|
|
41
41
|
|
|
42
42
|
## Options
|
|
43
43
|
|
|
44
44
|
| Option | Description | Default |
|
|
45
45
|
| --- | --- | --- |
|
|
46
|
-
| `
|
|
46
|
+
| `GGML_CUDA` | Enable cuBLAS support | `OFF` |
|
|
47
47
|
| `GGML_CLBLAST` | Enable CLBlast support | `OFF` |
|
|
48
48
|
| `GGML_OPENBLAS` | Enable OpenBLAS support | `OFF` |
|
|
49
49
|
| `GGML_METAL` | Enable Metal support | `OFF` |
|
|
@@ -331,7 +331,7 @@ class ReplitModel:
|
|
|
331
331
|
self.memory_k = ggml.ggml_new_tensor_1d(ctx, ggml.GGML_TYPE_F16, n_elements)
|
|
332
332
|
self.memory_v = ggml.ggml_new_tensor_1d(ctx, ggml.GGML_TYPE_F16, n_elements)
|
|
333
333
|
|
|
334
|
-
if ggml.
|
|
334
|
+
if ggml.GGML_USE_CUDA:
|
|
335
335
|
self.memory_k.contents.backend = ggml.GGML_BACKEND_GPU
|
|
336
336
|
ggml.ggml_cuda_transform_tensor(self.memory_k.contents.data, self.memory_k)
|
|
337
337
|
self.memory_v.contents.backend = ggml.GGML_BACKEND_GPU
|
|
@@ -343,7 +343,7 @@ class ReplitModel:
|
|
|
343
343
|
self.tensors["transformer.norm_f.weight"] = self.norm_f_weight
|
|
344
344
|
|
|
345
345
|
self.mem_per_token = 0
|
|
346
|
-
if ggml.
|
|
346
|
+
if ggml.GGML_USE_CUDA:
|
|
347
347
|
self.eval_buffer = CudaContextBuffer()
|
|
348
348
|
else:
|
|
349
349
|
self.eval_buffer = CpuContextBuffer()
|
|
@@ -382,7 +382,7 @@ class ReplitModel:
|
|
|
382
382
|
def __del__(self):
|
|
383
383
|
ggml.ggml_free(self.ctx)
|
|
384
384
|
|
|
385
|
-
if ggml.
|
|
385
|
+
if ggml.GGML_USE_CUDA:
|
|
386
386
|
for tensor in self.tensors.values():
|
|
387
387
|
if tensor.contents.backend == ggml.GGML_BACKEND_GPU:
|
|
388
388
|
ggml.ggml_cuda_free_data(tensor)
|
|
@@ -469,7 +469,7 @@ class ReplitModel:
|
|
|
469
469
|
|
|
470
470
|
inpL = ggml.ggml_get_rows(ctx0, self.wte_weight, embd)
|
|
471
471
|
|
|
472
|
-
if ggml.
|
|
472
|
+
if ggml.GGML_USE_CUDA:
|
|
473
473
|
offload_func_nr = ggml.ggml_cuda_assign_buffers_no_scratch
|
|
474
474
|
offload_func_kq = ggml.ggml_cuda_assign_buffers_no_scratch
|
|
475
475
|
offload_func_v = ggml.ggml_cuda_assign_buffers_no_scratch
|
|
@@ -479,7 +479,7 @@ class ReplitModel:
|
|
|
479
479
|
for il in range(n_layer):
|
|
480
480
|
offload_func = offload_nop
|
|
481
481
|
|
|
482
|
-
if ggml.
|
|
482
|
+
if ggml.GGML_USE_CUDA:
|
|
483
483
|
offload_func = ggml.ggml_cuda_assign_buffers_no_scratch
|
|
484
484
|
|
|
485
485
|
# // lctx.use_buf(ctx0, 0)
|
|
@@ -996,7 +996,7 @@ class ReplitModel:
|
|
|
996
996
|
print("ctx size =", ctx_size // (1024 * 1024), "MB")
|
|
997
997
|
|
|
998
998
|
# create context
|
|
999
|
-
if ggml.
|
|
999
|
+
if ggml.GGML_USE_CUDA:
|
|
1000
1000
|
weights_buffer = CudaContextBuffer(ctx_size)
|
|
1001
1001
|
# ggml.ggml_cuda_set_main_device(0)
|
|
1002
1002
|
else:
|
|
@@ -1066,7 +1066,7 @@ class ReplitModel:
|
|
|
1066
1066
|
ggml.ggml_get_data(tensor)
|
|
1067
1067
|
)
|
|
1068
1068
|
)
|
|
1069
|
-
if ggml.
|
|
1069
|
+
if ggml.GGML_USE_CUDA and name.startswith("transformer.block"):
|
|
1070
1070
|
should_offload_suffix = [
|
|
1071
1071
|
# "norm_1.weight",
|
|
1072
1072
|
"attn.Wqkv.weight",
|
|
@@ -1078,7 +1078,7 @@ class ReplitModel:
|
|
|
1078
1078
|
if any(name.endswith(s) for s in should_offload_suffix):
|
|
1079
1079
|
tensor.contents.backend = ggml.GGML_BACKEND_GPU
|
|
1080
1080
|
ggml.ggml_cuda_transform_tensor(tensor.contents.data, tensor)
|
|
1081
|
-
if ggml.
|
|
1081
|
+
if ggml.GGML_USE_CUDA and name.startswith("transformer.block"):
|
|
1082
1082
|
if (
|
|
1083
1083
|
name == "transformer.wte.weight"
|
|
1084
1084
|
or name == "transformer.norm_f.weight"
|