ggml-python 0.0.32__tar.gz → 0.0.34__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.32 → ggml_python-0.0.34}/.github/workflows/wheels-index.yaml +1 -0
- ggml_python-0.0.34/.github/workflows/wheels-metal.yaml +87 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/CMakeLists.txt +14 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/PKG-INFO +1 -1
- ggml_python-0.0.34/ggml/__init__.py +3 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/ggml/ggml.py +1 -1
- {ggml_python-0.0.32 → ggml_python-0.0.34}/tests/test_ggml_metal.py +0 -1
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/CMakeLists.txt +1 -0
- ggml_python-0.0.34/vendor/ggml/docs/logo/ggml-logo-inverted.jpg +0 -0
- ggml_python-0.0.34/vendor/ggml/docs/logo/ggml-logo-inverted.svg +3 -0
- ggml_python-0.0.34/vendor/ggml/docs/logo/ggml-logo-transparent-inverted.png +0 -0
- ggml_python-0.0.34/vendor/ggml/docs/logo/ggml-logo-transparent.png +0 -0
- ggml_python-0.0.34/vendor/ggml/docs/logo/ggml-logo.jpg +0 -0
- ggml_python-0.0.34/vendor/ggml/docs/logo/ggml-logo.svg +3 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/include/ggml/ggml-backend.h +1 -1
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/src/CMakeLists.txt +72 -0
- ggml_python-0.0.32/ggml/__init__.py +0 -3
- {ggml_python-0.0.32 → ggml_python-0.0.34}/.github/workflows/publish.yaml +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/.github/workflows/test.yaml +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/.github/workflows/wheels-cuda.yaml +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/.github/workflows/wheels.yaml +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/.gitignore +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/.gitmodules +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/.readthedocs.yaml +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/LICENSE.md +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/Makefile +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/README.md +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/docs/api-reference.md +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/docs/index.md +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/examples/clip/README.md +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/examples/clip/convert-pt-to-ggml.py +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/examples/clip/model.py +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/examples/clip/requirements.txt +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/examples/clip/utils.py +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/examples/custom-operators/example_jax.py +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/examples/replit/README.md +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/examples/replit/app.py +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/examples/replit/main.py +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/examples/replit/requirements.txt +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/ggml/experimental.py +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/ggml/py.typed +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/ggml/utils.py +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/mkdocs.yml +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/pyproject.toml +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/scripts/releases-to-pep-503.sh +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/tests/__init__.py +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/tests/test_experimental_api.py +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/tests/test_ggml.py +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/tests/test_ggml_cuda.py +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/tests/test_utils.py +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/.editorconfig +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/.git +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/.github/workflows/ci.yml +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/.gitignore +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/LICENSE +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/Package.swift +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/README.md +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/build.zig +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/ci/run.sh +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/cmake/BuildTypes.cmake +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/cmake/GitVars.cmake +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/docs/gguf.md +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/CMakeLists.txt +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/common-ggml.cpp +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/common-ggml.h +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/common.cpp +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/common.h +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/dr_wav.h +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/gpt-2/CMakeLists.txt +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/gpt-2/README.md +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/gpt-2/convert-cerebras-to-ggml.py +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/gpt-2/convert-ckpt-to-ggml.py +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/gpt-2/convert-h5-to-ggml.py +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/gpt-2/download-ggml-model.sh +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/gpt-2/download-model.sh +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/gpt-2/main-alloc.cpp +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/gpt-2/main-backend.cpp +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/gpt-2/main-batched.cpp +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/gpt-2/main-ctx.cpp +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/gpt-2/main-sched.cpp +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/gpt-2/quantize.cpp +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/gpt-j/CMakeLists.txt +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/gpt-j/README.md +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/gpt-j/convert-h5-to-ggml.py +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/gpt-j/download-ggml-model.sh +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/gpt-j/download-model.sh +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/gpt-j/main.cpp +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/gpt-j/quantize.cpp +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/magika/CMakeLists.txt +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/magika/README.md +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/magika/convert.py +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/magika/main.cpp +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/mnist/CMakeLists.txt +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/mnist/README.md +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/mnist/convert-h5-to-ggml.py +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/mnist/main-cnn.cpp +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/mnist/main-cpu.cpp +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/mnist/main-mtl.cpp +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/mnist/main-mtl.h +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/mnist/main-mtl.m +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/mnist/main.cpp +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/mnist/mnist-cnn.py +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/mnist/web/.gitignore +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/mnist/web/index.html +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/prompts/dolly-v2.txt +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/prompts/gpt-2-chinese.txt +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/prompts/gpt-2.txt +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/prompts/gpt-j.txt +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/prompts/gpt-neox-japanese.txt +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/prompts/gpt-neox.txt +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/prompts/polyglot-ko.txt +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/prompts/replit.txt +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/prompts/starcoder.txt +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/prompts/test-cases.txt +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/prompts/tokenize_huggingface.py +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/prompts/whisper.txt +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/python/README.md +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/python/api.h +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/python/example_add_quant.py +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/python/example_test_all_quants.py +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/python/ggml/__init__.py +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/python/ggml/__init__.pyi +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/python/ggml/cffi.py +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/python/ggml/ffi/__init__.pyi +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/python/ggml/utils.py +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/python/regenerate.py +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/python/stubs.py +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/python/test_tensor.py +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/sam/CMakeLists.txt +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/sam/README.md +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/sam/convert-pth-to-ggml.py +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/sam/example.jpg +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/sam/main.cpp +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/simple/CMakeLists.txt +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/simple/README.md +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/simple/simple-backend.cpp +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/simple/simple-ctx.cpp +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/stb_image.h +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/stb_image_write.h +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/whisper/CMakeLists.txt +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/whisper/README.md +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/whisper/convert-pt-to-ggml.py +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/whisper/main.cpp +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/whisper/quantize.cpp +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/whisper/whisper.cpp +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/whisper/whisper.h +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/CMakeLists.txt +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/README.md +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/convert-yolov3-tiny.py +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/coco.names +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/100_0.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/100_1.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/100_2.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/100_3.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/100_4.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/100_5.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/100_6.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/100_7.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/101_0.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/101_1.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/101_2.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/101_3.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/101_4.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/101_5.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/101_6.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/101_7.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/102_0.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/102_1.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/102_2.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/102_3.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/102_4.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/102_5.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/102_6.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/102_7.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/103_0.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/103_1.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/103_2.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/103_3.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/103_4.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/103_5.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/103_6.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/103_7.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/104_0.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/104_1.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/104_2.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/104_3.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/104_4.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/104_5.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/104_6.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/104_7.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/105_0.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/105_1.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/105_2.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/105_3.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/105_4.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/105_5.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/105_6.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/105_7.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/106_0.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/106_1.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/106_2.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/106_3.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/106_4.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/106_5.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/106_6.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/106_7.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/107_0.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/107_1.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/107_2.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/107_3.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/107_4.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/107_5.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/107_6.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/107_7.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/108_0.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/108_1.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/108_2.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/108_3.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/108_4.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/108_5.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/108_6.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/108_7.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/109_0.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/109_1.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/109_2.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/109_3.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/109_4.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/109_5.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/109_6.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/109_7.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/110_0.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/110_1.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/110_2.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/110_3.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/110_4.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/110_5.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/110_6.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/110_7.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/111_0.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/111_1.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/111_2.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/111_3.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/111_4.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/111_5.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/111_6.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/111_7.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/112_0.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/112_1.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/112_2.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/112_3.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/112_4.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/112_5.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/112_6.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/112_7.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/113_0.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/113_1.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/113_2.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/113_3.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/113_4.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/113_5.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/113_6.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/113_7.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/114_0.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/114_1.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/114_2.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/114_3.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/114_4.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/114_5.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/114_6.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/114_7.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/115_0.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/115_1.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/115_2.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/115_3.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/115_4.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/115_5.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/115_6.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/115_7.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/116_0.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/116_1.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/116_2.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/116_3.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/116_4.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/116_5.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/116_6.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/116_7.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/117_0.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/117_1.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/117_2.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/117_3.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/117_4.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/117_5.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/117_6.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/117_7.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/118_0.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/118_1.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/118_2.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/118_3.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/118_4.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/118_5.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/118_6.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/118_7.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/119_0.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/119_1.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/119_2.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/119_3.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/119_4.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/119_5.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/119_6.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/119_7.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/120_0.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/120_1.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/120_2.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/120_3.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/120_4.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/120_5.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/120_6.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/120_7.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/121_0.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/121_1.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/121_2.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/121_3.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/121_4.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/121_5.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/121_6.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/121_7.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/122_0.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/122_1.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/122_2.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/122_3.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/122_4.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/122_5.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/122_6.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/122_7.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/123_0.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/123_1.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/123_2.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/123_3.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/123_4.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/123_5.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/123_6.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/123_7.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/124_0.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/124_1.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/124_2.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/124_3.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/124_4.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/124_5.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/124_6.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/124_7.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/125_0.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/125_1.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/125_2.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/125_3.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/125_4.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/125_5.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/125_6.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/125_7.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/126_0.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/126_1.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/126_2.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/126_3.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/126_4.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/126_5.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/126_6.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/126_7.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/32_0.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/32_1.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/32_2.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/32_3.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/32_4.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/32_5.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/32_6.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/32_7.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/33_0.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/33_1.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/33_2.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/33_3.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/33_4.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/33_5.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/33_6.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/33_7.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/34_0.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/34_1.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/34_2.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/34_3.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/34_4.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/34_5.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/34_6.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/34_7.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/35_0.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/35_1.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/35_2.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/35_3.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/35_4.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/35_5.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/35_6.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/35_7.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/36_0.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/36_1.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/36_2.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/36_3.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/36_4.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/36_5.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/36_6.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/36_7.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/37_0.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/37_1.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/37_2.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/37_3.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/37_4.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/37_5.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/37_6.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/37_7.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/38_0.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/38_1.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/38_2.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/38_3.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/38_4.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/38_5.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/38_6.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/38_7.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/39_0.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/39_1.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/39_2.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/39_3.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/39_4.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/39_5.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/39_6.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/39_7.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/40_0.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/40_1.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/40_2.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/40_3.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/40_4.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/40_5.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/40_6.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/40_7.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/41_0.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/41_1.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/41_2.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/41_3.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/41_4.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/41_5.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/41_6.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/41_7.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/42_0.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/42_1.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/42_2.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/42_3.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/42_4.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/42_5.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/42_6.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/42_7.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/43_0.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/43_1.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/43_2.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/43_3.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/43_4.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/43_5.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/43_6.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/43_7.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/44_0.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/44_1.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/44_2.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/44_3.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/44_4.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/44_5.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/44_6.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/44_7.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/45_0.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/45_1.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/45_2.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/45_3.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/45_4.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/45_5.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/45_6.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/45_7.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/46_0.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/46_1.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/46_2.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/46_3.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/46_4.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/46_5.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/46_6.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/46_7.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/47_0.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/47_1.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/47_2.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/47_3.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/47_4.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/47_5.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/47_6.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/47_7.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/48_0.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/48_1.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/48_2.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/48_3.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/48_4.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/48_5.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/48_6.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/48_7.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/49_0.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/49_1.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/49_2.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/49_3.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/49_4.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/49_5.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/49_6.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/49_7.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/50_0.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/50_1.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/50_2.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/50_3.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/50_4.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/50_5.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/50_6.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/50_7.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/51_0.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/51_1.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/51_2.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/51_3.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/51_4.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/51_5.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/51_6.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/51_7.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/52_0.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/52_1.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/52_2.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/52_3.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/52_4.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/52_5.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/52_6.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/52_7.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/53_0.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/53_1.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/53_2.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/53_3.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/53_4.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/53_5.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/53_6.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/53_7.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/54_0.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/54_1.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/54_2.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/54_3.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/54_4.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/54_5.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/54_6.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/54_7.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/55_0.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/55_1.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/55_2.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/55_3.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/55_4.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/55_5.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/55_6.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/55_7.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/56_0.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/56_1.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/56_2.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/56_3.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/56_4.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/56_5.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/56_6.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/56_7.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/57_0.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/57_1.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/57_2.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/57_3.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/57_4.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/57_5.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/57_6.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/57_7.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/58_0.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/58_1.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/58_2.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/58_3.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/58_4.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/58_5.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/58_6.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/58_7.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/59_0.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/59_1.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/59_2.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/59_3.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/59_4.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/59_5.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/59_6.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/59_7.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/60_0.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/60_1.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/60_2.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/60_3.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/60_4.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/60_5.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/60_6.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/60_7.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/61_0.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/61_1.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/61_2.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/61_3.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/61_4.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/61_5.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/61_6.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/61_7.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/62_0.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/62_1.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/62_2.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/62_3.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/62_4.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/62_5.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/62_6.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/62_7.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/63_0.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/63_1.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/63_2.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/63_3.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/63_4.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/63_5.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/63_6.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/63_7.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/64_0.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/64_1.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/64_2.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/64_3.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/64_4.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/64_5.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/64_6.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/64_7.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/65_0.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/65_1.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/65_2.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/65_3.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/65_4.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/65_5.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/65_6.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/65_7.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/66_0.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/66_1.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/66_2.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/66_3.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/66_4.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/66_5.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/66_6.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/66_7.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/67_0.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/67_1.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/67_2.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/67_3.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/67_4.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/67_5.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/67_6.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/67_7.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/68_0.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/68_1.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/68_2.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/68_3.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/68_4.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/68_5.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/68_6.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/68_7.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/69_0.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/69_1.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/69_2.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/69_3.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/69_4.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/69_5.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/69_6.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/69_7.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/70_0.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/70_1.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/70_2.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/70_3.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/70_4.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/70_5.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/70_6.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/70_7.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/71_0.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/71_1.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/71_2.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/71_3.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/71_4.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/71_5.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/71_6.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/71_7.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/72_0.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/72_1.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/72_2.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/72_3.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/72_4.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/72_5.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/72_6.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/72_7.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/73_0.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/73_1.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/73_2.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/73_3.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/73_4.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/73_5.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/73_6.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/73_7.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/74_0.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/74_1.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/74_2.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/74_3.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/74_4.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/74_5.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/74_6.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/74_7.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/75_0.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/75_1.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/75_2.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/75_3.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/75_4.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/75_5.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/75_6.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/75_7.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/76_0.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/76_1.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/76_2.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/76_3.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/76_4.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/76_5.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/76_6.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/76_7.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/77_0.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/77_1.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/77_2.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/77_3.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/77_4.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/77_5.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/77_6.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/77_7.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/78_0.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/78_1.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/78_2.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/78_3.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/78_4.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/78_5.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/78_6.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/78_7.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/79_0.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/79_1.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/79_2.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/79_3.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/79_4.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/79_5.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/79_6.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/79_7.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/80_0.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/80_1.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/80_2.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/80_3.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/80_4.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/80_5.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/80_6.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/80_7.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/81_0.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/81_1.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/81_2.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/81_3.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/81_4.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/81_5.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/81_6.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/81_7.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/82_0.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/82_1.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/82_2.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/82_3.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/82_4.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/82_5.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/82_6.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/82_7.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/83_0.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/83_1.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/83_2.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/83_3.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/83_4.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/83_5.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/83_6.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/83_7.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/84_0.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/84_1.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/84_2.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/84_3.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/84_4.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/84_5.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/84_6.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/84_7.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/85_0.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/85_1.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/85_2.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/85_3.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/85_4.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/85_5.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/85_6.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/85_7.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/86_0.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/86_1.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/86_2.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/86_3.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/86_4.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/86_5.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/86_6.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/86_7.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/87_0.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/87_1.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/87_2.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/87_3.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/87_4.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/87_5.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/87_6.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/87_7.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/88_0.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/88_1.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/88_2.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/88_3.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/88_4.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/88_5.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/88_6.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/88_7.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/89_0.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/89_1.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/89_2.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/89_3.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/89_4.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/89_5.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/89_6.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/89_7.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/90_0.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/90_1.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/90_2.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/90_3.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/90_4.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/90_5.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/90_6.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/90_7.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/91_0.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/91_1.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/91_2.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/91_3.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/91_4.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/91_5.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/91_6.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/91_7.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/92_0.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/92_1.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/92_2.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/92_3.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/92_4.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/92_5.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/92_6.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/92_7.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/93_0.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/93_1.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/93_2.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/93_3.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/93_4.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/93_5.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/93_6.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/93_7.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/94_0.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/94_1.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/94_2.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/94_3.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/94_4.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/94_5.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/94_6.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/94_7.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/95_0.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/95_1.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/95_2.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/95_3.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/95_4.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/95_5.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/95_6.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/95_7.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/96_0.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/96_1.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/96_2.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/96_3.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/96_4.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/96_5.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/96_6.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/96_7.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/97_0.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/97_1.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/97_2.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/97_3.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/97_4.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/97_5.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/97_6.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/97_7.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/98_0.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/98_1.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/98_2.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/98_3.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/98_4.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/98_5.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/98_6.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/98_7.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/99_0.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/99_1.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/99_2.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/99_3.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/99_4.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/99_5.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/99_6.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/data/labels/99_7.png +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/yolo-image.cpp +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/yolo-image.h +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/yolo/yolov3-tiny.cpp +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/ggml-common.h +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/ggml.pc.in +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/include/ggml/ggml-alloc.h +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/include/ggml/ggml.h +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/requirements.txt +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/scripts/sync-llama-am.sh +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/scripts/sync-llama.last +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/scripts/sync-llama.sh +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/scripts/sync-whisper-am.sh +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/scripts/sync-whisper.last +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/scripts/sync-whisper.sh +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/spm-headers/ggml-alloc.h +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/spm-headers/ggml-backend.h +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/spm-headers/ggml.h +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/spm-headers/module.modulemap +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/src/ggml-alloc.c +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/src/ggml-backend-impl.h +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/src/ggml-backend.c +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/src/ggml-common.h +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/src/ggml-cuda/acc.cu +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/src/ggml-cuda/acc.cuh +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/src/ggml-cuda/alibi.cu +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/src/ggml-cuda/alibi.cuh +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/src/ggml-cuda/arange.cu +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/src/ggml-cuda/arange.cuh +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/src/ggml-cuda/argsort.cu +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/src/ggml-cuda/argsort.cuh +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/src/ggml-cuda/binbcast.cu +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/src/ggml-cuda/binbcast.cuh +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/src/ggml-cuda/clamp.cu +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/src/ggml-cuda/clamp.cuh +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/src/ggml-cuda/common.cuh +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/src/ggml-cuda/concat.cu +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/src/ggml-cuda/concat.cuh +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/src/ggml-cuda/convert.cu +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/src/ggml-cuda/convert.cuh +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/src/ggml-cuda/cpy.cu +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/src/ggml-cuda/cpy.cuh +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/src/ggml-cuda/dequantize.cuh +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/src/ggml-cuda/diagmask.cu +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/src/ggml-cuda/diagmask.cuh +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/src/ggml-cuda/dmmv.cu +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/src/ggml-cuda/dmmv.cuh +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/src/ggml-cuda/getrows.cu +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/src/ggml-cuda/getrows.cuh +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/src/ggml-cuda/im2col.cu +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/src/ggml-cuda/im2col.cuh +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/src/ggml-cuda/mmq.cu +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/src/ggml-cuda/mmq.cuh +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/src/ggml-cuda/mmvq.cu +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/src/ggml-cuda/mmvq.cuh +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/src/ggml-cuda/norm.cu +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/src/ggml-cuda/norm.cuh +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/src/ggml-cuda/pad.cu +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/src/ggml-cuda/pad.cuh +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/src/ggml-cuda/pool2d.cu +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/src/ggml-cuda/pool2d.cuh +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/src/ggml-cuda/quantize.cu +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/src/ggml-cuda/quantize.cuh +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/src/ggml-cuda/rope.cu +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/src/ggml-cuda/rope.cuh +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/src/ggml-cuda/scale.cu +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/src/ggml-cuda/scale.cuh +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/src/ggml-cuda/softmax.cu +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/src/ggml-cuda/softmax.cuh +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/src/ggml-cuda/sumrows.cu +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/src/ggml-cuda/sumrows.cuh +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/src/ggml-cuda/tsembd.cu +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/src/ggml-cuda/tsembd.cuh +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/src/ggml-cuda/unary.cu +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/src/ggml-cuda/unary.cuh +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/src/ggml-cuda/upscale.cu +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/src/ggml-cuda/upscale.cuh +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/src/ggml-cuda/vecdotq.cuh +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/src/ggml-cuda.cu +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/src/ggml-cuda.h +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/src/ggml-impl.h +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/src/ggml-kompute.cpp +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/src/ggml-kompute.h +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/src/ggml-metal.h +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/src/ggml-metal.m +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/src/ggml-metal.metal +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/src/ggml-opencl.cpp +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/src/ggml-opencl.h +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/src/ggml-quants.c +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/src/ggml-quants.h +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/src/ggml-sycl.cpp +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/src/ggml-sycl.h +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/src/ggml-vulkan.cpp +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/src/ggml-vulkan.h +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/src/ggml.c +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/tests/CMakeLists.txt +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/tests/test-arange.cpp +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/tests/test-backend-buffer.cpp +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/tests/test-backend-ops.cpp +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/tests/test-blas0.c +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/tests/test-conv-transpose.c +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/tests/test-conv1d.cpp +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/tests/test-conv2d.cpp +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/tests/test-customop.c +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/tests/test-dup.c +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/tests/test-grad0.cpp +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/tests/test-mul-mat.cpp +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/tests/test-mul-mat0.c +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/tests/test-mul-mat1.c +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/tests/test-mul-mat2.c +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/tests/test-opt.cpp +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/tests/test-pool.c +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/tests/test-quantize-fns.cpp +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/tests/test-quantize-perf.cpp +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/tests/test-rel-pos.c +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/tests/test-svd0.c +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/tests/test-timestep_embedding.cpp +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/tests/test-vec0.c +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/tests/test-vec1.c +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/tests/test-vec2.c +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/tests/test-xpos.c +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/tests/test0.c +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/tests/test0.zig +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/tests/test1.c +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/tests/test1.zig +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/tests/test2.c +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/tests/test2.zig +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/tests/test3.c +0 -0
- {ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/tests/test3.zig +0 -0
|
@@ -38,6 +38,7 @@ jobs:
|
|
|
38
38
|
./scripts/releases-to-pep-503.sh index/whl/cu121 '^[v]?[0-9]+\.[0-9]+\.[0-9]+-cu121$'
|
|
39
39
|
./scripts/releases-to-pep-503.sh index/whl/cu122 '^[v]?[0-9]+\.[0-9]+\.[0-9]+-cu122$'
|
|
40
40
|
./scripts/releases-to-pep-503.sh index/whl/cu123 '^[v]?[0-9]+\.[0-9]+\.[0-9]+-cu123$'
|
|
41
|
+
./scripts/releases-to-pep-503.sh index/whl/metal '^[v]?[0-9]+\.[0-9]+\.[0-9]+-metal$'
|
|
41
42
|
- name: Upload artifact
|
|
42
43
|
uses: actions/upload-pages-artifact@v3
|
|
43
44
|
with:
|
|
@@ -0,0 +1,87 @@
|
|
|
1
|
+
name: Build Wheels (Metal)
|
|
2
|
+
|
|
3
|
+
on: workflow_dispatch
|
|
4
|
+
|
|
5
|
+
permissions:
|
|
6
|
+
contents: write
|
|
7
|
+
|
|
8
|
+
jobs:
|
|
9
|
+
define_matrix:
|
|
10
|
+
name: Define Build Matrix
|
|
11
|
+
runs-on: ubuntu-latest
|
|
12
|
+
outputs:
|
|
13
|
+
matrix: ${{ steps.set-matrix.outputs.matrix }}
|
|
14
|
+
defaults:
|
|
15
|
+
run:
|
|
16
|
+
shell: pwsh
|
|
17
|
+
|
|
18
|
+
steps:
|
|
19
|
+
- name: Define Job Output
|
|
20
|
+
id: set-matrix
|
|
21
|
+
run: |
|
|
22
|
+
$matrix = @{
|
|
23
|
+
'os' = @('macos-11', 'macos-12', 'macos-13')
|
|
24
|
+
'pyver' = @('3.10', '3.11', '3.12')
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
$matrixOut = ConvertTo-Json $matrix -Compress
|
|
28
|
+
Write-Output ('matrix=' + $matrixOut) >> $env:GITHUB_OUTPUT
|
|
29
|
+
|
|
30
|
+
build_wheels:
|
|
31
|
+
name: ${{ matrix.os }} Python ${{ matrix.pyver }}
|
|
32
|
+
needs: define_matrix
|
|
33
|
+
runs-on: ${{ matrix.os }}
|
|
34
|
+
strategy:
|
|
35
|
+
matrix: ${{ fromJSON(needs.define_matrix.outputs.matrix) }}
|
|
36
|
+
env:
|
|
37
|
+
OSVER: ${{ matrix.os }}
|
|
38
|
+
|
|
39
|
+
steps:
|
|
40
|
+
- uses: actions/checkout@v4
|
|
41
|
+
with:
|
|
42
|
+
submodules: "recursive"
|
|
43
|
+
|
|
44
|
+
- uses: actions/setup-python@v4
|
|
45
|
+
with:
|
|
46
|
+
python-version: ${{ matrix.pyver }}
|
|
47
|
+
|
|
48
|
+
- name: Install Dependencies
|
|
49
|
+
run: |
|
|
50
|
+
python -m pip install build wheel cmake
|
|
51
|
+
|
|
52
|
+
- name: Build Wheel
|
|
53
|
+
run: |
|
|
54
|
+
XCODE15PATH="/Applications/Xcode_15.0.app/Contents/Developer"
|
|
55
|
+
XCODE15BINPATH="${XCODE15PATH}/Toolchains/XcodeDefault.xctoolchain/usr/bin"
|
|
56
|
+
export CMAKE_ARGS="-DGGML_NATIVE=off -DGGML_METAL=on"
|
|
57
|
+
[[ "$OSVER" == "macos-13" ]] && export CC="${XCODE15BINPATH}/cc" && export CXX="${XCODE15BINPATH}/c++" && export MACOSX_DEPLOYMENT_TARGET="13.0"
|
|
58
|
+
[[ "$OSVER" == "macos-12" ]] && export MACOSX_DEPLOYMENT_TARGET="12.0"
|
|
59
|
+
[[ "$OSVER" == "macos-11" ]] && export MACOSX_DEPLOYMENT_TARGET="11.0"
|
|
60
|
+
|
|
61
|
+
export CMAKE_OSX_ARCHITECTURES="arm64" && export ARCHFLAGS="-arch arm64"
|
|
62
|
+
VERBOSE=1 python -m build --wheel
|
|
63
|
+
|
|
64
|
+
if [[ "$OSVER" == "macos-13" ]]; then
|
|
65
|
+
export SDKROOT="${XCODE15PATH}/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.0.sdk"
|
|
66
|
+
export MACOSX_DEPLOYMENT_TARGET="14.0"
|
|
67
|
+
VERBOSE=1 python -m build --wheel
|
|
68
|
+
fi
|
|
69
|
+
|
|
70
|
+
for file in ./dist/*.whl; do cp "$file" "${file/arm64.whl/aarch64.whl}"; done
|
|
71
|
+
|
|
72
|
+
export CMAKE_OSX_ARCHITECTURES="x86_64" && export CMAKE_ARGS="-DGGML_NATIVE=off -DGGML_AVX=off -DGGML_AVX2=off -DGGML_FMA=off -DGGML_F16C=off -DGGML_METAL=on" && export ARCHFLAGS="-arch x86_64"
|
|
73
|
+
VERBOSE=1 python -m build --wheel
|
|
74
|
+
|
|
75
|
+
if [[ "$OSVER" == "macos-13" ]]; then
|
|
76
|
+
export SDKROOT="${XCODE15PATH}/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.0.sdk"
|
|
77
|
+
export MACOSX_DEPLOYMENT_TARGET="14.0"
|
|
78
|
+
VERBOSE=1 python -m build --wheel
|
|
79
|
+
fi
|
|
80
|
+
|
|
81
|
+
- uses: softprops/action-gh-release@v1
|
|
82
|
+
with:
|
|
83
|
+
files: dist/*
|
|
84
|
+
# set release name to <tag>-metal
|
|
85
|
+
tag_name: ${{ github.ref_name }}-metal
|
|
86
|
+
env:
|
|
87
|
+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
@@ -16,6 +16,16 @@ endif()
|
|
|
16
16
|
|
|
17
17
|
set(BUILD_SHARED_LIBS "On")
|
|
18
18
|
set(CMAKE_WINDOWS_EXPORT_ALL_SYMBOLS ON)
|
|
19
|
+
if (APPLE)
|
|
20
|
+
if (CMAKE_SYSTEM_PROCESSOR MATCHES "arm64")
|
|
21
|
+
set(GGML_AVX "Off" CACHE BOOL "ggml: enable AVX" FORCE)
|
|
22
|
+
set(GGML_AVX2 "Off" CACHE BOOL "ggml: enable AVX2" FORCE)
|
|
23
|
+
set(GGML_FMA "Off" CACHE BOOL "ggml: enable FMA" FORCE)
|
|
24
|
+
set(GGML_F16C "Off" CACHE BOOL "ggml: enable F16C" FORCE)
|
|
25
|
+
endif()
|
|
26
|
+
|
|
27
|
+
set(GGML_METAL_EMBED_LIBRARY "On" CACHE BOOL "ggml: embed metal library" FORCE)
|
|
28
|
+
endif()
|
|
19
29
|
add_subdirectory(vendor/ggml)
|
|
20
30
|
install(
|
|
21
31
|
TARGETS ggml
|
|
@@ -24,4 +34,8 @@ install(
|
|
|
24
34
|
RUNTIME DESTINATION ${GGML_PYTHON_INSTALL_DIR}
|
|
25
35
|
FRAMEWORK DESTINATION ${GGML_PYTHON_INSTALL_DIR}
|
|
26
36
|
RESOURCE DESTINATION ${GGML_PYTHON_INSTALL_DIR}
|
|
37
|
+
)
|
|
38
|
+
install(
|
|
39
|
+
FILES $<TARGET_RUNTIME_DLLS:ggml>
|
|
40
|
+
DESTINATION ${GGML_PYTHON_INSTALL_DIR}
|
|
27
41
|
)
|
|
@@ -10604,7 +10604,7 @@ GGML_CUDA_MAX_DEVICES = 16
|
|
|
10604
10604
|
# // backend API
|
|
10605
10605
|
# GGML_API GGML_CALL ggml_backend_t ggml_backend_cuda_init(int device);
|
|
10606
10606
|
@ctypes_function(
|
|
10607
|
-
"ggml_backend_cuda_init", [ctypes.c_int],
|
|
10607
|
+
"ggml_backend_cuda_init", [ctypes.c_int], ggml_backend_t_ctypes, enabled=GGML_USE_CUDA
|
|
10608
10608
|
)
|
|
10609
10609
|
def ggml_backend_cuda_init(device: int) -> Optional[ggml_backend_t]:
|
|
10610
10610
|
...
|
|
@@ -15,7 +15,6 @@ run_if_ggml_metal_available = pytest.mark.skipif(
|
|
|
15
15
|
reason="METAL not available",
|
|
16
16
|
)
|
|
17
17
|
|
|
18
|
-
@pytest.mark.skip(reason="ggml-metal.metal missing ggml-common.h at runtime")
|
|
19
18
|
@run_if_ggml_metal_available
|
|
20
19
|
def test_metal():
|
|
21
20
|
n_tensors = 1 + 2 # input (x) and weights (a, b)
|
|
@@ -47,6 +47,7 @@ option(GGML_HIPBLAS "ggml: use hipBLAS" OFF)
|
|
|
47
47
|
option(GGML_CUDA "ggml: use CUDA" OFF)
|
|
48
48
|
option(GGML_CUBLAS "ggml: use CUDA (deprecated)" OFF)
|
|
49
49
|
option(GGML_METAL "ggml: use Metal" OFF)
|
|
50
|
+
option(GGML_METAL_EMBED_LIBRARY "ggml: embed Metal library" OFF)
|
|
50
51
|
|
|
51
52
|
option(GGML_CUDA_FORCE_DMMV "ggml: use dmmv instead of mmvq CUDA kernels" OFF)
|
|
52
53
|
option(GGML_CUDA_FORCE_MMQ "ggml: use mmq kernels instead of cuBLAS" OFF)
|
|
Binary file
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg width="256" height="256" viewBox="0 0 256 256" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M53.0162 51.834V65.694H37.999V190.306H53.0162V204.166H203.008V190.306H218V65.694H203.008V51.834H53.0162ZM65.6934 72.5983H121.069V107.236H107.235V86.4713H79.5535V141.834H107.235V128H93.4007V114.166H121.056V155.694H65.6934V72.5983ZM134.942 100.306H190.344V134.904H176.471V114.166H148.764V169.529H176.471V155.694H162.624V141.834H190.331V183.402H134.929L134.942 100.306Z" fill="white"/>
|
|
3
|
+
</svg>
|
|
Binary file
|
|
Binary file
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg width="256" height="256" viewBox="0 0 256 256" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M53.0162 51.834V65.694H37.999V190.306H53.0162V204.166H203.008V190.306H218V65.694H203.008V51.834H53.0162ZM65.6934 72.5983H121.069V107.236H107.235V86.4713H79.5535V141.834H107.235V128H93.4007V114.166H121.056V155.694H65.6934V72.5983ZM134.942 100.306H190.344V134.904H176.471V114.166H148.764V169.529H176.471V155.694H162.624V141.834H190.331V183.402H134.929L134.942 100.306Z" fill="black"/>
|
|
3
|
+
</svg>
|
|
@@ -137,7 +137,7 @@ extern "C" {
|
|
|
137
137
|
/*
|
|
138
138
|
Example usage:
|
|
139
139
|
|
|
140
|
-
// operations that use tensors allocated in a buffer with USAGE_WEIGHTS will be
|
|
140
|
+
// operations that use tensors allocated in a buffer with USAGE_WEIGHTS will be assigned
|
|
141
141
|
// preferrably to run on the same backend as the buffer
|
|
142
142
|
ggml_backend_buffer_set_usage(buf_weights, GGML_BACKEND_BUFFER_USAGE_WEIGHTS);
|
|
143
143
|
|
|
@@ -322,6 +322,78 @@ if (GGML_METAL)
|
|
|
322
322
|
configure_file(ggml-common.h ${CMAKE_RUNTIME_OUTPUT_DIRECTORY}/ggml-common.h COPYONLY)
|
|
323
323
|
configure_file(ggml-metal.metal ${CMAKE_RUNTIME_OUTPUT_DIRECTORY}/ggml-metal.metal COPYONLY)
|
|
324
324
|
|
|
325
|
+
if (GGML_METAL_EMBED_LIBRARY)
|
|
326
|
+
enable_language(ASM)
|
|
327
|
+
add_compile_definitions(GGML_METAL_EMBED_LIBRARY)
|
|
328
|
+
|
|
329
|
+
set(METALLIB_COMMON "${CMAKE_CURRENT_SOURCE_DIR}/ggml-common.h")
|
|
330
|
+
set(METALLIB_SOURCE "${CMAKE_CURRENT_SOURCE_DIR}/ggml-metal.metal")
|
|
331
|
+
|
|
332
|
+
file(MAKE_DIRECTORY "${CMAKE_BINARY_DIR}/autogenerated")
|
|
333
|
+
|
|
334
|
+
# merge ggml-common.h and ggml-metal.metal into a single file
|
|
335
|
+
set(METALLIB_EMBED_ASM "${CMAKE_BINARY_DIR}/autogenerated/ggml-metal-embed.s")
|
|
336
|
+
set(METALLIB_SOURCE_EMBED "${CMAKE_BINARY_DIR}/autogenerated/ggml-metal-embed.metal")
|
|
337
|
+
|
|
338
|
+
add_custom_command(
|
|
339
|
+
OUTPUT ${METALLIB_EMBED_ASM}
|
|
340
|
+
COMMAND echo "Embedding Metal library"
|
|
341
|
+
COMMAND sed -e '/\#include \"ggml-common.h\"/r ${METALLIB_COMMON}' -e '/\#include \"ggml-common.h\"/d' < ${METALLIB_SOURCE} > ${METALLIB_SOURCE_EMBED}
|
|
342
|
+
COMMAND echo ".section __DATA,__ggml_metallib" > ${METALLIB_EMBED_ASM}
|
|
343
|
+
COMMAND echo ".globl _ggml_metallib_start" >> ${METALLIB_EMBED_ASM}
|
|
344
|
+
COMMAND echo "_ggml_metallib_start:" >> ${METALLIB_EMBED_ASM}
|
|
345
|
+
COMMAND echo ".incbin \\\"${METALLIB_SOURCE_EMBED}\\\"" >> ${METALLIB_EMBED_ASM}
|
|
346
|
+
COMMAND echo ".globl _ggml_metallib_end" >> ${METALLIB_EMBED_ASM}
|
|
347
|
+
COMMAND echo "_ggml_metallib_end:" >> ${METALLIB_EMBED_ASM}
|
|
348
|
+
DEPENDS ggml-metal.metal ggml-common.h
|
|
349
|
+
COMMENT "Generate assembly for embedded Metal library"
|
|
350
|
+
)
|
|
351
|
+
|
|
352
|
+
set(GGML_METAL_SOURCES ${GGML_METAL_SOURCES} ${METALLIB_EMBED_ASM})
|
|
353
|
+
else()
|
|
354
|
+
if (GGML_METAL_SHADER_DEBUG)
|
|
355
|
+
# custom command to do the following:
|
|
356
|
+
# xcrun -sdk macosx metal -fno-fast-math -c ggml-metal.metal -o ggml-metal.air
|
|
357
|
+
# xcrun -sdk macosx metallib ggml-metal.air -o default.metallib
|
|
358
|
+
#
|
|
359
|
+
# note: this is the only way I found to disable fast-math in Metal. it's ugly, but at least it works
|
|
360
|
+
# disabling fast math is needed in order to pass tests/test-backend-ops
|
|
361
|
+
# note: adding -fno-inline fixes the tests when using MTL_SHADER_VALIDATION=1
|
|
362
|
+
# note: unfortunately, we have to call it default.metallib instead of ggml.metallib
|
|
363
|
+
# ref: https://github.com/ggerganov/whisper.cpp/issues/1720
|
|
364
|
+
set(XC_FLAGS -fno-fast-math -fno-inline -g)
|
|
365
|
+
else()
|
|
366
|
+
set(XC_FLAGS -O3)
|
|
367
|
+
endif()
|
|
368
|
+
|
|
369
|
+
# Append macOS metal versioning flags
|
|
370
|
+
if (GGML_METAL_MACOSX_VERSION_MIN)
|
|
371
|
+
message(STATUS "Adding -mmacosx-version-min=${GGML_METAL_MACOSX_VERSION_MIN} flag to metal compilation")
|
|
372
|
+
list(APPEND XC_FLAGS -mmacosx-version-min=${GGML_METAL_MACOSX_VERSION_MIN})
|
|
373
|
+
endif()
|
|
374
|
+
if (GGML_METAL_STD)
|
|
375
|
+
message(STATUS "Adding -std=${GGML_METAL_STD} flag to metal compilation")
|
|
376
|
+
list(APPEND XC_FLAGS -std=${GGML_METAL_STD})
|
|
377
|
+
endif()
|
|
378
|
+
|
|
379
|
+
add_custom_command(
|
|
380
|
+
OUTPUT ${CMAKE_RUNTIME_OUTPUT_DIRECTORY}/default.metallib
|
|
381
|
+
COMMAND xcrun -sdk macosx metal ${XC_FLAGS} -c ${CMAKE_RUNTIME_OUTPUT_DIRECTORY}/ggml-metal.metal -o ${CMAKE_RUNTIME_OUTPUT_DIRECTORY}/ggml-metal.air
|
|
382
|
+
COMMAND xcrun -sdk macosx metallib ${CMAKE_RUNTIME_OUTPUT_DIRECTORY}/ggml-metal.air -o ${CMAKE_RUNTIME_OUTPUT_DIRECTORY}/default.metallib
|
|
383
|
+
COMMAND rm -f ${CMAKE_RUNTIME_OUTPUT_DIRECTORY}/ggml-metal.air
|
|
384
|
+
COMMAND rm -f ${CMAKE_RUNTIME_OUTPUT_DIRECTORY}/ggml-common.h
|
|
385
|
+
COMMAND rm -f ${CMAKE_RUNTIME_OUTPUT_DIRECTORY}/ggml-metal.metal
|
|
386
|
+
DEPENDS ggml-metal.metal ggml-common.h
|
|
387
|
+
COMMENT "Compiling Metal kernels"
|
|
388
|
+
)
|
|
389
|
+
|
|
390
|
+
add_custom_target(
|
|
391
|
+
ggml-metal ALL
|
|
392
|
+
DEPENDS ${CMAKE_RUNTIME_OUTPUT_DIRECTORY}/default.metallib
|
|
393
|
+
)
|
|
394
|
+
endif() # GGML_METAL_EMBED_LIBRARY
|
|
395
|
+
|
|
396
|
+
|
|
325
397
|
set(GGML_EXTRA_LIBS ${GGML_EXTRA_LIBS}
|
|
326
398
|
${FOUNDATION_LIBRARY}
|
|
327
399
|
${METAL_FRAMEWORK}
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/gpt-2/convert-cerebras-to-ggml.py
RENAMED
|
File without changes
|
{ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/gpt-2/convert-ckpt-to-ggml.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/prompts/gpt-neox-japanese.txt
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/prompts/tokenize_huggingface.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/python/example_test_all_quants.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{ggml_python-0.0.32 → ggml_python-0.0.34}/vendor/ggml/examples/whisper/convert-pt-to-ggml.py
RENAMED
|
File without changes
|
|
File without changes
|