ggml-python 0.0.34__tar.gz → 0.0.35__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.34 → ggml_python-0.0.35}/.github/workflows/test.yaml +26 -37
- {ggml_python-0.0.34 → ggml_python-0.0.35}/.github/workflows/wheels-metal.yaml +1 -1
- {ggml_python-0.0.34 → ggml_python-0.0.35}/PKG-INFO +1 -1
- ggml_python-0.0.35/ggml/__init__.py +3 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/ggml/ggml.py +196 -33
- ggml_python-0.0.35/vendor/ggml/AUTHORS +175 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/CMakeLists.txt +11 -9
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/LICENSE +1 -1
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/ci/run.sh +4 -1
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/common.cpp +13 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/whisper/CMakeLists.txt +1 -1
- ggml_python-0.0.35/vendor/ggml/examples/whisper/grammar-parser.cpp +423 -0
- ggml_python-0.0.35/vendor/ggml/examples/whisper/grammar-parser.h +29 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/whisper/main.cpp +91 -4
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/whisper/whisper.cpp +28 -10
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/whisper/whisper.h +3 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/include/ggml/ggml.h +8 -9
- ggml_python-0.0.35/vendor/ggml/scripts/gen-authors.sh +9 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/scripts/sync-llama-am.sh +8 -0
- ggml_python-0.0.35/vendor/ggml/scripts/sync-llama.last +1 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/scripts/sync-llama.sh +3 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/scripts/sync-whisper-am.sh +14 -0
- ggml_python-0.0.35/vendor/ggml/scripts/sync-whisper.last +1 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/scripts/sync-whisper.sh +5 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/src/ggml-common.h +3 -2
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/src/ggml-cuda/argsort.cu +39 -13
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/src/ggml-cuda/common.cuh +1 -7
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/src/ggml-cuda/convert.cu +37 -37
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/src/ggml-cuda/convert.cuh +1 -1
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/src/ggml-cuda/dequantize.cuh +5 -5
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/src/ggml-cuda/dmmv.cu +3 -7
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/src/ggml-cuda/dmmv.cuh +11 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/src/ggml-cuda/quantize.cu +8 -8
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/src/ggml-cuda/quantize.cuh +1 -1
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/src/ggml-cuda.cu +24 -200
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/src/ggml-metal.m +100 -109
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/src/ggml-metal.metal +122 -288
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/src/ggml-quants.c +155 -155
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/src/ggml-quants.h +82 -82
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/src/ggml-sycl.cpp +920 -315
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/src/ggml-vulkan.cpp +328 -307
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/src/ggml-vulkan.h +0 -11
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/src/ggml.c +32 -78
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/tests/test-backend-ops.cpp +3 -96
- ggml_python-0.0.34/ggml/__init__.py +0 -3
- ggml_python-0.0.34/vendor/ggml/scripts/sync-llama.last +0 -1
- ggml_python-0.0.34/vendor/ggml/scripts/sync-whisper.last +0 -1
- {ggml_python-0.0.34 → ggml_python-0.0.35}/.github/workflows/publish.yaml +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/.github/workflows/wheels-cuda.yaml +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/.github/workflows/wheels-index.yaml +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/.github/workflows/wheels.yaml +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/.gitignore +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/.gitmodules +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/.readthedocs.yaml +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/CMakeLists.txt +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/LICENSE.md +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/Makefile +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/README.md +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/docs/api-reference.md +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/docs/index.md +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/examples/clip/README.md +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/examples/clip/convert-pt-to-ggml.py +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/examples/clip/model.py +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/examples/clip/requirements.txt +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/examples/clip/utils.py +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/examples/custom-operators/example_jax.py +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/examples/replit/README.md +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/examples/replit/app.py +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/examples/replit/main.py +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/examples/replit/requirements.txt +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/ggml/experimental.py +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/ggml/py.typed +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/ggml/utils.py +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/mkdocs.yml +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/pyproject.toml +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/scripts/releases-to-pep-503.sh +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/tests/__init__.py +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/tests/test_experimental_api.py +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/tests/test_ggml.py +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/tests/test_ggml_cuda.py +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/tests/test_ggml_metal.py +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/tests/test_utils.py +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/.editorconfig +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/.git +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/.github/workflows/ci.yml +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/.gitignore +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/Package.swift +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/README.md +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/build.zig +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/cmake/BuildTypes.cmake +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/cmake/GitVars.cmake +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/docs/gguf.md +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/docs/logo/ggml-logo-inverted.jpg +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/docs/logo/ggml-logo-inverted.svg +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/docs/logo/ggml-logo-transparent-inverted.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/docs/logo/ggml-logo-transparent.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/docs/logo/ggml-logo.jpg +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/docs/logo/ggml-logo.svg +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/CMakeLists.txt +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/common-ggml.cpp +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/common-ggml.h +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/common.h +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/dr_wav.h +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/gpt-2/CMakeLists.txt +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/gpt-2/README.md +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/gpt-2/convert-cerebras-to-ggml.py +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/gpt-2/convert-ckpt-to-ggml.py +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/gpt-2/convert-h5-to-ggml.py +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/gpt-2/download-ggml-model.sh +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/gpt-2/download-model.sh +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/gpt-2/main-alloc.cpp +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/gpt-2/main-backend.cpp +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/gpt-2/main-batched.cpp +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/gpt-2/main-ctx.cpp +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/gpt-2/main-sched.cpp +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/gpt-2/quantize.cpp +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/gpt-j/CMakeLists.txt +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/gpt-j/README.md +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/gpt-j/convert-h5-to-ggml.py +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/gpt-j/download-ggml-model.sh +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/gpt-j/download-model.sh +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/gpt-j/main.cpp +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/gpt-j/quantize.cpp +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/magika/CMakeLists.txt +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/magika/README.md +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/magika/convert.py +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/magika/main.cpp +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/mnist/CMakeLists.txt +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/mnist/README.md +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/mnist/convert-h5-to-ggml.py +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/mnist/main-cnn.cpp +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/mnist/main-cpu.cpp +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/mnist/main-mtl.cpp +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/mnist/main-mtl.h +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/mnist/main-mtl.m +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/mnist/main.cpp +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/mnist/mnist-cnn.py +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/mnist/web/.gitignore +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/mnist/web/index.html +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/prompts/dolly-v2.txt +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/prompts/gpt-2-chinese.txt +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/prompts/gpt-2.txt +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/prompts/gpt-j.txt +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/prompts/gpt-neox-japanese.txt +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/prompts/gpt-neox.txt +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/prompts/polyglot-ko.txt +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/prompts/replit.txt +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/prompts/starcoder.txt +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/prompts/test-cases.txt +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/prompts/tokenize_huggingface.py +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/prompts/whisper.txt +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/python/README.md +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/python/api.h +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/python/example_add_quant.py +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/python/example_test_all_quants.py +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/python/ggml/__init__.py +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/python/ggml/__init__.pyi +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/python/ggml/cffi.py +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/python/ggml/ffi/__init__.pyi +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/python/ggml/utils.py +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/python/regenerate.py +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/python/stubs.py +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/python/test_tensor.py +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/sam/CMakeLists.txt +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/sam/README.md +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/sam/convert-pth-to-ggml.py +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/sam/example.jpg +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/sam/main.cpp +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/simple/CMakeLists.txt +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/simple/README.md +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/simple/simple-backend.cpp +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/simple/simple-ctx.cpp +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/stb_image.h +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/stb_image_write.h +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/whisper/README.md +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/whisper/convert-pt-to-ggml.py +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/whisper/quantize.cpp +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/CMakeLists.txt +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/README.md +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/convert-yolov3-tiny.py +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/coco.names +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/100_0.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/100_1.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/100_2.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/100_3.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/100_4.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/100_5.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/100_6.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/100_7.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/101_0.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/101_1.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/101_2.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/101_3.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/101_4.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/101_5.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/101_6.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/101_7.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/102_0.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/102_1.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/102_2.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/102_3.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/102_4.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/102_5.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/102_6.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/102_7.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/103_0.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/103_1.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/103_2.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/103_3.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/103_4.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/103_5.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/103_6.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/103_7.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/104_0.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/104_1.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/104_2.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/104_3.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/104_4.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/104_5.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/104_6.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/104_7.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/105_0.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/105_1.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/105_2.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/105_3.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/105_4.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/105_5.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/105_6.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/105_7.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/106_0.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/106_1.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/106_2.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/106_3.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/106_4.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/106_5.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/106_6.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/106_7.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/107_0.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/107_1.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/107_2.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/107_3.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/107_4.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/107_5.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/107_6.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/107_7.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/108_0.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/108_1.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/108_2.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/108_3.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/108_4.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/108_5.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/108_6.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/108_7.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/109_0.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/109_1.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/109_2.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/109_3.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/109_4.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/109_5.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/109_6.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/109_7.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/110_0.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/110_1.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/110_2.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/110_3.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/110_4.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/110_5.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/110_6.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/110_7.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/111_0.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/111_1.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/111_2.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/111_3.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/111_4.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/111_5.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/111_6.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/111_7.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/112_0.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/112_1.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/112_2.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/112_3.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/112_4.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/112_5.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/112_6.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/112_7.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/113_0.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/113_1.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/113_2.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/113_3.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/113_4.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/113_5.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/113_6.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/113_7.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/114_0.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/114_1.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/114_2.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/114_3.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/114_4.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/114_5.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/114_6.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/114_7.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/115_0.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/115_1.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/115_2.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/115_3.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/115_4.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/115_5.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/115_6.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/115_7.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/116_0.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/116_1.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/116_2.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/116_3.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/116_4.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/116_5.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/116_6.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/116_7.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/117_0.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/117_1.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/117_2.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/117_3.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/117_4.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/117_5.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/117_6.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/117_7.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/118_0.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/118_1.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/118_2.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/118_3.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/118_4.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/118_5.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/118_6.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/118_7.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/119_0.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/119_1.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/119_2.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/119_3.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/119_4.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/119_5.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/119_6.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/119_7.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/120_0.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/120_1.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/120_2.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/120_3.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/120_4.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/120_5.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/120_6.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/120_7.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/121_0.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/121_1.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/121_2.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/121_3.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/121_4.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/121_5.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/121_6.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/121_7.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/122_0.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/122_1.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/122_2.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/122_3.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/122_4.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/122_5.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/122_6.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/122_7.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/123_0.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/123_1.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/123_2.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/123_3.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/123_4.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/123_5.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/123_6.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/123_7.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/124_0.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/124_1.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/124_2.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/124_3.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/124_4.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/124_5.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/124_6.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/124_7.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/125_0.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/125_1.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/125_2.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/125_3.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/125_4.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/125_5.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/125_6.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/125_7.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/126_0.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/126_1.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/126_2.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/126_3.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/126_4.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/126_5.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/126_6.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/126_7.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/32_0.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/32_1.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/32_2.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/32_3.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/32_4.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/32_5.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/32_6.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/32_7.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/33_0.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/33_1.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/33_2.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/33_3.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/33_4.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/33_5.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/33_6.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/33_7.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/34_0.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/34_1.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/34_2.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/34_3.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/34_4.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/34_5.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/34_6.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/34_7.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/35_0.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/35_1.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/35_2.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/35_3.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/35_4.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/35_5.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/35_6.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/35_7.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/36_0.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/36_1.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/36_2.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/36_3.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/36_4.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/36_5.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/36_6.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/36_7.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/37_0.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/37_1.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/37_2.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/37_3.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/37_4.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/37_5.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/37_6.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/37_7.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/38_0.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/38_1.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/38_2.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/38_3.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/38_4.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/38_5.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/38_6.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/38_7.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/39_0.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/39_1.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/39_2.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/39_3.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/39_4.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/39_5.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/39_6.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/39_7.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/40_0.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/40_1.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/40_2.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/40_3.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/40_4.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/40_5.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/40_6.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/40_7.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/41_0.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/41_1.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/41_2.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/41_3.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/41_4.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/41_5.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/41_6.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/41_7.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/42_0.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/42_1.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/42_2.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/42_3.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/42_4.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/42_5.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/42_6.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/42_7.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/43_0.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/43_1.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/43_2.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/43_3.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/43_4.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/43_5.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/43_6.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/43_7.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/44_0.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/44_1.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/44_2.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/44_3.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/44_4.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/44_5.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/44_6.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/44_7.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/45_0.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/45_1.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/45_2.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/45_3.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/45_4.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/45_5.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/45_6.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/45_7.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/46_0.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/46_1.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/46_2.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/46_3.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/46_4.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/46_5.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/46_6.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/46_7.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/47_0.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/47_1.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/47_2.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/47_3.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/47_4.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/47_5.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/47_6.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/47_7.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/48_0.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/48_1.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/48_2.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/48_3.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/48_4.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/48_5.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/48_6.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/48_7.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/49_0.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/49_1.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/49_2.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/49_3.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/49_4.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/49_5.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/49_6.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/49_7.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/50_0.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/50_1.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/50_2.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/50_3.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/50_4.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/50_5.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/50_6.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/50_7.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/51_0.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/51_1.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/51_2.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/51_3.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/51_4.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/51_5.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/51_6.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/51_7.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/52_0.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/52_1.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/52_2.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/52_3.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/52_4.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/52_5.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/52_6.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/52_7.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/53_0.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/53_1.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/53_2.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/53_3.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/53_4.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/53_5.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/53_6.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/53_7.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/54_0.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/54_1.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/54_2.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/54_3.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/54_4.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/54_5.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/54_6.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/54_7.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/55_0.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/55_1.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/55_2.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/55_3.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/55_4.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/55_5.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/55_6.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/55_7.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/56_0.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/56_1.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/56_2.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/56_3.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/56_4.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/56_5.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/56_6.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/56_7.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/57_0.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/57_1.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/57_2.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/57_3.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/57_4.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/57_5.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/57_6.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/57_7.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/58_0.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/58_1.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/58_2.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/58_3.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/58_4.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/58_5.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/58_6.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/58_7.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/59_0.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/59_1.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/59_2.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/59_3.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/59_4.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/59_5.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/59_6.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/59_7.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/60_0.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/60_1.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/60_2.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/60_3.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/60_4.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/60_5.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/60_6.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/60_7.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/61_0.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/61_1.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/61_2.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/61_3.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/61_4.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/61_5.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/61_6.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/61_7.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/62_0.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/62_1.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/62_2.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/62_3.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/62_4.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/62_5.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/62_6.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/62_7.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/63_0.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/63_1.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/63_2.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/63_3.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/63_4.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/63_5.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/63_6.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/63_7.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/64_0.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/64_1.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/64_2.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/64_3.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/64_4.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/64_5.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/64_6.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/64_7.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/65_0.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/65_1.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/65_2.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/65_3.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/65_4.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/65_5.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/65_6.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/65_7.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/66_0.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/66_1.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/66_2.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/66_3.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/66_4.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/66_5.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/66_6.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/66_7.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/67_0.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/67_1.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/67_2.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/67_3.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/67_4.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/67_5.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/67_6.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/67_7.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/68_0.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/68_1.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/68_2.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/68_3.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/68_4.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/68_5.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/68_6.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/68_7.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/69_0.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/69_1.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/69_2.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/69_3.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/69_4.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/69_5.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/69_6.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/69_7.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/70_0.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/70_1.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/70_2.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/70_3.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/70_4.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/70_5.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/70_6.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/70_7.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/71_0.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/71_1.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/71_2.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/71_3.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/71_4.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/71_5.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/71_6.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/71_7.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/72_0.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/72_1.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/72_2.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/72_3.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/72_4.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/72_5.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/72_6.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/72_7.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/73_0.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/73_1.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/73_2.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/73_3.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/73_4.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/73_5.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/73_6.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/73_7.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/74_0.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/74_1.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/74_2.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/74_3.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/74_4.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/74_5.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/74_6.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/74_7.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/75_0.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/75_1.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/75_2.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/75_3.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/75_4.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/75_5.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/75_6.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/75_7.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/76_0.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/76_1.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/76_2.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/76_3.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/76_4.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/76_5.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/76_6.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/76_7.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/77_0.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/77_1.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/77_2.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/77_3.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/77_4.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/77_5.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/77_6.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/77_7.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/78_0.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/78_1.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/78_2.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/78_3.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/78_4.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/78_5.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/78_6.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/78_7.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/79_0.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/79_1.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/79_2.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/79_3.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/79_4.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/79_5.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/79_6.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/79_7.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/80_0.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/80_1.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/80_2.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/80_3.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/80_4.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/80_5.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/80_6.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/80_7.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/81_0.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/81_1.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/81_2.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/81_3.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/81_4.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/81_5.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/81_6.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/81_7.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/82_0.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/82_1.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/82_2.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/82_3.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/82_4.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/82_5.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/82_6.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/82_7.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/83_0.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/83_1.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/83_2.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/83_3.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/83_4.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/83_5.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/83_6.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/83_7.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/84_0.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/84_1.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/84_2.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/84_3.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/84_4.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/84_5.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/84_6.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/84_7.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/85_0.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/85_1.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/85_2.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/85_3.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/85_4.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/85_5.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/85_6.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/85_7.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/86_0.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/86_1.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/86_2.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/86_3.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/86_4.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/86_5.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/86_6.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/86_7.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/87_0.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/87_1.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/87_2.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/87_3.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/87_4.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/87_5.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/87_6.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/87_7.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/88_0.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/88_1.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/88_2.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/88_3.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/88_4.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/88_5.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/88_6.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/88_7.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/89_0.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/89_1.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/89_2.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/89_3.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/89_4.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/89_5.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/89_6.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/89_7.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/90_0.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/90_1.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/90_2.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/90_3.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/90_4.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/90_5.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/90_6.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/90_7.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/91_0.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/91_1.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/91_2.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/91_3.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/91_4.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/91_5.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/91_6.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/91_7.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/92_0.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/92_1.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/92_2.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/92_3.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/92_4.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/92_5.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/92_6.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/92_7.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/93_0.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/93_1.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/93_2.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/93_3.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/93_4.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/93_5.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/93_6.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/93_7.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/94_0.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/94_1.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/94_2.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/94_3.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/94_4.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/94_5.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/94_6.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/94_7.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/95_0.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/95_1.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/95_2.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/95_3.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/95_4.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/95_5.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/95_6.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/95_7.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/96_0.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/96_1.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/96_2.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/96_3.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/96_4.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/96_5.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/96_6.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/96_7.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/97_0.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/97_1.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/97_2.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/97_3.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/97_4.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/97_5.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/97_6.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/97_7.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/98_0.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/98_1.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/98_2.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/98_3.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/98_4.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/98_5.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/98_6.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/98_7.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/99_0.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/99_1.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/99_2.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/99_3.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/99_4.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/99_5.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/99_6.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/data/labels/99_7.png +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/yolo-image.cpp +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/yolo-image.h +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/examples/yolo/yolov3-tiny.cpp +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/ggml-common.h +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/ggml.pc.in +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/include/ggml/ggml-alloc.h +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/include/ggml/ggml-backend.h +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/requirements.txt +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/spm-headers/ggml-alloc.h +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/spm-headers/ggml-backend.h +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/spm-headers/ggml.h +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/spm-headers/module.modulemap +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/src/CMakeLists.txt +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/src/ggml-alloc.c +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/src/ggml-backend-impl.h +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/src/ggml-backend.c +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/src/ggml-cuda/acc.cu +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/src/ggml-cuda/acc.cuh +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/src/ggml-cuda/alibi.cu +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/src/ggml-cuda/alibi.cuh +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/src/ggml-cuda/arange.cu +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/src/ggml-cuda/arange.cuh +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/src/ggml-cuda/argsort.cuh +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/src/ggml-cuda/binbcast.cu +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/src/ggml-cuda/binbcast.cuh +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/src/ggml-cuda/clamp.cu +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/src/ggml-cuda/clamp.cuh +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/src/ggml-cuda/concat.cu +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/src/ggml-cuda/concat.cuh +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/src/ggml-cuda/cpy.cu +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/src/ggml-cuda/cpy.cuh +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/src/ggml-cuda/diagmask.cu +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/src/ggml-cuda/diagmask.cuh +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/src/ggml-cuda/getrows.cu +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/src/ggml-cuda/getrows.cuh +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/src/ggml-cuda/im2col.cu +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/src/ggml-cuda/im2col.cuh +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/src/ggml-cuda/mmq.cu +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/src/ggml-cuda/mmq.cuh +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/src/ggml-cuda/mmvq.cu +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/src/ggml-cuda/mmvq.cuh +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/src/ggml-cuda/norm.cu +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/src/ggml-cuda/norm.cuh +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/src/ggml-cuda/pad.cu +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/src/ggml-cuda/pad.cuh +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/src/ggml-cuda/pool2d.cu +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/src/ggml-cuda/pool2d.cuh +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/src/ggml-cuda/rope.cu +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/src/ggml-cuda/rope.cuh +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/src/ggml-cuda/scale.cu +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/src/ggml-cuda/scale.cuh +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/src/ggml-cuda/softmax.cu +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/src/ggml-cuda/softmax.cuh +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/src/ggml-cuda/sumrows.cu +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/src/ggml-cuda/sumrows.cuh +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/src/ggml-cuda/tsembd.cu +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/src/ggml-cuda/tsembd.cuh +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/src/ggml-cuda/unary.cu +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/src/ggml-cuda/unary.cuh +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/src/ggml-cuda/upscale.cu +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/src/ggml-cuda/upscale.cuh +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/src/ggml-cuda/vecdotq.cuh +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/src/ggml-cuda.h +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/src/ggml-impl.h +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/src/ggml-kompute.cpp +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/src/ggml-kompute.h +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/src/ggml-metal.h +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/src/ggml-opencl.cpp +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/src/ggml-opencl.h +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/src/ggml-sycl.h +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/tests/CMakeLists.txt +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/tests/test-arange.cpp +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/tests/test-backend-buffer.cpp +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/tests/test-blas0.c +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/tests/test-conv-transpose.c +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/tests/test-conv1d.cpp +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/tests/test-conv2d.cpp +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/tests/test-customop.c +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/tests/test-dup.c +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/tests/test-grad0.cpp +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/tests/test-mul-mat.cpp +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/tests/test-mul-mat0.c +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/tests/test-mul-mat1.c +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/tests/test-mul-mat2.c +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/tests/test-opt.cpp +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/tests/test-pool.c +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/tests/test-quantize-fns.cpp +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/tests/test-quantize-perf.cpp +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/tests/test-rel-pos.c +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/tests/test-svd0.c +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/tests/test-timestep_embedding.cpp +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/tests/test-vec0.c +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/tests/test-vec1.c +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/tests/test-vec2.c +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/tests/test-xpos.c +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/tests/test0.c +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/tests/test0.zig +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/tests/test1.c +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/tests/test1.zig +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/tests/test2.c +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/tests/test2.zig +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/tests/test3.c +0 -0
- {ggml_python-0.0.34 → ggml_python-0.0.35}/vendor/ggml/tests/test3.zig +0 -0
|
@@ -10,7 +10,6 @@ on:
|
|
|
10
10
|
|
|
11
11
|
jobs:
|
|
12
12
|
build-linux:
|
|
13
|
-
|
|
14
13
|
runs-on: ubuntu-latest
|
|
15
14
|
strategy:
|
|
16
15
|
matrix:
|
|
@@ -27,13 +26,18 @@ jobs:
|
|
|
27
26
|
- name: Install dependencies
|
|
28
27
|
run: |
|
|
29
28
|
python3 -m pip install --upgrade pip pytest cmake scikit-build setuptools
|
|
30
|
-
python3 -m pip install
|
|
29
|
+
python3 -m pip install \
|
|
30
|
+
--verbose \
|
|
31
|
+
--config-settings cmake.args='-DCMAKE_BUILD_TYPE=Debug;-DCMAKE_CXX_FLAGS=-g3;-DCMAKE_C_FLAGS=-g3' \
|
|
32
|
+
--config-settings cmake.verbose=true \
|
|
33
|
+
--config-settings logging.level=INFO \
|
|
34
|
+
--config-settings install.strip=false \
|
|
35
|
+
--editable .
|
|
31
36
|
- name: Test with pytest
|
|
32
37
|
run: |
|
|
33
|
-
|
|
38
|
+
python -m pytest -s -vvvv
|
|
34
39
|
|
|
35
40
|
build-windows:
|
|
36
|
-
|
|
37
41
|
runs-on: windows-latest
|
|
38
42
|
strategy:
|
|
39
43
|
matrix:
|
|
@@ -51,13 +55,12 @@ jobs:
|
|
|
51
55
|
- name: Install dependencies
|
|
52
56
|
run: |
|
|
53
57
|
python3 -m pip install --upgrade pip pytest cmake scikit-build setuptools
|
|
54
|
-
python3 -m pip install --verbose --editable .
|
|
58
|
+
python3 -m pip install --verbose --config-settings cmake.args='-DCMAKE_BUILD_TYPE=Debug;-DCMAKE_CXX_FLAGS=-g3;-DCMAKE_C_FLAGS=-g3' --config-settings cmake.verbose=true --config-settings logging.level=INFO --config-settings install.strip=false --editable .
|
|
55
59
|
- name: Test with pytest
|
|
56
60
|
run: |
|
|
57
|
-
|
|
61
|
+
python -m pytest -s -vvvv
|
|
58
62
|
|
|
59
63
|
build-macos:
|
|
60
|
-
|
|
61
64
|
runs-on: macos-latest
|
|
62
65
|
strategy:
|
|
63
66
|
matrix:
|
|
@@ -74,38 +77,18 @@ jobs:
|
|
|
74
77
|
- name: Install dependencies
|
|
75
78
|
run: |
|
|
76
79
|
python3 -m pip install --upgrade pip pytest cmake scikit-build setuptools
|
|
77
|
-
python3 -m pip install
|
|
80
|
+
python3 -m pip install \
|
|
81
|
+
--verbose \
|
|
82
|
+
--config-settings cmake.args='-DCMAKE_BUILD_TYPE=Debug;-DCMAKE_CXX_FLAGS=-g3;-DCMAKE_C_FLAGS=-g3' \
|
|
83
|
+
--config-settings cmake.verbose=true \
|
|
84
|
+
--config-settings logging.level=INFO \
|
|
85
|
+
--config-settings install.strip=false \
|
|
86
|
+
--editable .
|
|
78
87
|
- name: Test with pytest
|
|
79
88
|
run: |
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
# build-linux-opencl:
|
|
83
|
-
# runs-on: ubuntu-latest
|
|
84
|
-
|
|
85
|
-
# steps:
|
|
86
|
-
# - uses: actions/checkout@v3
|
|
87
|
-
# with:
|
|
88
|
-
# submodules: "true"
|
|
89
|
-
|
|
90
|
-
# - name: Dependencies
|
|
91
|
-
# run: |
|
|
92
|
-
# wget -O- https://apt.repos.intel.com/intel-gpg-keys/GPG-PUB-KEY-INTEL-SW-PRODUCTS.PUB | gpg --dearmor | sudo tee /usr/share/keyrings/oneapi-archive-keyring.gpg > /dev/null
|
|
93
|
-
# echo "deb [signed-by=/usr/share/keyrings/oneapi-archive-keyring.gpg] https://apt.repos.intel.com/oneapi all main" | sudo tee /etc/apt/sources.list.d/oneAPI.list
|
|
94
|
-
# sudo apt-get update
|
|
95
|
-
# sudo apt-get install -y --no-install-recommends llvm intel-oneapi-runtime-opencl intel-oneapi-runtime-compilers libclblast-dev
|
|
96
|
-
# sudo apt-get install -y python3-dev python3-pip make
|
|
97
|
-
|
|
98
|
-
# - name: Setup
|
|
99
|
-
# run: |
|
|
100
|
-
# python3 -m pip install pytest
|
|
101
|
-
# make build.clblast
|
|
102
|
-
|
|
103
|
-
# - name: Test with pytest
|
|
104
|
-
# run: |
|
|
105
|
-
# make test
|
|
89
|
+
python -m pytest -s -vvvv
|
|
106
90
|
|
|
107
91
|
build-macos-metal:
|
|
108
|
-
|
|
109
92
|
runs-on: macos-latest
|
|
110
93
|
|
|
111
94
|
steps:
|
|
@@ -119,7 +102,13 @@ jobs:
|
|
|
119
102
|
- name: Install dependencies
|
|
120
103
|
run: |
|
|
121
104
|
python3 -m pip install --upgrade pip pytest cmake scikit-build setuptools
|
|
122
|
-
python3 -m pip install
|
|
105
|
+
python3 -m pip install \
|
|
106
|
+
--verbose \
|
|
107
|
+
--config-settings cmake.args='-DCMAKE_BUILD_TYPE=Debug;-DCMAKE_CXX_FLAGS=-g3;-DCMAKE_C_FLAGS=-g3;-DGGML_METAL=On' \
|
|
108
|
+
--config-settings cmake.verbose=true \
|
|
109
|
+
--config-settings logging.level=INFO \
|
|
110
|
+
--config-settings install.strip=false \
|
|
111
|
+
--editable .
|
|
123
112
|
- name: Test with pytest
|
|
124
113
|
run: |
|
|
125
|
-
|
|
114
|
+
python -m pytest -s -vvvv
|
|
@@ -265,33 +265,24 @@ def ggml_fp32_to_fp16(x: ctypes.c_float, /) -> int:
|
|
|
265
265
|
...
|
|
266
266
|
|
|
267
267
|
|
|
268
|
-
# GGML_API void ggml_fp16_to_fp32_row(const ggml_fp16_t * x, float * y,
|
|
268
|
+
# GGML_API void ggml_fp16_to_fp32_row(const ggml_fp16_t * x, float * y, int64_t n);
|
|
269
269
|
@ctypes_function(
|
|
270
270
|
"ggml_fp16_to_fp32_row",
|
|
271
|
-
[ctypes.POINTER(ggml_fp16_t), ctypes.POINTER(ctypes.c_float), ctypes.
|
|
271
|
+
[ctypes.POINTER(ggml_fp16_t), ctypes.POINTER(ctypes.c_float), ctypes.c_int64],
|
|
272
272
|
None,
|
|
273
|
-
)
|
|
274
|
-
def ggml_fp16_to_fp32_row(
|
|
275
|
-
x: CtypesArray[ggml_fp16_t],
|
|
276
|
-
y: CtypesArray[ctypes.c_float],
|
|
277
|
-
n: Union[ctypes.c_int, int],
|
|
278
|
-
/,
|
|
279
|
-
) -> None:
|
|
273
|
+
)
|
|
274
|
+
def ggml_fp16_to_fp32_row(x: CtypesPointer[ggml_fp16_t], y: CtypesPointer[ctypes.c_float], n: int, /) -> None:
|
|
280
275
|
...
|
|
281
276
|
|
|
282
277
|
|
|
283
|
-
|
|
278
|
+
|
|
279
|
+
# GGML_API void ggml_fp32_to_fp16_row(const float * x, ggml_fp16_t * y, int64_t n);
|
|
284
280
|
@ctypes_function(
|
|
285
281
|
"ggml_fp32_to_fp16_row",
|
|
286
|
-
[ctypes.POINTER(ctypes.c_float), ctypes.POINTER(ggml_fp16_t), ctypes.
|
|
282
|
+
[ctypes.POINTER(ctypes.c_float), ctypes.POINTER(ggml_fp16_t), ctypes.c_int64],
|
|
287
283
|
None,
|
|
288
284
|
)
|
|
289
|
-
def ggml_fp32_to_fp16_row(
|
|
290
|
-
x: CtypesArray[ctypes.c_float],
|
|
291
|
-
y: CtypesArray[ggml_fp16_t],
|
|
292
|
-
n: Union[ctypes.c_int, int],
|
|
293
|
-
/,
|
|
294
|
-
) -> None:
|
|
285
|
+
def ggml_fp32_to_fp16_row(x: CtypesPointer[ctypes.c_float], y: CtypesPointer[ggml_fp16_t], n: int, /) -> None:
|
|
295
286
|
...
|
|
296
287
|
|
|
297
288
|
|
|
@@ -679,7 +670,21 @@ GGML_TENSOR_FLAG_PARAM = 4
|
|
|
679
670
|
# char padding[4];
|
|
680
671
|
# };
|
|
681
672
|
class ggml_object(ctypes.Structure):
|
|
682
|
-
|
|
673
|
+
"""ggml object
|
|
674
|
+
|
|
675
|
+
Attributes:
|
|
676
|
+
offs (int): offset
|
|
677
|
+
size (int): size
|
|
678
|
+
next (ctypes.pointer[ggml_object]): pointer to next object
|
|
679
|
+
type (int): ggml object type
|
|
680
|
+
padding (bytes): padding"""
|
|
681
|
+
|
|
682
|
+
if TYPE_CHECKING:
|
|
683
|
+
offs: int
|
|
684
|
+
size: int
|
|
685
|
+
next: CtypesPointer[ggml_object]
|
|
686
|
+
type: int
|
|
687
|
+
padding: bytes
|
|
683
688
|
|
|
684
689
|
|
|
685
690
|
ggml_object._fields_ = [
|
|
@@ -760,7 +765,25 @@ class ggml_tensor(ctypes.Structure):
|
|
|
760
765
|
extra (ctypes.c_void_p): extra data (e.g. for CUDA)
|
|
761
766
|
"""
|
|
762
767
|
|
|
763
|
-
|
|
768
|
+
if TYPE_CHECKING:
|
|
769
|
+
type: int
|
|
770
|
+
backend: int
|
|
771
|
+
buffer: CtypesPointer[ggml_backend_buffer]
|
|
772
|
+
ne: Sequence[int]
|
|
773
|
+
nb: Sequence[int]
|
|
774
|
+
op: int
|
|
775
|
+
op_params: Sequence[int]
|
|
776
|
+
flags: int
|
|
777
|
+
grad: CtypesPointer[ggml_tensor]
|
|
778
|
+
src: CtypesArray[ggml_tensor_p]
|
|
779
|
+
perf_runs: int
|
|
780
|
+
perf_cycles: int
|
|
781
|
+
perf_time_us: int
|
|
782
|
+
view_src: CtypesPointer[ggml_tensor]
|
|
783
|
+
view_offs: int
|
|
784
|
+
data: Optional[ctypes.c_void_p]
|
|
785
|
+
name: bytes
|
|
786
|
+
extra: Optional[ctypes.c_void_p]
|
|
764
787
|
|
|
765
788
|
|
|
766
789
|
ggml_tensor._fields_ = [
|
|
@@ -828,6 +851,13 @@ class ggml_cplan(ctypes.Structure):
|
|
|
828
851
|
abort_callback_data (ctypes.c_void_p): abort callback data
|
|
829
852
|
"""
|
|
830
853
|
|
|
854
|
+
if TYPE_CHECKING:
|
|
855
|
+
work_size: int
|
|
856
|
+
work_data: CtypesPointer[ctypes.c_uint8]
|
|
857
|
+
n_threads: int
|
|
858
|
+
abort_callback: Callable[[ctypes.c_void_p], bool]
|
|
859
|
+
abort_callback_data: Optional[ctypes.c_void_p]
|
|
860
|
+
|
|
831
861
|
_fields_ = [
|
|
832
862
|
("work_size", ctypes.c_size_t),
|
|
833
863
|
("work_data", ctypes.POINTER(ctypes.c_uint8)),
|
|
@@ -863,6 +893,16 @@ GGML_CGRAPH_EVAL_ORDER_COUNT = 2
|
|
|
863
893
|
# struct ggml_tensor ** keys;
|
|
864
894
|
# };
|
|
865
895
|
class ggml_hash_set(ctypes.Structure):
|
|
896
|
+
"""ggml hash set
|
|
897
|
+
|
|
898
|
+
Attributes:
|
|
899
|
+
size (int): size
|
|
900
|
+
keys (ctypes.Array[ctypes.POINTER(ggml_tensor)]): array of tensor keys"""
|
|
901
|
+
|
|
902
|
+
if TYPE_CHECKING:
|
|
903
|
+
size: int
|
|
904
|
+
keys: CtypesArray[CtypesPointer[ggml_tensor]]
|
|
905
|
+
|
|
866
906
|
_fields_ = [
|
|
867
907
|
("size", ctypes.c_size_t),
|
|
868
908
|
("keys", ctypes.POINTER(ctypes.POINTER(ggml_tensor))),
|
|
@@ -893,6 +933,7 @@ class ggml_cgraph(ctypes.Structure):
|
|
|
893
933
|
"""ggml computation graph
|
|
894
934
|
|
|
895
935
|
Attributes:
|
|
936
|
+
size (int): size
|
|
896
937
|
n_nodes (int): number of nodes
|
|
897
938
|
n_leafs (int): number of leafs
|
|
898
939
|
nodes (ctypes.Array[ggml_tensor_p]): `n_nodes`-length array of compute tensors
|
|
@@ -903,6 +944,19 @@ class ggml_cgraph(ctypes.Structure):
|
|
|
903
944
|
perf_runs (int): number of runs
|
|
904
945
|
perf_cycles (int): number of cycles
|
|
905
946
|
perf_time_us (int): computation time in microseconds"""
|
|
947
|
+
|
|
948
|
+
if TYPE_CHECKING:
|
|
949
|
+
size: int
|
|
950
|
+
n_nodes: int
|
|
951
|
+
n_leafs: int
|
|
952
|
+
nodes: CtypesArray[CtypesPointer[ggml_tensor]]
|
|
953
|
+
grads: CtypesArray[CtypesPointer[ggml_tensor]]
|
|
954
|
+
leafs: CtypesArray[CtypesPointer[ggml_tensor]]
|
|
955
|
+
visited_hash_table: ggml_hash_set
|
|
956
|
+
order: int
|
|
957
|
+
perf_runs: int
|
|
958
|
+
perf_cycles: int
|
|
959
|
+
perf_time_us: int
|
|
906
960
|
|
|
907
961
|
_fields_ = [
|
|
908
962
|
("size", ctypes.c_int),
|
|
@@ -932,6 +986,18 @@ the `.contents` attribute."""
|
|
|
932
986
|
# void * data;
|
|
933
987
|
# };
|
|
934
988
|
class ggml_scratch(ctypes.Structure):
|
|
989
|
+
"""Scratch memory for ggml
|
|
990
|
+
|
|
991
|
+
Attributes:
|
|
992
|
+
offs (int): offset
|
|
993
|
+
size (int): size
|
|
994
|
+
data (ctypes.c_void_p): data pointer"""
|
|
995
|
+
|
|
996
|
+
if TYPE_CHECKING:
|
|
997
|
+
offs: int
|
|
998
|
+
size: int
|
|
999
|
+
data: Optional[ctypes.c_void_p]
|
|
1000
|
+
|
|
935
1001
|
_fields_ = [
|
|
936
1002
|
("offs", ctypes.c_size_t),
|
|
937
1003
|
("size", ctypes.c_size_t),
|
|
@@ -958,6 +1024,11 @@ class ggml_init_params(ctypes.Structure):
|
|
|
958
1024
|
no_alloc (bool): don't allocate memory for tensor data
|
|
959
1025
|
"""
|
|
960
1026
|
|
|
1027
|
+
if TYPE_CHECKING:
|
|
1028
|
+
mem_size: int
|
|
1029
|
+
mem_buffer: Optional[ctypes.c_void_p]
|
|
1030
|
+
no_alloc: bool
|
|
1031
|
+
|
|
961
1032
|
_fields_ = [
|
|
962
1033
|
("mem_size", ctypes.c_size_t),
|
|
963
1034
|
("mem_buffer", ctypes.c_void_p),
|
|
@@ -990,6 +1061,22 @@ GGML_TASK_TYPE_FINALIZE = 2
|
|
|
990
1061
|
# void * wdata;
|
|
991
1062
|
# };
|
|
992
1063
|
class ggml_compute_params(ctypes.Structure):
|
|
1064
|
+
"""Compute parameters for ggml
|
|
1065
|
+
|
|
1066
|
+
Attributes:
|
|
1067
|
+
type (int): task type
|
|
1068
|
+
ith (int): thread index
|
|
1069
|
+
nth (int): number of threads
|
|
1070
|
+
wsize (int): work buffer size
|
|
1071
|
+
wdata (ctypes.c_void_p): work buffer data"""
|
|
1072
|
+
|
|
1073
|
+
if TYPE_CHECKING:
|
|
1074
|
+
type: int
|
|
1075
|
+
ith: int
|
|
1076
|
+
nth: int
|
|
1077
|
+
wsize: int
|
|
1078
|
+
wdata: Optional[ctypes.c_void_p]
|
|
1079
|
+
|
|
993
1080
|
_fields_ = [
|
|
994
1081
|
("type", ctypes.c_int),
|
|
995
1082
|
("ith", ctypes.c_int),
|
|
@@ -7668,9 +7755,9 @@ def ggml_quantize_requires_imatrix(
|
|
|
7668
7755
|
# enum ggml_type type,
|
|
7669
7756
|
# const float * src,
|
|
7670
7757
|
# void * dst,
|
|
7671
|
-
#
|
|
7672
|
-
#
|
|
7673
|
-
#
|
|
7758
|
+
# int64_t start,
|
|
7759
|
+
# int64_t nrows,
|
|
7760
|
+
# int64_t n_per_row,
|
|
7674
7761
|
# const float * imatrix);
|
|
7675
7762
|
@ctypes_function(
|
|
7676
7763
|
"ggml_quantize_chunk",
|
|
@@ -7678,9 +7765,9 @@ def ggml_quantize_requires_imatrix(
|
|
|
7678
7765
|
ctypes.c_int,
|
|
7679
7766
|
ctypes.POINTER(ctypes.c_float),
|
|
7680
7767
|
ctypes.c_void_p,
|
|
7681
|
-
ctypes.
|
|
7682
|
-
ctypes.
|
|
7683
|
-
ctypes.
|
|
7768
|
+
ctypes.c_int64,
|
|
7769
|
+
ctypes.c_int64,
|
|
7770
|
+
ctypes.c_int64,
|
|
7684
7771
|
ctypes.POINTER(ctypes.c_float),
|
|
7685
7772
|
],
|
|
7686
7773
|
ctypes.c_size_t,
|
|
@@ -7689,9 +7776,9 @@ def ggml_quantize_chunk(
|
|
|
7689
7776
|
type: Union[ctypes.c_int, int],
|
|
7690
7777
|
src: CtypesArray[ctypes.c_float],
|
|
7691
7778
|
dst: Union[ctypes.c_void_p, int, None],
|
|
7692
|
-
start: Union[ctypes.
|
|
7693
|
-
nrows: Union[ctypes.
|
|
7694
|
-
n_per_row: Union[ctypes.
|
|
7779
|
+
start: Union[ctypes.c_int64, int],
|
|
7780
|
+
nrows: Union[ctypes.c_int64, int],
|
|
7781
|
+
n_per_row: Union[ctypes.c_int64, int],
|
|
7695
7782
|
imatrix: CtypesArray[ctypes.c_float],
|
|
7696
7783
|
) -> int:
|
|
7697
7784
|
...
|
|
@@ -7741,6 +7828,16 @@ gguf_context_p_ctypes = ctypes.c_void_p
|
|
|
7741
7828
|
# struct ggml_context ** ctx;
|
|
7742
7829
|
# };
|
|
7743
7830
|
class gguf_init_params(ctypes.Structure):
|
|
7831
|
+
"""Initialization parameters for gguf.
|
|
7832
|
+
|
|
7833
|
+
Parameters:
|
|
7834
|
+
no_alloc(bool): No allocation.
|
|
7835
|
+
ctx(ggml_context_p): The context."""
|
|
7836
|
+
|
|
7837
|
+
if TYPE_CHECKING:
|
|
7838
|
+
no_alloc: bool
|
|
7839
|
+
ctx: ggml_context_p
|
|
7840
|
+
|
|
7744
7841
|
_fields_ = [
|
|
7745
7842
|
("no_alloc", ctypes.c_bool),
|
|
7746
7843
|
("ctx", ctypes.POINTER(ggml_context_p_ctypes)),
|
|
@@ -8854,6 +8951,44 @@ ggml_vec_dot_t = ctypes.CFUNCTYPE(
|
|
|
8854
8951
|
# int64_t nrows; // number of rows to process simultaneously;
|
|
8855
8952
|
# } ggml_type_traits_t;
|
|
8856
8953
|
class ggml_type_traits_t(ctypes.Structure):
|
|
8954
|
+
"""Internal types and functions exposed for tests and benchmarks.
|
|
8955
|
+
|
|
8956
|
+
Attributes:
|
|
8957
|
+
type_name(bytes): Name of the type
|
|
8958
|
+
blck_size(int): Block size
|
|
8959
|
+
type_size(int): Size of the type
|
|
8960
|
+
is_quantized(bool): Is quantized
|
|
8961
|
+
to_float(ggml_to_float_t): Convert to float
|
|
8962
|
+
from_float(ggml_from_float_t): Convert from float
|
|
8963
|
+
from_float_reference(ggml_from_float_t): Convert from float reference
|
|
8964
|
+
vec_dot(ggml_vec_dot_t): Vector dot
|
|
8965
|
+
vec_dot_type(int): Vector dot type
|
|
8966
|
+
nrows(int): Number of rows to process simultaneously"""
|
|
8967
|
+
|
|
8968
|
+
if TYPE_CHECKING:
|
|
8969
|
+
type_name: bytes
|
|
8970
|
+
blck_size: int
|
|
8971
|
+
type_size: int
|
|
8972
|
+
is_quantized: bool
|
|
8973
|
+
to_float: Callable[[ctypes.c_void_p, CtypesPointer[ctypes.c_float], int], None]
|
|
8974
|
+
from_float: Callable[[CtypesPointer[ctypes.c_float], ctypes.c_void_p, int], None]
|
|
8975
|
+
from_float_reference: Callable[[CtypesPointer[ctypes.c_float], ctypes.c_void_p, int], None]
|
|
8976
|
+
vec_dot: Callable[
|
|
8977
|
+
[
|
|
8978
|
+
int,
|
|
8979
|
+
CtypesPointer[ctypes.c_float],
|
|
8980
|
+
int,
|
|
8981
|
+
ctypes.c_void_p,
|
|
8982
|
+
int,
|
|
8983
|
+
ctypes.c_void_p,
|
|
8984
|
+
int,
|
|
8985
|
+
int,
|
|
8986
|
+
],
|
|
8987
|
+
None,
|
|
8988
|
+
]
|
|
8989
|
+
vec_dot_type: int
|
|
8990
|
+
nrows: int
|
|
8991
|
+
|
|
8857
8992
|
_fields_ = [
|
|
8858
8993
|
("type_name", ctypes.c_char_p),
|
|
8859
8994
|
("blck_size", ctypes.c_int),
|
|
@@ -8904,6 +9039,20 @@ ggml_backend_t_ctypes: TypeAlias = ctypes.c_void_p
|
|
|
8904
9039
|
# size_t offset;
|
|
8905
9040
|
# };
|
|
8906
9041
|
class ggml_tallocr(ctypes.Structure):
|
|
9042
|
+
"""Tensor allocator
|
|
9043
|
+
|
|
9044
|
+
Attributes:
|
|
9045
|
+
buffer: ggml_backend_buffer_t
|
|
9046
|
+
base: ctypes.c_void_p
|
|
9047
|
+
alignment: ctypes.c_size_t
|
|
9048
|
+
offset: ctypes.c_size_t"""
|
|
9049
|
+
|
|
9050
|
+
if TYPE_CHECKING:
|
|
9051
|
+
buffer: ggml_backend_buffer_t
|
|
9052
|
+
base: ctypes.c_void_p
|
|
9053
|
+
alignment: int
|
|
9054
|
+
offset: int
|
|
9055
|
+
|
|
8907
9056
|
_fields_ = [
|
|
8908
9057
|
("buffer", ggml_backend_buffer_t_ctypes),
|
|
8909
9058
|
("base", ctypes.c_void_p),
|
|
@@ -9532,7 +9681,7 @@ def ggml_backend_graph_plan_free(
|
|
|
9532
9681
|
)
|
|
9533
9682
|
def ggml_backend_graph_plan_compute(
|
|
9534
9683
|
backend: Union[ggml_backend_t, int], plan: ggml_backend_graph_plan_t, /
|
|
9535
|
-
) ->
|
|
9684
|
+
) -> int:
|
|
9536
9685
|
...
|
|
9537
9686
|
|
|
9538
9687
|
# GGML_API enum ggml_status ggml_backend_graph_compute (ggml_backend_t backend, struct ggml_cgraph * cgraph);
|
|
@@ -9543,7 +9692,7 @@ def ggml_backend_graph_plan_compute(
|
|
|
9543
9692
|
)
|
|
9544
9693
|
def ggml_backend_graph_compute(
|
|
9545
9694
|
backend: Union[ggml_backend_t, int], cgraph: ggml_cgraph_p, /
|
|
9546
|
-
) ->
|
|
9695
|
+
) -> int:
|
|
9547
9696
|
...
|
|
9548
9697
|
|
|
9549
9698
|
# GGML_API enum ggml_status ggml_backend_graph_compute_async(ggml_backend_t backend, struct ggml_cgraph * cgraph);
|
|
@@ -9554,7 +9703,7 @@ def ggml_backend_graph_compute(
|
|
|
9554
9703
|
)
|
|
9555
9704
|
def ggml_backend_graph_compute_async(
|
|
9556
9705
|
backend: Union[ggml_backend_t, int], cgraph: ggml_cgraph_p, /
|
|
9557
|
-
) ->
|
|
9706
|
+
) -> int:
|
|
9558
9707
|
...
|
|
9559
9708
|
|
|
9560
9709
|
|
|
@@ -9567,7 +9716,7 @@ def ggml_backend_graph_compute_async(
|
|
|
9567
9716
|
def ggml_backend_supports_op(
|
|
9568
9717
|
backend: Union[ggml_backend_t, int],
|
|
9569
9718
|
op: ggml_tensor_p,
|
|
9570
|
-
) ->
|
|
9719
|
+
) -> bool:
|
|
9571
9720
|
...
|
|
9572
9721
|
|
|
9573
9722
|
|
|
@@ -9580,7 +9729,7 @@ def ggml_backend_supports_op(
|
|
|
9580
9729
|
def ggml_backend_offload_op(
|
|
9581
9730
|
backend: Union[ggml_backend_t, int],
|
|
9582
9731
|
op: ggml_tensor_p,
|
|
9583
|
-
) ->
|
|
9732
|
+
) -> bool:
|
|
9584
9733
|
...
|
|
9585
9734
|
|
|
9586
9735
|
|
|
@@ -10090,6 +10239,20 @@ def ggml_backend_sched_set_eval_callback(
|
|
|
10090
10239
|
# struct ggml_cgraph * graph;
|
|
10091
10240
|
# };
|
|
10092
10241
|
class ggml_backend_graph_copy(ctypes.Structure):
|
|
10242
|
+
"""Structure for ggml_backend_graph_copy.
|
|
10243
|
+
|
|
10244
|
+
Attributes:
|
|
10245
|
+
buffer: ggml_backend_buffer_t
|
|
10246
|
+
ctx_allocated: ggml_context_p
|
|
10247
|
+
ctx_unallocated: ggml_context_p
|
|
10248
|
+
graph: ctypes.POINTER(ggml_cgraph)"""
|
|
10249
|
+
|
|
10250
|
+
if TYPE_CHECKING:
|
|
10251
|
+
buffer: ggml_backend_buffer_t
|
|
10252
|
+
ctx_allocated: ggml_context_p
|
|
10253
|
+
ctx_unallocated: ggml_context_p
|
|
10254
|
+
graph: CtypesPointer[ggml_cgraph]
|
|
10255
|
+
|
|
10093
10256
|
_fields_ = [
|
|
10094
10257
|
("buffer", ggml_backend_buffer_t_ctypes),
|
|
10095
10258
|
("ctx_allocated", ggml_context_p_ctypes),
|
|
@@ -0,0 +1,175 @@
|
|
|
1
|
+
# date: Tue Apr 9 20:16:51 EEST 2024
|
|
2
|
+
# this file is auto-generated by scripts/gen-authors.sh
|
|
3
|
+
|
|
4
|
+
0cc4m <picard12@live.de>
|
|
5
|
+
AT <manyoso@users.noreply.github.com>
|
|
6
|
+
Abhilash Majumder <30946547+abhilash1910@users.noreply.github.com>
|
|
7
|
+
Adam Tazi <52357206+ad1tazi@users.noreply.github.com>
|
|
8
|
+
AidanBeltonS <87009434+AidanBeltonS@users.noreply.github.com>
|
|
9
|
+
Alex Azarov <alex@azarov.by>
|
|
10
|
+
Alex von Gluck IV <kallisti5@unixzen.com>
|
|
11
|
+
AmbientL <107641468+AmbientL@users.noreply.github.com>
|
|
12
|
+
AmirAli Mirian <37371367+amiralimi@users.noreply.github.com>
|
|
13
|
+
Ananta Bastola <anantarajbastola@gmail.com>
|
|
14
|
+
Andrei <abetlen@gmail.com>
|
|
15
|
+
Arjun <ccldarjun@icloud.com>
|
|
16
|
+
Ashraful Islam <ashraful.meche@gmail.com>
|
|
17
|
+
Astariul <43774355+astariul@users.noreply.github.com>
|
|
18
|
+
AsukaMinato <asukaminato@nyan.eu.org>
|
|
19
|
+
Avi Lumelsky <avilume@gmail.com>
|
|
20
|
+
Bart Pelle <3662930+Velocity-@users.noreply.github.com>
|
|
21
|
+
Borislav Stanimirov <b.stanimirov@abv.bg>
|
|
22
|
+
Brad Ito <phlogisticfugu@users.noreply.github.com>
|
|
23
|
+
Bryan Lozano <b.lozano.havoc@gmail.com>
|
|
24
|
+
Carolinabanana <140120812+Carolinabanana@users.noreply.github.com>
|
|
25
|
+
Cebtenzzre <cebtenzzre@gmail.com>
|
|
26
|
+
Cordeiro <1471463+ocordeiro@users.noreply.github.com>
|
|
27
|
+
Cristiano Calcagno <cristianoc@users.noreply.github.com>
|
|
28
|
+
Dan Forbes <dan@danforbes.dev>
|
|
29
|
+
Daniel Bevenius <daniel.bevenius@gmail.com>
|
|
30
|
+
Daulet Zhanguzin <daulet@users.noreply.github.com>
|
|
31
|
+
David Miller <david@patagona.ca>
|
|
32
|
+
Davidson Francis <davidsondfgl@gmail.com>
|
|
33
|
+
Didzis Gosko <didzis@users.noreply.github.com>
|
|
34
|
+
Diogo <dgcruz983@gmail.com>
|
|
35
|
+
Dr. Tom Murphy VII Ph.D <499244+tom7@users.noreply.github.com>
|
|
36
|
+
Ebey Abraham <ebey97@gmail.com>
|
|
37
|
+
Eldar Yusupov <eyusupov@gmail.com>
|
|
38
|
+
Engininja2 <139037756+Engininja2@users.noreply.github.com>
|
|
39
|
+
Erik Scholz <Green-Sky@users.noreply.github.com>
|
|
40
|
+
Ettore Di Giacinto <mudler@users.noreply.github.com>
|
|
41
|
+
Eve <139727413+netrunnereve@users.noreply.github.com>
|
|
42
|
+
F1L1P <78918286+F1L1Pv2@users.noreply.github.com>
|
|
43
|
+
FantasyGmm <16450052+FantasyGmm@users.noreply.github.com>
|
|
44
|
+
Felix <stenbackfelix@gmail.com>
|
|
45
|
+
Finn Voorhees <finnvoorhees@gmail.com>
|
|
46
|
+
GainLee <perfecter.gen@gmail.com>
|
|
47
|
+
George Hindle <george@georgehindle.com>
|
|
48
|
+
Georgi Gerganov <ggerganov@gmail.com>
|
|
49
|
+
Guillaume Wenzek <gwenzek@users.noreply.github.com>
|
|
50
|
+
Halalaluyafail3 <55773281+Halalaluyafail3@users.noreply.github.com>
|
|
51
|
+
Herman Semenov <GermanAizek@yandex.ru>
|
|
52
|
+
Hirochika Matsumoto <git@hkmatsumoto.com>
|
|
53
|
+
Hugo Rosenkranz-Costa <hugo.rosenkranz@gmail.com>
|
|
54
|
+
Hyunsung Lee <ita9naiwa@gmail.com>
|
|
55
|
+
IGUILIZ Salah-Eddine <76955987+salahiguiliz@users.noreply.github.com>
|
|
56
|
+
Ian Bull <irbull@eclipsesource.com>
|
|
57
|
+
Ivan Stepanov <ivanstepanovftw@gmail.com>
|
|
58
|
+
Ivan Zdane <accounts@ivanzdane.com>
|
|
59
|
+
Jack Mousseau <jmousseau@users.noreply.github.com>
|
|
60
|
+
Jack Vial <vialjack@gmail.com>
|
|
61
|
+
JacobLinCool <jacoblincool@gmail.com>
|
|
62
|
+
Jakob Frick <jakob.maria.frick@gmail.com>
|
|
63
|
+
Jan Ploski <jpl@plosquare.com>
|
|
64
|
+
Jared Van Bortel <jared@nomic.ai>
|
|
65
|
+
Jeffrey Quesnelle <jquesnelle@gmail.com>
|
|
66
|
+
Jiahao Li <liplus17@163.com>
|
|
67
|
+
JidongZhang-THU <1119708529@qq.com>
|
|
68
|
+
Jiří Podivín <66251151+jpodivin@users.noreply.github.com>
|
|
69
|
+
Jo Liss <joliss42@gmail.com>
|
|
70
|
+
Johannes Gäßler <johannesg@5d6.de>
|
|
71
|
+
John Balis <phobossystems@gmail.com>
|
|
72
|
+
Josh Bleecher Snyder <josharian@gmail.com>
|
|
73
|
+
Judd <foldl@users.noreply.github.com>
|
|
74
|
+
Justine Tunney <jtunney@gmail.com>
|
|
75
|
+
Kawrakow <48489457+ikawrakow@users.noreply.github.com>
|
|
76
|
+
Konstantin Zhuravlyov <konstantin.zhuravlyov@amd.com>
|
|
77
|
+
Kylin <56434533+KyL0N@users.noreply.github.com>
|
|
78
|
+
LoganDark <git@logandark.mozmail.com>
|
|
79
|
+
LoganDark <github@logandark.mozmail.com>
|
|
80
|
+
LostRuins <39025047+LostRuins@users.noreply.github.com>
|
|
81
|
+
Lukas Möller <mail@lukas-moeller.ch>
|
|
82
|
+
M. Yusuf Sarıgöz <yusufsarigoz@gmail.com>
|
|
83
|
+
MaiHD <maihd.dev@gmail.com>
|
|
84
|
+
Mathijs de Bruin <mathijs@mathijsfietst.nl>
|
|
85
|
+
Mayank Kumar Pal <mynkpl1998@gmail.com>
|
|
86
|
+
Meng, Hengyu <hengyu.meng@intel.com>
|
|
87
|
+
Metal Whale <45712559+metalwhale@users.noreply.github.com>
|
|
88
|
+
Michael Klimenko <mklimenko29@gmail.com>
|
|
89
|
+
Michael Podvitskiy <podvitskiymichael@gmail.com>
|
|
90
|
+
Michael Verrilli <msv@pobox.com>
|
|
91
|
+
Neo Zhang Jianyu <jianyu.zhang@intel.com>
|
|
92
|
+
Neuman Vong <neuman.vong@gmail.com>
|
|
93
|
+
Nevin <nevinpuri1901@gmail.com>
|
|
94
|
+
Nouamane Tazi <nouamane98@gmail.com>
|
|
95
|
+
Olivier Chafik <ochafik@google.com>
|
|
96
|
+
Olivier Chafik <ochafik@users.noreply.github.com>
|
|
97
|
+
Ondřej Čertík <ondrej@certik.us>
|
|
98
|
+
Ouadie EL FAROUKI <ouadie.elfarouki@codeplay.com>
|
|
99
|
+
PAB <pierreantoine.bannier@gmail.com>
|
|
100
|
+
Paul Tsochantaris <ptsochantaris@icloud.com>
|
|
101
|
+
Philpax <me@philpax.me>
|
|
102
|
+
Pierre Alexandre SCHEMBRI <pa.schembri@gmail.com>
|
|
103
|
+
Playdev <josang1204@gmail.com>
|
|
104
|
+
Radoslav Gerganov <rgerganov@gmail.com>
|
|
105
|
+
Radosław Gryta <radek.gryta@gmail.com>
|
|
106
|
+
Ravindra Marella <marella@users.noreply.github.com>
|
|
107
|
+
Ray Cromwell <cromwellian@gmail.com>
|
|
108
|
+
Reinforce-II <fate@eastal.com>
|
|
109
|
+
Reza Rezvan <reza@rezvan.xyz>
|
|
110
|
+
Rick G <26732651+TheFlipbook@users.noreply.github.com>
|
|
111
|
+
RiverZhou <riverzhou2000@gmail.com>
|
|
112
|
+
Ryan Hitchman <hitchmanr@gmail.com>
|
|
113
|
+
Sam Spilsbury <smspillaz@gmail.com>
|
|
114
|
+
Sanchit Gandhi <93869735+sanchit-gandhi@users.noreply.github.com>
|
|
115
|
+
Santtu Keskinen <santtu.keskinen@gmail.com>
|
|
116
|
+
Sergio López <slp@sinrega.org>
|
|
117
|
+
Shijie <821898965@qq.com>
|
|
118
|
+
Siddharth Ramakrishnan <srr2141@columbia.edu>
|
|
119
|
+
Skyler Celestinian-Sterling <80314197+Celestinian@users.noreply.github.com>
|
|
120
|
+
Slava Primenko <primenko.s@gmail.com>
|
|
121
|
+
Steward Garcia <57494570+FSSRepo@users.noreply.github.com>
|
|
122
|
+
Supreet Sethi <supreet.sethi@gmail.com>
|
|
123
|
+
Takuya Takeuchi <takuya.takeuchi.dev@gmail.com>
|
|
124
|
+
Tamotsu Takahashi <ttakah+github@gmail.com>
|
|
125
|
+
Tanmay <tnmysachan@gmail.com>
|
|
126
|
+
Tanmay Sachan <tnmysachan@gmail.com>
|
|
127
|
+
Timothy Cronin <40186632+4imothy@users.noreply.github.com>
|
|
128
|
+
Tom Bailey <tombailey@users.noreply.github.com>
|
|
129
|
+
Tom Jobbins <784313+TheBloke@users.noreply.github.com>
|
|
130
|
+
Tyé singwa <92231658+tye-singwa@users.noreply.github.com>
|
|
131
|
+
UEXTM.com <84163508+uextm@users.noreply.github.com>
|
|
132
|
+
WillCorticesAI <150854901+WillCorticesAI@users.noreply.github.com>
|
|
133
|
+
XiaotaoChen <chenxiaotao1234@gmail.com>
|
|
134
|
+
Yavor Ivanov <yivanov@viewray.com>
|
|
135
|
+
YavorGIvanov <yivanov@viewray.com>
|
|
136
|
+
apcameron <37645737+apcameron@users.noreply.github.com>
|
|
137
|
+
appvoid <78444142+appvoid@users.noreply.github.com>
|
|
138
|
+
ariez-xyz <41232910+ariez-xyz@users.noreply.github.com>
|
|
139
|
+
automaticcat <daogiatuank54@gmail.com>
|
|
140
|
+
bmwl <brian.marshall@tolko.com>
|
|
141
|
+
bobqianic <129547291+bobqianic@users.noreply.github.com>
|
|
142
|
+
bssrdf <merlintiger@hotmail.com>
|
|
143
|
+
chengchi <davesjoewang@gmail.com>
|
|
144
|
+
compilade <113953597+compilade@users.noreply.github.com>
|
|
145
|
+
ddpasa <112642920+ddpasa@users.noreply.github.com>
|
|
146
|
+
denersc <denerstassun@gmail.com>
|
|
147
|
+
dscripka <dscripka@users.noreply.github.com>
|
|
148
|
+
fitzsim <fitzsim@fitzsim.org>
|
|
149
|
+
goerch <jhr.walter@t-online.de>
|
|
150
|
+
hidenorly <hidenorly@users.noreply.github.com>
|
|
151
|
+
hydai <z54981220@gmail.com>
|
|
152
|
+
jaeminSon <woalsdnd@gmail.com>
|
|
153
|
+
johnson442 <56517414+johnson442@users.noreply.github.com>
|
|
154
|
+
katsu560 <118887472+katsu560@users.noreply.github.com>
|
|
155
|
+
klosax <131523366+klosax@users.noreply.github.com>
|
|
156
|
+
le.chang <cljs118@126.com>
|
|
157
|
+
leejet <31925346+leejet@users.noreply.github.com>
|
|
158
|
+
leejet <leejet714@gmail.com>
|
|
159
|
+
magicse <magicse@users.noreply.github.com>
|
|
160
|
+
ochafik <ochafik@google.com>
|
|
161
|
+
otaGran <ujt2h8@gmail.com>
|
|
162
|
+
pikalover6 <49179590+pikalover6@users.noreply.github.com>
|
|
163
|
+
postmasters <namnguyen@google.com>
|
|
164
|
+
sjinzh <sjinzh@gmail.com>
|
|
165
|
+
skirodev <57715494+skirodev@users.noreply.github.com>
|
|
166
|
+
slaren <slarengh@gmail.com>
|
|
167
|
+
snadampal <87143774+snadampal@users.noreply.github.com>
|
|
168
|
+
taher <8665427+nullhook@users.noreply.github.com>
|
|
169
|
+
texmex76 <40733439+texmex76@users.noreply.github.com>
|
|
170
|
+
the-crypt-keeper <84680712+the-crypt-keeper@users.noreply.github.com>
|
|
171
|
+
ulatekh <ulatekh@yahoo.com>
|
|
172
|
+
yangyaofei <yangyaofei@gmail.com>
|
|
173
|
+
zhouwg <6889919+zhouwg@users.noreply.github.com>
|
|
174
|
+
布客飞龙 <562826179@qq.com>
|
|
175
|
+
旺旺碎冰冰 <38837039+Cyberhan123@users.noreply.github.com>
|