ggml-python 0.0.20__tar.gz → 0.0.22__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.20 → ggml_python-0.0.22}/.github/workflows/test.yaml +48 -3
- {ggml_python-0.0.20 → ggml_python-0.0.22}/CMakeLists.txt +1 -1
- {ggml_python-0.0.20 → ggml_python-0.0.22}/Makefile +28 -12
- {ggml_python-0.0.20 → ggml_python-0.0.22}/PKG-INFO +2 -1
- ggml_python-0.0.22/ggml/__init__.py +3 -0
- {ggml_python-0.0.20 → ggml_python-0.0.22}/ggml/experimental.py +22 -20
- {ggml_python-0.0.20 → ggml_python-0.0.22}/ggml/ggml.py +1155 -277
- {ggml_python-0.0.20 → ggml_python-0.0.22}/pyproject.toml +4 -1
- {ggml_python-0.0.20 → ggml_python-0.0.22}/tests/test_experimental.py +6 -1
- {ggml_python-0.0.20 → ggml_python-0.0.22}/tests/test_ggml.py +41 -34
- {ggml_python-0.0.20 → ggml_python-0.0.22}/tests/test_ggml_metal.py +3 -1
- {ggml_python-0.0.20 → ggml_python-0.0.22}/tests/test_utils.py +9 -6
- {ggml_python-0.0.20 → ggml_python-0.0.22}/vendor/ggml/.gitignore +6 -1
- {ggml_python-0.0.20 → ggml_python-0.0.22}/vendor/ggml/README.md +15 -0
- {ggml_python-0.0.20 → ggml_python-0.0.22}/vendor/ggml/ci/run.sh +84 -4
- {ggml_python-0.0.20 → ggml_python-0.0.22}/vendor/ggml/examples/CMakeLists.txt +1 -0
- {ggml_python-0.0.20 → ggml_python-0.0.22}/vendor/ggml/examples/common.cpp +11 -3
- {ggml_python-0.0.20 → ggml_python-0.0.22}/vendor/ggml/examples/common.h +9 -6
- {ggml_python-0.0.20 → ggml_python-0.0.22}/vendor/ggml/examples/dolly-v2/main.cpp +5 -5
- ggml_python-0.0.22/vendor/ggml/examples/gpt-2/CMakeLists.txt +48 -0
- {ggml_python-0.0.20 → ggml_python-0.0.22}/vendor/ggml/examples/gpt-2/README.md +67 -0
- ggml_python-0.0.20/vendor/ggml/examples/gpt-2/main.cpp → ggml_python-0.0.22/vendor/ggml/examples/gpt-2/main-alloc.cpp +1 -1
- ggml_python-0.0.22/vendor/ggml/examples/gpt-2/main-backend.cpp +1002 -0
- ggml_python-0.0.22/vendor/ggml/examples/gpt-2/main-batched.cpp +1224 -0
- ggml_python-0.0.22/vendor/ggml/examples/gpt-2/main-ctx.cpp +844 -0
- ggml_python-0.0.22/vendor/ggml/examples/gpt-2/main.cpp +1089 -0
- {ggml_python-0.0.20 → ggml_python-0.0.22}/vendor/ggml/examples/gpt-j/main.cpp +5 -5
- {ggml_python-0.0.20 → ggml_python-0.0.22}/vendor/ggml/examples/gpt-neox/main.cpp +5 -5
- {ggml_python-0.0.20 → ggml_python-0.0.22}/vendor/ggml/examples/mnist/main-cnn.cpp +5 -5
- {ggml_python-0.0.20 → ggml_python-0.0.22}/vendor/ggml/examples/mnist/main-cpu.cpp +5 -5
- {ggml_python-0.0.20 → ggml_python-0.0.22}/vendor/ggml/examples/mnist/main-mtl.cpp +4 -4
- {ggml_python-0.0.20 → ggml_python-0.0.22}/vendor/ggml/examples/mnist/main.cpp +6 -6
- {ggml_python-0.0.20 → ggml_python-0.0.22}/vendor/ggml/examples/mpt/main.cpp +5 -5
- {ggml_python-0.0.20 → ggml_python-0.0.22}/vendor/ggml/examples/replit/main.cpp +5 -5
- {ggml_python-0.0.20 → ggml_python-0.0.22}/vendor/ggml/examples/sam/main.cpp +2 -2
- {ggml_python-0.0.20 → ggml_python-0.0.22}/vendor/ggml/examples/starcoder/main.cpp +5 -5
- {ggml_python-0.0.20 → ggml_python-0.0.22}/vendor/ggml/examples/starcoder/starcoder-mmap.cpp +5 -5
- {ggml_python-0.0.20 → ggml_python-0.0.22}/vendor/ggml/examples/whisper/CMakeLists.txt +1 -1
- {ggml_python-0.0.20 → ggml_python-0.0.22}/vendor/ggml/examples/whisper/whisper.cpp +7 -5
- ggml_python-0.0.22/vendor/ggml/examples/yolo/CMakeLists.txt +6 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/README.md +52 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/convert-yolov3-tiny.py +53 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/coco.names +80 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/100_0.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/100_1.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/100_2.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/100_3.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/100_4.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/100_5.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/100_6.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/100_7.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/101_0.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/101_1.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/101_2.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/101_3.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/101_4.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/101_5.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/101_6.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/101_7.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/102_0.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/102_1.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/102_2.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/102_3.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/102_4.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/102_5.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/102_6.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/102_7.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/103_0.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/103_1.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/103_2.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/103_3.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/103_4.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/103_5.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/103_6.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/103_7.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/104_0.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/104_1.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/104_2.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/104_3.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/104_4.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/104_5.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/104_6.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/104_7.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/105_0.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/105_1.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/105_2.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/105_3.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/105_4.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/105_5.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/105_6.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/105_7.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/106_0.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/106_1.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/106_2.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/106_3.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/106_4.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/106_5.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/106_6.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/106_7.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/107_0.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/107_1.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/107_2.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/107_3.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/107_4.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/107_5.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/107_6.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/107_7.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/108_0.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/108_1.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/108_2.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/108_3.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/108_4.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/108_5.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/108_6.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/108_7.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/109_0.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/109_1.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/109_2.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/109_3.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/109_4.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/109_5.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/109_6.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/109_7.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/110_0.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/110_1.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/110_2.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/110_3.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/110_4.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/110_5.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/110_6.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/110_7.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/111_0.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/111_1.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/111_2.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/111_3.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/111_4.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/111_5.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/111_6.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/111_7.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/112_0.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/112_1.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/112_2.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/112_3.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/112_4.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/112_5.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/112_6.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/112_7.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/113_0.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/113_1.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/113_2.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/113_3.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/113_4.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/113_5.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/113_6.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/113_7.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/114_0.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/114_1.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/114_2.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/114_3.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/114_4.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/114_5.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/114_6.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/114_7.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/115_0.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/115_1.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/115_2.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/115_3.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/115_4.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/115_5.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/115_6.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/115_7.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/116_0.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/116_1.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/116_2.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/116_3.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/116_4.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/116_5.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/116_6.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/116_7.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/117_0.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/117_1.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/117_2.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/117_3.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/117_4.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/117_5.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/117_6.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/117_7.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/118_0.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/118_1.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/118_2.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/118_3.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/118_4.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/118_5.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/118_6.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/118_7.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/119_0.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/119_1.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/119_2.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/119_3.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/119_4.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/119_5.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/119_6.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/119_7.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/120_0.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/120_1.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/120_2.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/120_3.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/120_4.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/120_5.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/120_6.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/120_7.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/121_0.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/121_1.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/121_2.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/121_3.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/121_4.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/121_5.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/121_6.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/121_7.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/122_0.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/122_1.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/122_2.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/122_3.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/122_4.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/122_5.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/122_6.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/122_7.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/123_0.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/123_1.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/123_2.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/123_3.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/123_4.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/123_5.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/123_6.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/123_7.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/124_0.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/124_1.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/124_2.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/124_3.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/124_4.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/124_5.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/124_6.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/124_7.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/125_0.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/125_1.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/125_2.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/125_3.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/125_4.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/125_5.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/125_6.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/125_7.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/126_0.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/126_1.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/126_2.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/126_3.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/126_4.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/126_5.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/126_6.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/126_7.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/32_0.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/32_1.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/32_2.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/32_3.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/32_4.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/32_5.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/32_6.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/32_7.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/33_0.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/33_1.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/33_2.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/33_3.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/33_4.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/33_5.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/33_6.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/33_7.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/34_0.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/34_1.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/34_2.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/34_3.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/34_4.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/34_5.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/34_6.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/34_7.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/35_0.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/35_1.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/35_2.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/35_3.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/35_4.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/35_5.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/35_6.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/35_7.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/36_0.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/36_1.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/36_2.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/36_3.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/36_4.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/36_5.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/36_6.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/36_7.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/37_0.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/37_1.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/37_2.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/37_3.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/37_4.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/37_5.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/37_6.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/37_7.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/38_0.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/38_1.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/38_2.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/38_3.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/38_4.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/38_5.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/38_6.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/38_7.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/39_0.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/39_1.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/39_2.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/39_3.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/39_4.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/39_5.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/39_6.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/39_7.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/40_0.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/40_1.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/40_2.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/40_3.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/40_4.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/40_5.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/40_6.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/40_7.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/41_0.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/41_1.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/41_2.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/41_3.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/41_4.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/41_5.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/41_6.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/41_7.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/42_0.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/42_1.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/42_2.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/42_3.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/42_4.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/42_5.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/42_6.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/42_7.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/43_0.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/43_1.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/43_2.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/43_3.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/43_4.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/43_5.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/43_6.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/43_7.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/44_0.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/44_1.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/44_2.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/44_3.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/44_4.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/44_5.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/44_6.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/44_7.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/45_0.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/45_1.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/45_2.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/45_3.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/45_4.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/45_5.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/45_6.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/45_7.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/46_0.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/46_1.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/46_2.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/46_3.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/46_4.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/46_5.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/46_6.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/46_7.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/47_0.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/47_1.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/47_2.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/47_3.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/47_4.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/47_5.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/47_6.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/47_7.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/48_0.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/48_1.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/48_2.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/48_3.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/48_4.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/48_5.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/48_6.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/48_7.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/49_0.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/49_1.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/49_2.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/49_3.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/49_4.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/49_5.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/49_6.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/49_7.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/50_0.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/50_1.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/50_2.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/50_3.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/50_4.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/50_5.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/50_6.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/50_7.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/51_0.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/51_1.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/51_2.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/51_3.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/51_4.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/51_5.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/51_6.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/51_7.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/52_0.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/52_1.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/52_2.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/52_3.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/52_4.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/52_5.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/52_6.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/52_7.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/53_0.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/53_1.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/53_2.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/53_3.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/53_4.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/53_5.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/53_6.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/53_7.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/54_0.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/54_1.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/54_2.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/54_3.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/54_4.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/54_5.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/54_6.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/54_7.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/55_0.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/55_1.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/55_2.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/55_3.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/55_4.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/55_5.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/55_6.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/55_7.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/56_0.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/56_1.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/56_2.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/56_3.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/56_4.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/56_5.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/56_6.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/56_7.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/57_0.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/57_1.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/57_2.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/57_3.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/57_4.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/57_5.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/57_6.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/57_7.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/58_0.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/58_1.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/58_2.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/58_3.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/58_4.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/58_5.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/58_6.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/58_7.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/59_0.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/59_1.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/59_2.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/59_3.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/59_4.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/59_5.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/59_6.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/59_7.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/60_0.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/60_1.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/60_2.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/60_3.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/60_4.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/60_5.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/60_6.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/60_7.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/61_0.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/61_1.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/61_2.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/61_3.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/61_4.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/61_5.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/61_6.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/61_7.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/62_0.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/62_1.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/62_2.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/62_3.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/62_4.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/62_5.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/62_6.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/62_7.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/63_0.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/63_1.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/63_2.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/63_3.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/63_4.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/63_5.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/63_6.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/63_7.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/64_0.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/64_1.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/64_2.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/64_3.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/64_4.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/64_5.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/64_6.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/64_7.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/65_0.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/65_1.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/65_2.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/65_3.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/65_4.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/65_5.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/65_6.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/65_7.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/66_0.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/66_1.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/66_2.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/66_3.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/66_4.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/66_5.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/66_6.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/66_7.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/67_0.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/67_1.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/67_2.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/67_3.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/67_4.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/67_5.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/67_6.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/67_7.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/68_0.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/68_1.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/68_2.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/68_3.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/68_4.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/68_5.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/68_6.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/68_7.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/69_0.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/69_1.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/69_2.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/69_3.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/69_4.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/69_5.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/69_6.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/69_7.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/70_0.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/70_1.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/70_2.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/70_3.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/70_4.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/70_5.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/70_6.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/70_7.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/71_0.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/71_1.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/71_2.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/71_3.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/71_4.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/71_5.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/71_6.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/71_7.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/72_0.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/72_1.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/72_2.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/72_3.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/72_4.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/72_5.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/72_6.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/72_7.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/73_0.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/73_1.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/73_2.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/73_3.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/73_4.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/73_5.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/73_6.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/73_7.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/74_0.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/74_1.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/74_2.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/74_3.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/74_4.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/74_5.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/74_6.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/74_7.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/75_0.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/75_1.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/75_2.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/75_3.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/75_4.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/75_5.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/75_6.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/75_7.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/76_0.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/76_1.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/76_2.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/76_3.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/76_4.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/76_5.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/76_6.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/76_7.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/77_0.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/77_1.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/77_2.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/77_3.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/77_4.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/77_5.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/77_6.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/77_7.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/78_0.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/78_1.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/78_2.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/78_3.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/78_4.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/78_5.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/78_6.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/78_7.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/79_0.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/79_1.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/79_2.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/79_3.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/79_4.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/79_5.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/79_6.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/79_7.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/80_0.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/80_1.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/80_2.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/80_3.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/80_4.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/80_5.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/80_6.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/80_7.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/81_0.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/81_1.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/81_2.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/81_3.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/81_4.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/81_5.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/81_6.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/81_7.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/82_0.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/82_1.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/82_2.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/82_3.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/82_4.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/82_5.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/82_6.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/82_7.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/83_0.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/83_1.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/83_2.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/83_3.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/83_4.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/83_5.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/83_6.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/83_7.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/84_0.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/84_1.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/84_2.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/84_3.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/84_4.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/84_5.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/84_6.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/84_7.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/85_0.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/85_1.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/85_2.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/85_3.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/85_4.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/85_5.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/85_6.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/85_7.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/86_0.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/86_1.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/86_2.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/86_3.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/86_4.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/86_5.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/86_6.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/86_7.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/87_0.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/87_1.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/87_2.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/87_3.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/87_4.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/87_5.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/87_6.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/87_7.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/88_0.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/88_1.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/88_2.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/88_3.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/88_4.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/88_5.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/88_6.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/88_7.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/89_0.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/89_1.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/89_2.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/89_3.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/89_4.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/89_5.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/89_6.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/89_7.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/90_0.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/90_1.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/90_2.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/90_3.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/90_4.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/90_5.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/90_6.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/90_7.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/91_0.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/91_1.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/91_2.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/91_3.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/91_4.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/91_5.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/91_6.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/91_7.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/92_0.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/92_1.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/92_2.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/92_3.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/92_4.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/92_5.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/92_6.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/92_7.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/93_0.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/93_1.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/93_2.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/93_3.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/93_4.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/93_5.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/93_6.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/93_7.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/94_0.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/94_1.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/94_2.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/94_3.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/94_4.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/94_5.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/94_6.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/94_7.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/95_0.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/95_1.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/95_2.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/95_3.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/95_4.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/95_5.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/95_6.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/95_7.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/96_0.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/96_1.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/96_2.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/96_3.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/96_4.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/96_5.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/96_6.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/96_7.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/97_0.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/97_1.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/97_2.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/97_3.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/97_4.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/97_5.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/97_6.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/97_7.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/98_0.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/98_1.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/98_2.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/98_3.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/98_4.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/98_5.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/98_6.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/98_7.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/99_0.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/99_1.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/99_2.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/99_3.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/99_4.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/99_5.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/99_6.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/data/labels/99_7.png +0 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/yolo-image.cpp +210 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/yolo-image.h +39 -0
- ggml_python-0.0.22/vendor/ggml/examples/yolo/yolov3-tiny.cpp +525 -0
- ggml_python-0.0.22/vendor/ggml/include/ggml/ggml-alloc.h +85 -0
- ggml_python-0.0.22/vendor/ggml/include/ggml/ggml-backend.h +136 -0
- {ggml_python-0.0.20 → ggml_python-0.0.22}/vendor/ggml/include/ggml/ggml.h +72 -54
- {ggml_python-0.0.20 → ggml_python-0.0.22}/vendor/ggml/requirements.txt +2 -1
- {ggml_python-0.0.20 → ggml_python-0.0.22}/vendor/ggml/scripts/sync-llama.sh +2 -0
- {ggml_python-0.0.20 → ggml_python-0.0.22}/vendor/ggml/src/CMakeLists.txt +21 -4
- ggml_python-0.0.22/vendor/ggml/src/ggml-alloc.c +766 -0
- ggml_python-0.0.22/vendor/ggml/src/ggml-backend-impl.h +87 -0
- ggml_python-0.0.22/vendor/ggml/src/ggml-backend.c +950 -0
- {ggml_python-0.0.20 → ggml_python-0.0.22}/vendor/ggml/src/ggml-cuda.cu +692 -96
- {ggml_python-0.0.20 → ggml_python-0.0.22}/vendor/ggml/src/ggml-cuda.h +4 -0
- ggml_python-0.0.22/vendor/ggml/src/ggml-impl.h +31 -0
- {ggml_python-0.0.20 → ggml_python-0.0.22}/vendor/ggml/src/ggml-metal.h +18 -1
- {ggml_python-0.0.20 → ggml_python-0.0.22}/vendor/ggml/src/ggml-metal.m +420 -135
- {ggml_python-0.0.20 → ggml_python-0.0.22}/vendor/ggml/src/ggml-metal.metal +299 -47
- {ggml_python-0.0.20 → ggml_python-0.0.22}/vendor/ggml/src/ggml-opencl.cpp +243 -253
- {ggml_python-0.0.20 → ggml_python-0.0.22}/vendor/ggml/src/ggml.c +1065 -570
- {ggml_python-0.0.20 → ggml_python-0.0.22}/vendor/ggml/tests/CMakeLists.txt +1 -1
- {ggml_python-0.0.20 → ggml_python-0.0.22}/vendor/ggml/tests/test-blas0.c +6 -4
- {ggml_python-0.0.20 → ggml_python-0.0.22}/vendor/ggml/tests/test-conv-transpose.c +108 -36
- {ggml_python-0.0.20 → ggml_python-0.0.22}/vendor/ggml/tests/test-customop.c +9 -6
- {ggml_python-0.0.20 → ggml_python-0.0.22}/vendor/ggml/tests/test-grad0.cpp +4 -3
- {ggml_python-0.0.20 → ggml_python-0.0.22}/vendor/ggml/tests/test-mul-mat0.c +19 -15
- {ggml_python-0.0.20 → ggml_python-0.0.22}/vendor/ggml/tests/test-opt.cpp +6 -5
- {ggml_python-0.0.20 → ggml_python-0.0.22}/vendor/ggml/tests/test-pool.c +12 -8
- {ggml_python-0.0.20 → ggml_python-0.0.22}/vendor/ggml/tests/test-rel-pos.c +6 -4
- {ggml_python-0.0.20 → ggml_python-0.0.22}/vendor/ggml/tests/test-xpos.c +4 -3
- {ggml_python-0.0.20 → ggml_python-0.0.22}/vendor/ggml/tests/test1.c +78 -58
- ggml_python-0.0.20/ggml/__init__.py +0 -3
- ggml_python-0.0.20/vendor/ggml/examples/gpt-2/CMakeLists.txt +0 -13
- ggml_python-0.0.20/vendor/ggml/include/ggml/ggml-alloc.h +0 -27
- ggml_python-0.0.20/vendor/ggml/src/ggml-alloc.c +0 -639
- {ggml_python-0.0.20 → ggml_python-0.0.22}/.github/workflows/publish.yaml +0 -0
- {ggml_python-0.0.20 → ggml_python-0.0.22}/.gitignore +0 -0
- {ggml_python-0.0.20 → ggml_python-0.0.22}/.gitmodules +0 -0
- {ggml_python-0.0.20 → ggml_python-0.0.22}/.readthedocs.yaml +0 -0
- {ggml_python-0.0.20 → ggml_python-0.0.22}/LICENSE.md +0 -0
- {ggml_python-0.0.20 → ggml_python-0.0.22}/README.md +0 -0
- {ggml_python-0.0.20 → ggml_python-0.0.22}/docs/api-reference.md +0 -0
- {ggml_python-0.0.20 → ggml_python-0.0.22}/docs/index.md +0 -0
- {ggml_python-0.0.20 → ggml_python-0.0.22}/examples/clip/README.md +0 -0
- {ggml_python-0.0.20 → ggml_python-0.0.22}/examples/clip/convert-pt-to-ggml.py +0 -0
- {ggml_python-0.0.20 → ggml_python-0.0.22}/examples/clip/model.py +0 -0
- {ggml_python-0.0.20 → ggml_python-0.0.22}/examples/clip/requirements.txt +0 -0
- {ggml_python-0.0.20 → ggml_python-0.0.22}/examples/clip/utils.py +0 -0
- {ggml_python-0.0.20 → ggml_python-0.0.22}/examples/custom-operators/example_jax.py +0 -0
- {ggml_python-0.0.20 → ggml_python-0.0.22}/examples/replit/README.md +0 -0
- {ggml_python-0.0.20 → ggml_python-0.0.22}/examples/replit/app.py +0 -0
- {ggml_python-0.0.20 → ggml_python-0.0.22}/examples/replit/main.py +0 -0
- {ggml_python-0.0.20 → ggml_python-0.0.22}/examples/replit/requirements.txt +0 -0
- {ggml_python-0.0.20 → ggml_python-0.0.22}/ggml/py.typed +0 -0
- {ggml_python-0.0.20 → ggml_python-0.0.22}/ggml/utils.py +0 -0
- {ggml_python-0.0.20 → ggml_python-0.0.22}/mkdocs.yml +0 -0
- {ggml_python-0.0.20 → ggml_python-0.0.22}/tests/__init__.py +0 -0
- {ggml_python-0.0.20 → ggml_python-0.0.22}/tests/test_ggml_cuda.py +0 -0
- {ggml_python-0.0.20 → ggml_python-0.0.22}/vendor/ggml/.editorconfig +0 -0
- {ggml_python-0.0.20 → ggml_python-0.0.22}/vendor/ggml/.git +0 -0
- {ggml_python-0.0.20 → ggml_python-0.0.22}/vendor/ggml/.github/workflows/ci.yml +0 -0
- {ggml_python-0.0.20 → ggml_python-0.0.22}/vendor/ggml/CMakeLists.txt +0 -0
- {ggml_python-0.0.20 → ggml_python-0.0.22}/vendor/ggml/LICENSE +0 -0
- {ggml_python-0.0.20 → ggml_python-0.0.22}/vendor/ggml/build.zig +0 -0
- {ggml_python-0.0.20 → ggml_python-0.0.22}/vendor/ggml/cmake/BuildTypes.cmake +0 -0
- {ggml_python-0.0.20 → ggml_python-0.0.22}/vendor/ggml/cmake/GitVars.cmake +0 -0
- {ggml_python-0.0.20 → ggml_python-0.0.22}/vendor/ggml/examples/common-ggml.cpp +0 -0
- {ggml_python-0.0.20 → ggml_python-0.0.22}/vendor/ggml/examples/common-ggml.h +0 -0
- {ggml_python-0.0.20 → ggml_python-0.0.22}/vendor/ggml/examples/dolly-v2/CMakeLists.txt +0 -0
- {ggml_python-0.0.20 → ggml_python-0.0.22}/vendor/ggml/examples/dolly-v2/README.md +0 -0
- {ggml_python-0.0.20 → ggml_python-0.0.22}/vendor/ggml/examples/dolly-v2/convert-h5-to-ggml.py +0 -0
- {ggml_python-0.0.20 → ggml_python-0.0.22}/vendor/ggml/examples/dolly-v2/quantize.cpp +0 -0
- {ggml_python-0.0.20 → ggml_python-0.0.22}/vendor/ggml/examples/dr_wav.h +0 -0
- {ggml_python-0.0.20 → ggml_python-0.0.22}/vendor/ggml/examples/gpt-2/convert-cerebras-to-ggml.py +0 -0
- {ggml_python-0.0.20 → ggml_python-0.0.22}/vendor/ggml/examples/gpt-2/convert-ckpt-to-ggml.py +0 -0
- {ggml_python-0.0.20 → ggml_python-0.0.22}/vendor/ggml/examples/gpt-2/convert-h5-to-ggml.py +0 -0
- {ggml_python-0.0.20 → ggml_python-0.0.22}/vendor/ggml/examples/gpt-2/download-ggml-model.sh +0 -0
- {ggml_python-0.0.20 → ggml_python-0.0.22}/vendor/ggml/examples/gpt-2/download-model.sh +0 -0
- {ggml_python-0.0.20 → ggml_python-0.0.22}/vendor/ggml/examples/gpt-2/quantize.cpp +0 -0
- {ggml_python-0.0.20 → ggml_python-0.0.22}/vendor/ggml/examples/gpt-j/CMakeLists.txt +0 -0
- {ggml_python-0.0.20 → ggml_python-0.0.22}/vendor/ggml/examples/gpt-j/README.md +0 -0
- {ggml_python-0.0.20 → ggml_python-0.0.22}/vendor/ggml/examples/gpt-j/convert-h5-to-ggml.py +0 -0
- {ggml_python-0.0.20 → ggml_python-0.0.22}/vendor/ggml/examples/gpt-j/download-ggml-model.sh +0 -0
- {ggml_python-0.0.20 → ggml_python-0.0.22}/vendor/ggml/examples/gpt-j/download-model.sh +0 -0
- {ggml_python-0.0.20 → ggml_python-0.0.22}/vendor/ggml/examples/gpt-j/quantize.cpp +0 -0
- {ggml_python-0.0.20 → ggml_python-0.0.22}/vendor/ggml/examples/gpt-neox/CMakeLists.txt +0 -0
- {ggml_python-0.0.20 → ggml_python-0.0.22}/vendor/ggml/examples/gpt-neox/README.md +0 -0
- {ggml_python-0.0.20 → ggml_python-0.0.22}/vendor/ggml/examples/gpt-neox/convert-h5-to-ggml.py +0 -0
- {ggml_python-0.0.20 → ggml_python-0.0.22}/vendor/ggml/examples/gpt-neox/quantize.cpp +0 -0
- {ggml_python-0.0.20 → ggml_python-0.0.22}/vendor/ggml/examples/mnist/CMakeLists.txt +0 -0
- {ggml_python-0.0.20 → ggml_python-0.0.22}/vendor/ggml/examples/mnist/README.md +0 -0
- {ggml_python-0.0.20 → ggml_python-0.0.22}/vendor/ggml/examples/mnist/convert-h5-to-ggml.py +0 -0
- {ggml_python-0.0.20 → ggml_python-0.0.22}/vendor/ggml/examples/mnist/main-mtl.h +0 -0
- {ggml_python-0.0.20 → ggml_python-0.0.22}/vendor/ggml/examples/mnist/main-mtl.m +0 -0
- {ggml_python-0.0.20 → ggml_python-0.0.22}/vendor/ggml/examples/mnist/mnist-cnn.py +0 -0
- {ggml_python-0.0.20 → ggml_python-0.0.22}/vendor/ggml/examples/mnist/web/.gitignore +0 -0
- {ggml_python-0.0.20 → ggml_python-0.0.22}/vendor/ggml/examples/mnist/web/index.html +0 -0
- {ggml_python-0.0.20 → ggml_python-0.0.22}/vendor/ggml/examples/mpt/CMakeLists.txt +0 -0
- {ggml_python-0.0.20 → ggml_python-0.0.22}/vendor/ggml/examples/mpt/README.md +0 -0
- {ggml_python-0.0.20 → ggml_python-0.0.22}/vendor/ggml/examples/mpt/convert-h5-to-ggml.py +0 -0
- {ggml_python-0.0.20 → ggml_python-0.0.22}/vendor/ggml/examples/mpt/quantize.cpp +0 -0
- {ggml_python-0.0.20 → ggml_python-0.0.22}/vendor/ggml/examples/prompts/dolly-v2.txt +0 -0
- {ggml_python-0.0.20 → ggml_python-0.0.22}/vendor/ggml/examples/prompts/gpt-2-chinese.txt +0 -0
- {ggml_python-0.0.20 → ggml_python-0.0.22}/vendor/ggml/examples/prompts/gpt-2.txt +0 -0
- {ggml_python-0.0.20 → ggml_python-0.0.22}/vendor/ggml/examples/prompts/gpt-j.txt +0 -0
- {ggml_python-0.0.20 → ggml_python-0.0.22}/vendor/ggml/examples/prompts/gpt-neox-japanese.txt +0 -0
- {ggml_python-0.0.20 → ggml_python-0.0.22}/vendor/ggml/examples/prompts/gpt-neox.txt +0 -0
- {ggml_python-0.0.20 → ggml_python-0.0.22}/vendor/ggml/examples/prompts/polyglot-ko.txt +0 -0
- {ggml_python-0.0.20 → ggml_python-0.0.22}/vendor/ggml/examples/prompts/replit.txt +0 -0
- {ggml_python-0.0.20 → ggml_python-0.0.22}/vendor/ggml/examples/prompts/starcoder.txt +0 -0
- {ggml_python-0.0.20 → ggml_python-0.0.22}/vendor/ggml/examples/prompts/test-cases.txt +0 -0
- {ggml_python-0.0.20 → ggml_python-0.0.22}/vendor/ggml/examples/prompts/tokenize_huggingface.py +0 -0
- {ggml_python-0.0.20 → ggml_python-0.0.22}/vendor/ggml/examples/prompts/whisper.txt +0 -0
- {ggml_python-0.0.20 → ggml_python-0.0.22}/vendor/ggml/examples/python/README.md +0 -0
- {ggml_python-0.0.20 → ggml_python-0.0.22}/vendor/ggml/examples/python/api.h +0 -0
- {ggml_python-0.0.20 → ggml_python-0.0.22}/vendor/ggml/examples/python/example_add_quant.py +0 -0
- {ggml_python-0.0.20 → ggml_python-0.0.22}/vendor/ggml/examples/python/example_test_all_quants.py +0 -0
- {ggml_python-0.0.20 → ggml_python-0.0.22}/vendor/ggml/examples/python/ggml/__init__.py +0 -0
- {ggml_python-0.0.20 → ggml_python-0.0.22}/vendor/ggml/examples/python/ggml/__init__.pyi +0 -0
- {ggml_python-0.0.20 → ggml_python-0.0.22}/vendor/ggml/examples/python/ggml/cffi.py +0 -0
- {ggml_python-0.0.20 → ggml_python-0.0.22}/vendor/ggml/examples/python/ggml/ffi/__init__.pyi +0 -0
- {ggml_python-0.0.20 → ggml_python-0.0.22}/vendor/ggml/examples/python/ggml/utils.py +0 -0
- {ggml_python-0.0.20 → ggml_python-0.0.22}/vendor/ggml/examples/python/regenerate.py +0 -0
- {ggml_python-0.0.20 → ggml_python-0.0.22}/vendor/ggml/examples/python/stubs.py +0 -0
- {ggml_python-0.0.20 → ggml_python-0.0.22}/vendor/ggml/examples/python/test_tensor.py +0 -0
- {ggml_python-0.0.20 → ggml_python-0.0.22}/vendor/ggml/examples/replit/CMakeLists.txt +0 -0
- {ggml_python-0.0.20 → ggml_python-0.0.22}/vendor/ggml/examples/replit/convert-h5-to-ggml.py +0 -0
- {ggml_python-0.0.20 → ggml_python-0.0.22}/vendor/ggml/examples/replit/quantize.cpp +0 -0
- {ggml_python-0.0.20 → ggml_python-0.0.22}/vendor/ggml/examples/sam/CMakeLists.txt +0 -0
- {ggml_python-0.0.20 → ggml_python-0.0.22}/vendor/ggml/examples/sam/README.md +0 -0
- {ggml_python-0.0.20 → ggml_python-0.0.22}/vendor/ggml/examples/sam/convert-pth-to-ggml.py +0 -0
- {ggml_python-0.0.20 → ggml_python-0.0.22}/vendor/ggml/examples/starcoder/CMakeLists.txt +0 -0
- {ggml_python-0.0.20 → ggml_python-0.0.22}/vendor/ggml/examples/starcoder/README.md +0 -0
- {ggml_python-0.0.20 → ggml_python-0.0.22}/vendor/ggml/examples/starcoder/convert-hf-to-ggml.py +0 -0
- {ggml_python-0.0.20 → ggml_python-0.0.22}/vendor/ggml/examples/starcoder/quantize.cpp +0 -0
- {ggml_python-0.0.20 → ggml_python-0.0.22}/vendor/ggml/examples/stb_image.h +0 -0
- {ggml_python-0.0.20 → ggml_python-0.0.22}/vendor/ggml/examples/stb_image_write.h +0 -0
- {ggml_python-0.0.20 → ggml_python-0.0.22}/vendor/ggml/examples/whisper/README.md +0 -0
- {ggml_python-0.0.20 → ggml_python-0.0.22}/vendor/ggml/examples/whisper/convert-pt-to-ggml.py +0 -0
- {ggml_python-0.0.20 → ggml_python-0.0.22}/vendor/ggml/examples/whisper/main.cpp +0 -0
- {ggml_python-0.0.20 → ggml_python-0.0.22}/vendor/ggml/examples/whisper/quantize.cpp +0 -0
- {ggml_python-0.0.20 → ggml_python-0.0.22}/vendor/ggml/examples/whisper/whisper.h +0 -0
- {ggml_python-0.0.20 → ggml_python-0.0.22}/vendor/ggml/ggml.pc.in +0 -0
- {ggml_python-0.0.20 → ggml_python-0.0.22}/vendor/ggml/scripts/sync-whisper.sh +0 -0
- {ggml_python-0.0.20 → ggml_python-0.0.22}/vendor/ggml/src/ggml-opencl.h +0 -0
- {ggml_python-0.0.20 → ggml_python-0.0.22}/vendor/ggml/tests/test-mul-mat1.c +0 -0
- {ggml_python-0.0.20 → ggml_python-0.0.22}/vendor/ggml/tests/test-mul-mat2.c +0 -0
- {ggml_python-0.0.20 → ggml_python-0.0.22}/vendor/ggml/tests/test-quantize-fns.cpp +0 -0
- {ggml_python-0.0.20 → ggml_python-0.0.22}/vendor/ggml/tests/test-quantize-perf.cpp +0 -0
- {ggml_python-0.0.20 → ggml_python-0.0.22}/vendor/ggml/tests/test-svd0.c +0 -0
- {ggml_python-0.0.20 → ggml_python-0.0.22}/vendor/ggml/tests/test-vec0.c +0 -0
- {ggml_python-0.0.20 → ggml_python-0.0.22}/vendor/ggml/tests/test-vec1.c +0 -0
- {ggml_python-0.0.20 → ggml_python-0.0.22}/vendor/ggml/tests/test-vec2.c +0 -0
- {ggml_python-0.0.20 → ggml_python-0.0.22}/vendor/ggml/tests/test0.c +0 -0
- {ggml_python-0.0.20 → ggml_python-0.0.22}/vendor/ggml/tests/test0.zig +0 -0
- {ggml_python-0.0.20 → ggml_python-0.0.22}/vendor/ggml/tests/test1.zig +0 -0
- {ggml_python-0.0.20 → ggml_python-0.0.22}/vendor/ggml/tests/test2.c +0 -0
- {ggml_python-0.0.20 → ggml_python-0.0.22}/vendor/ggml/tests/test2.zig +0 -0
- {ggml_python-0.0.20 → ggml_python-0.0.22}/vendor/ggml/tests/test3.c +0 -0
- {ggml_python-0.0.20 → ggml_python-0.0.22}/vendor/ggml/tests/test3.zig +0 -0
|
@@ -14,7 +14,7 @@ jobs:
|
|
|
14
14
|
runs-on: ubuntu-latest
|
|
15
15
|
strategy:
|
|
16
16
|
matrix:
|
|
17
|
-
python-version: ["3.8", "3.9", "3.10", "3.11"]
|
|
17
|
+
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
|
|
18
18
|
|
|
19
19
|
steps:
|
|
20
20
|
- uses: actions/checkout@v3
|
|
@@ -37,7 +37,7 @@ jobs:
|
|
|
37
37
|
runs-on: windows-latest
|
|
38
38
|
strategy:
|
|
39
39
|
matrix:
|
|
40
|
-
python-version: ["3.8", "3.9", "3.10", "3.11"]
|
|
40
|
+
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
|
|
41
41
|
|
|
42
42
|
steps:
|
|
43
43
|
- uses: actions/checkout@v3
|
|
@@ -61,7 +61,7 @@ jobs:
|
|
|
61
61
|
runs-on: macos-latest
|
|
62
62
|
strategy:
|
|
63
63
|
matrix:
|
|
64
|
-
python-version: ["3.8", "3.9", "3.10", "3.11"]
|
|
64
|
+
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
|
|
65
65
|
|
|
66
66
|
steps:
|
|
67
67
|
- uses: actions/checkout@v3
|
|
@@ -78,3 +78,48 @@ jobs:
|
|
|
78
78
|
- name: Test with pytest
|
|
79
79
|
run: |
|
|
80
80
|
python3 -m pytest
|
|
81
|
+
|
|
82
|
+
build-linux-opencl:
|
|
83
|
+
runs-on: ubuntu-latest
|
|
84
|
+
|
|
85
|
+
steps:
|
|
86
|
+
- uses: actions/checkout@v3
|
|
87
|
+
with:
|
|
88
|
+
submodules: "true"
|
|
89
|
+
|
|
90
|
+
- name: Dependencies
|
|
91
|
+
run: |
|
|
92
|
+
wget -O- https://apt.repos.intel.com/intel-gpg-keys/GPG-PUB-KEY-INTEL-SW-PRODUCTS.PUB | gpg --dearmor | sudo tee /usr/share/keyrings/oneapi-archive-keyring.gpg > /dev/null
|
|
93
|
+
echo "deb [signed-by=/usr/share/keyrings/oneapi-archive-keyring.gpg] https://apt.repos.intel.com/oneapi all main" | sudo tee /etc/apt/sources.list.d/oneAPI.list
|
|
94
|
+
sudo apt-get update
|
|
95
|
+
sudo apt-get install -y --no-install-recommends llvm intel-oneapi-runtime-opencl intel-oneapi-runtime-compilers libclblast-dev
|
|
96
|
+
sudo apt-get install -y python3-dev python3-pip make
|
|
97
|
+
|
|
98
|
+
- name: Setup
|
|
99
|
+
run: |
|
|
100
|
+
python3 -m pip install pytest
|
|
101
|
+
make build.clblast
|
|
102
|
+
|
|
103
|
+
- name: Test with pytest
|
|
104
|
+
run: |
|
|
105
|
+
make test
|
|
106
|
+
|
|
107
|
+
build-macos-metal:
|
|
108
|
+
|
|
109
|
+
runs-on: macos-latest
|
|
110
|
+
|
|
111
|
+
steps:
|
|
112
|
+
- uses: actions/checkout@v3
|
|
113
|
+
with:
|
|
114
|
+
submodules: "true"
|
|
115
|
+
- name: Set up Python
|
|
116
|
+
uses: actions/setup-python@v4
|
|
117
|
+
with:
|
|
118
|
+
python-version: "3.8"
|
|
119
|
+
- name: Install dependencies
|
|
120
|
+
run: |
|
|
121
|
+
python3 -m pip install --upgrade pip pytest cmake scikit-build setuptools
|
|
122
|
+
CMAKE_ARGS="-DGGML_METAL=On" python3 -m pip install --verbose --editable .
|
|
123
|
+
- name: Test with pytest
|
|
124
|
+
run: |
|
|
125
|
+
python3 -m pytest
|
|
@@ -8,37 +8,37 @@ ${submodules}:
|
|
|
8
8
|
update-pip:
|
|
9
9
|
python3 -m pip install --upgrade pip
|
|
10
10
|
|
|
11
|
-
build: ${submodules} update-pip
|
|
11
|
+
build: ${submodules} update-pip ## Build ggml-python with cpu support
|
|
12
12
|
python3 -m pip install --verbose --editable .
|
|
13
13
|
|
|
14
|
-
build.debug: ${submodules} update-pip
|
|
14
|
+
build.debug: ${submodules} update-pip ## Build ggml-python with cpu support and debug symbols
|
|
15
15
|
CMAKE_ARGS="-DCMAKE_BUILD_TYPE=Debug" python3 -m pip install --verbose --config-settings=cmake.verbose=true --config-settings=logging.level=INFO --config-settings=install.strip=false --editable .
|
|
16
16
|
|
|
17
|
-
build.openblas: ${submodules} update-pip
|
|
17
|
+
build.openblas: ${submodules} update-pip ## Build ggml-python with openblas support
|
|
18
18
|
CMAKE_ARGS="-DGGML_OPENBLAS=On" python3 -m pip install --verbose --editable .
|
|
19
19
|
|
|
20
|
-
build.cublas: ${submodules} update-pip
|
|
20
|
+
build.cublas: ${submodules} update-pip ## Build ggml-python with cublas / cuda support
|
|
21
21
|
CMAKE_ARGS="-DGGML_CUBLAS=On" python3 -m pip install --verbose --editable .
|
|
22
22
|
|
|
23
|
-
build.clblast: ${submodules} update-pip
|
|
23
|
+
build.clblast: ${submodules} update-pip ## Build ggml-python with clblast / opencl support
|
|
24
24
|
CMAKE_ARGS="-DGGML_CLBLAST=On" python3 -m pip install --verbose --editable .
|
|
25
25
|
|
|
26
|
-
sdist:
|
|
26
|
+
sdist: ## Build source distribution
|
|
27
27
|
python3 -m build --sdist
|
|
28
28
|
|
|
29
|
-
deploy:
|
|
29
|
+
deploy: ## Deploy to pypi
|
|
30
30
|
twine upload dist/*
|
|
31
31
|
|
|
32
|
-
test:
|
|
32
|
+
test: ## Run tests
|
|
33
33
|
python3 -m pytest
|
|
34
34
|
|
|
35
|
-
test.gdb:
|
|
35
|
+
test.gdb: ## Run tests with gdb
|
|
36
36
|
gdb -ex r -ex "thread apply all bt" --args python -m pytest -s -vvvv
|
|
37
37
|
|
|
38
|
-
docs:
|
|
38
|
+
docs: ## Build documentation using mkdocs and serve it
|
|
39
39
|
mkdocs serve
|
|
40
40
|
|
|
41
|
-
clean:
|
|
41
|
+
clean: ## Clean build artifacts
|
|
42
42
|
- rm -rf build
|
|
43
43
|
- rm -rf dist
|
|
44
44
|
- rm ggml/*.so
|
|
@@ -49,4 +49,20 @@ clean:
|
|
|
49
49
|
- rm ${submodules}/*.dylib
|
|
50
50
|
- cd ${submodules} && make clean
|
|
51
51
|
|
|
52
|
-
|
|
52
|
+
help: ## Prints help menu
|
|
53
|
+
@grep -E '^[\.a-zA-Z_-]+:.*?## .*$$' Makefile | sort | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}'
|
|
54
|
+
|
|
55
|
+
.PHONY: \
|
|
56
|
+
all \
|
|
57
|
+
build \
|
|
58
|
+
build.debug \
|
|
59
|
+
build.openblas \
|
|
60
|
+
build.cublas \
|
|
61
|
+
build.clblast \
|
|
62
|
+
sdist \
|
|
63
|
+
deploy \
|
|
64
|
+
test \
|
|
65
|
+
test.gdb \
|
|
66
|
+
docs \
|
|
67
|
+
clean \
|
|
68
|
+
help
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: ggml_python
|
|
3
|
-
Version: 0.0.
|
|
3
|
+
Version: 0.0.22
|
|
4
4
|
Summary: Python bindings for ggml
|
|
5
5
|
Author-Email: Andrei Betlen <abetlen@gmail.com>
|
|
6
6
|
License: MIT
|
|
@@ -9,6 +9,7 @@ Classifier: Programming Language :: Python :: 3.8
|
|
|
9
9
|
Classifier: Programming Language :: Python :: 3.9
|
|
10
10
|
Classifier: Programming Language :: Python :: 3.10
|
|
11
11
|
Classifier: Programming Language :: Python :: 3.11
|
|
12
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
12
13
|
Project-URL: Homepage, https://github.com/abetlen/ggml-python
|
|
13
14
|
Project-URL: Documentation, https://ggml-python.readthedocs.io/en/latest/
|
|
14
15
|
Project-URL: Issues, https://github.com/abetlen/ggml-python/issues
|
|
@@ -531,21 +531,21 @@ class Tensor:
|
|
|
531
531
|
return Tensor.with_buffer(tensor=op, ctx=ctx, src=[a, b])
|
|
532
532
|
|
|
533
533
|
@staticmethod
|
|
534
|
-
def norm(a: Tensor, ctx: Optional[Context] = None):
|
|
534
|
+
def norm(a: Tensor, eps: float, ctx: Optional[Context] = None):
|
|
535
535
|
ctx = ctx or Context.with_tensor_overhead()
|
|
536
|
-
op = ggml.ggml_norm(ctx.context, a.tensor)
|
|
536
|
+
op = ggml.ggml_norm(ctx.context, a.tensor, eps)
|
|
537
537
|
return Tensor.with_buffer(tensor=op, ctx=ctx, src=[a])
|
|
538
538
|
|
|
539
539
|
@staticmethod
|
|
540
|
-
def rms_norm(a: Tensor, ctx: Optional[Context] = None):
|
|
540
|
+
def rms_norm(a: Tensor, eps: float, ctx: Optional[Context] = None):
|
|
541
541
|
ctx = ctx or Context.with_tensor_overhead()
|
|
542
|
-
op = ggml.ggml_rms_norm(ctx.context, a.tensor)
|
|
542
|
+
op = ggml.ggml_rms_norm(ctx.context, a.tensor, eps)
|
|
543
543
|
return Tensor.with_buffer(tensor=op, ctx=ctx, src=[a])
|
|
544
544
|
|
|
545
545
|
@staticmethod
|
|
546
|
-
def rms_norm_back(a: Tensor, b: Tensor, ctx: Optional[Context] = None):
|
|
546
|
+
def rms_norm_back(a: Tensor, b: Tensor, eps: float, ctx: Optional[Context] = None):
|
|
547
547
|
ctx = ctx or Context.with_tensor_overhead()
|
|
548
|
-
op = ggml.ggml_rms_norm_back(ctx.context, a.tensor, b.tensor)
|
|
548
|
+
op = ggml.ggml_rms_norm_back(ctx.context, a.tensor, b.tensor, eps)
|
|
549
549
|
return Tensor.with_buffer(tensor=op, ctx=ctx, src=[a, b])
|
|
550
550
|
|
|
551
551
|
@staticmethod
|
|
@@ -890,7 +890,7 @@ class Tensor:
|
|
|
890
890
|
@staticmethod
|
|
891
891
|
def rope(
|
|
892
892
|
a: Tensor,
|
|
893
|
-
|
|
893
|
+
b: Tensor,
|
|
894
894
|
n_dims: int,
|
|
895
895
|
mode: int,
|
|
896
896
|
n_ctx: int,
|
|
@@ -900,7 +900,7 @@ class Tensor:
|
|
|
900
900
|
op = ggml.ggml_rope(
|
|
901
901
|
ctx.context,
|
|
902
902
|
a.tensor,
|
|
903
|
-
|
|
903
|
+
b.tensor,
|
|
904
904
|
n_dims,
|
|
905
905
|
mode,
|
|
906
906
|
n_ctx,
|
|
@@ -910,31 +910,41 @@ class Tensor:
|
|
|
910
910
|
@staticmethod
|
|
911
911
|
def rope_inplace(
|
|
912
912
|
a: Tensor,
|
|
913
|
-
|
|
913
|
+
b: Tensor,
|
|
914
914
|
n_dims: int,
|
|
915
915
|
mode: int,
|
|
916
916
|
n_ctx: int,
|
|
917
917
|
ctx: Optional[Context] = None,
|
|
918
918
|
):
|
|
919
919
|
ctx = ctx or Context.with_tensor_overhead()
|
|
920
|
-
op = ggml.ggml_rope_inplace(ctx.context, a.tensor,
|
|
920
|
+
op = ggml.ggml_rope_inplace(ctx.context, a.tensor, b.tensor, n_dims, mode, n_ctx)
|
|
921
921
|
return Tensor.with_buffer(tensor=op, ctx=ctx, src=[a])
|
|
922
922
|
|
|
923
923
|
@staticmethod
|
|
924
924
|
def rope_back(
|
|
925
925
|
a: Tensor,
|
|
926
|
-
|
|
926
|
+
b: Tensor,
|
|
927
927
|
n_dims: int,
|
|
928
928
|
mode: int,
|
|
929
|
+
n_ctx: int,
|
|
930
|
+
freq_base: float,
|
|
931
|
+
freq_scale: float,
|
|
932
|
+
xpos_base: float,
|
|
933
|
+
xpos_down: bool,
|
|
929
934
|
ctx: Optional[Context] = None,
|
|
930
935
|
):
|
|
931
936
|
ctx = ctx or Context.with_tensor_overhead()
|
|
932
937
|
op = ggml.ggml_rope_back(
|
|
933
938
|
ctx.context,
|
|
934
939
|
a.tensor,
|
|
935
|
-
|
|
940
|
+
b.tensor,
|
|
936
941
|
n_dims,
|
|
937
942
|
mode,
|
|
943
|
+
n_ctx,
|
|
944
|
+
freq_base,
|
|
945
|
+
freq_scale,
|
|
946
|
+
xpos_base,
|
|
947
|
+
xpos_down,
|
|
938
948
|
)
|
|
939
949
|
return Tensor.with_buffer(tensor=op, ctx=ctx, src=[a])
|
|
940
950
|
|
|
@@ -1118,11 +1128,3 @@ class CGraph:
|
|
|
1118
1128
|
obj = CGraph(cgraph=ggml.ggml_build_forward(tensor.tensor))
|
|
1119
1129
|
obj._tensors.append(tensor)
|
|
1120
1130
|
return obj
|
|
1121
|
-
|
|
1122
|
-
@classmethod
|
|
1123
|
-
def graph_import(cls, fname: bytes, ctx: Context) -> CGraph:
|
|
1124
|
-
return CGraph(
|
|
1125
|
-
cgraph=ggml.ggml_graph_import(
|
|
1126
|
-
fname, ctypes.pointer(ctx.context), ctypes.pointer(ctx.context)
|
|
1127
|
-
),
|
|
1128
|
-
)
|