nexaai 0.0.8.7__tar.gz → 0.0.8.8__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.
Potentially problematic release.
This version of nexaai might be problematic. Click here for more details.
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/PKG-INFO +78 -57
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/README.md +70 -56
- nexaai-0.0.8.8/nexa/__init__.py +1 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/nexa/cli/entry.py +22 -20
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/nexa/eval/evaluator.py +1 -1
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/nexa/eval/nexa_eval.py +60 -13
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/nexa/eval/nexa_models.py +8 -6
- nexaai-0.0.8.8/nexa/eval/nexa_perf/__init__.py +24 -0
- nexaai-0.0.8.8/nexa/eval/nexa_perf/energy_tracker.py +242 -0
- nexaai-0.0.8.8/nexa/eval/nexa_perf/inference_scenario.py +332 -0
- nexaai-0.0.8.8/nexa/eval/nexa_perf/input_generator.py +93 -0
- nexaai-0.0.8.8/nexa/eval/nexa_perf/latency_tracker.py +212 -0
- nexaai-0.0.8.8/nexa/eval/nexa_perf/memory_tracker.py +372 -0
- nexaai-0.0.8.8/nexa/eval/nexa_perf/nexa_backend.py +141 -0
- nexaai-0.0.8.8/nexa/eval/nexa_perf/perf_benchmark.py +276 -0
- nexaai-0.0.8.8/nexa/eval/nexa_perf/process_launcher.py +227 -0
- nexaai-0.0.8.8/nexa/eval/nexa_perf/utils/device_isolation_utils.py +181 -0
- nexaai-0.0.8.8/nexa/eval/nexa_perf/utils/import_utils.py +30 -0
- nexaai-0.0.8.8/nexa/eval/nexa_perf/utils/logging_utils.py +54 -0
- nexaai-0.0.8.8/nexa/eval/nexa_perf/utils/process_utils.py +11 -0
- nexaai-0.0.8.8/nexa/eval/nexa_perf/utils/system_utils.py +242 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/nexa/eval/utils.py +0 -2
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/nexa/gguf/llama/llama.py +4 -6
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/nexa/gguf/nexa_inference_text.py +45 -14
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/nexa/gguf/nexa_inference_vlm.py +19 -3
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/nexa/gguf/server/nexa_service.py +5 -8
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/nexa/onnx/server/nexa_service.py +2 -2
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/pyproject.toml +7 -0
- nexaai-0.0.8.8/tests/__init__.py +0 -0
- nexaai-0.0.8.7/nexa/__init__.py +0 -1
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/.gitignore +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/.gitmodules +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/CLI.md +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/CMakeLists.txt +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/Dockerfile +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/LICENSE +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/MANIFEST.in +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/SERVER.md +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/assets/banner.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/README.md +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/.clang-tidy +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/.devops/cloud-v-pipeline +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/.devops/full-cuda.Dockerfile +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/.devops/full-rocm.Dockerfile +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/.devops/full.Dockerfile +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/.devops/llama-cli-cann.Dockerfile +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/.devops/llama-cli-cuda.Dockerfile +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/.devops/llama-cli-intel.Dockerfile +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/.devops/llama-cli-rocm.Dockerfile +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/.devops/llama-cli-vulkan.Dockerfile +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/.devops/llama-cli.Dockerfile +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/.devops/llama-cpp-cuda.srpm.spec +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/.devops/llama-cpp.srpm.spec +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/.devops/llama-server-cuda.Dockerfile +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/.devops/llama-server-intel.Dockerfile +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/.devops/llama-server-rocm.Dockerfile +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/.devops/llama-server-vulkan.Dockerfile +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/.devops/llama-server.Dockerfile +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/.devops/nix/apps.nix +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/.devops/nix/devshells.nix +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/.devops/nix/docker.nix +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/.devops/nix/jetson-support.nix +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/.devops/nix/nixpkgs-instances.nix +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/.devops/nix/package.nix +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/.devops/nix/scope.nix +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/.devops/nix/sif.nix +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/.devops/tools.sh +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/.dockerignore +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/.ecrc +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/.editorconfig +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/.flake8 +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/.git +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/.github/ISSUE_TEMPLATE/01-bug-low.yml +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/.github/ISSUE_TEMPLATE/02-bug-medium.yml +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/.github/ISSUE_TEMPLATE/03-bug-high.yml +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/.github/ISSUE_TEMPLATE/04-bug-critical.yml +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/.github/ISSUE_TEMPLATE/05-enhancement.yml +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/.github/ISSUE_TEMPLATE/06-research.yml +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/.github/ISSUE_TEMPLATE/07-refactor.yml +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/.github/ISSUE_TEMPLATE/config.yml +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/.github/labeler.yml +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/.github/pull_request_template.md +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/.github/workflows/bench.yml.disabled +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/.github/workflows/build.yml +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/.github/workflows/close-issue.yml +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/.github/workflows/docker.yml +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/.github/workflows/editorconfig.yml +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/.github/workflows/gguf-publish.yml +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/.github/workflows/labeler.yml +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/.github/workflows/nix-ci-aarch64.yml +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/.github/workflows/nix-ci.yml +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/.github/workflows/nix-flake-update.yml +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/.github/workflows/nix-publish-flake.yml +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/.github/workflows/python-check-requirements.yml +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/.github/workflows/python-lint.yml +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/.github/workflows/python-type-check.yml +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/.github/workflows/server.yml +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/.gitignore +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/.gitmodules +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/.pre-commit-config.yaml +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/AUTHORS +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/CMakeLists.txt +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/CMakePresets.json +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/CONTRIBUTING.md +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/LICENSE +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/Makefile +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/Package.swift +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/README.md +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/SECURITY.md +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ci/README.md +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ci/run.sh +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/cmake/arm64-windows-llvm.cmake +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/cmake/arm64-windows-msvc.cmake +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/cmake/build-info.cmake +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/cmake/git-vars.cmake +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/cmake/llama-config.cmake.in +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/cmake/llama.pc.in +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/common/CMakeLists.txt +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/common/base64.hpp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/common/build-info.cpp.in +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/common/cmake/build-info-gen-cpp.cmake +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/common/common.cpp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/common/common.h +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/common/console.cpp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/common/console.h +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/common/grammar-parser.cpp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/common/grammar-parser.h +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/common/json-schema-to-grammar.cpp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/common/json-schema-to-grammar.h +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/common/json.hpp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/common/log.h +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/common/ngram-cache.cpp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/common/ngram-cache.h +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/common/sampling.cpp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/common/sampling.h +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/common/stb_image.h +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/common/train.cpp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/common/train.h +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/convert_hf_to_gguf.py +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/convert_hf_to_gguf_update.py +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/convert_llama_ggml_to_gguf.py +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/convert_lora_to_gguf.py +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/docs/android.md +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/docs/backend/BLIS.md +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/docs/backend/CANN.md +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/docs/backend/SYCL.md +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/docs/build.md +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/docs/development/HOWTO-add-model.md +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/docs/development/debugging-tests.md +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/docs/development/llama-star/idea-arch.key +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/docs/development/llama-star/idea-arch.pdf +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/docs/development/token_generation_performance_tips.md +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/docs/docker.md +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/docs/install.md +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/CMakeLists.txt +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/Miku.sh +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/baby-llama/CMakeLists.txt +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/baby-llama/baby-llama.cpp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/base-translate.sh +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/batched/CMakeLists.txt +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/batched/README.md +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/batched/batched.cpp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/batched-bench/CMakeLists.txt +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/batched-bench/README.md +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/batched-bench/batched-bench.cpp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/batched.swift/.gitignore +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/batched.swift/Makefile +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/batched.swift/Package.swift +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/batched.swift/README.md +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/batched.swift/Sources/main.swift +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/benchmark/CMakeLists.txt +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/benchmark/benchmark-matmult.cpp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/chat-13B.bat +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/chat-13B.sh +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/chat-persistent.sh +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/chat-vicuna.sh +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/chat.sh +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/convert-llama2c-to-ggml/CMakeLists.txt +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/convert-llama2c-to-ggml/README.md +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/convert-llama2c-to-ggml/convert-llama2c-to-ggml.cpp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/convert_legacy_llama.py +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/cvector-generator/CMakeLists.txt +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/cvector-generator/README.md +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/cvector-generator/completions.txt +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/cvector-generator/cvector-generator.cpp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/cvector-generator/mean.hpp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/cvector-generator/negative.txt +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/cvector-generator/pca.hpp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/cvector-generator/positive.txt +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/deprecation-warning/README.md +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/deprecation-warning/deprecation-warning.cpp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/embedding/CMakeLists.txt +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/embedding/README.md +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/embedding/embedding.cpp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/eval-callback/CMakeLists.txt +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/eval-callback/README.md +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/eval-callback/eval-callback.cpp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/export-lora/CMakeLists.txt +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/export-lora/README.md +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/export-lora/export-lora.cpp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/gbnf-validator/CMakeLists.txt +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/gbnf-validator/gbnf-validator.cpp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/gguf/CMakeLists.txt +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/gguf/gguf.cpp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/gguf-hash/CMakeLists.txt +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/gguf-hash/README.md +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/gguf-hash/deps/rotate-bits/package.json +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/gguf-hash/deps/rotate-bits/rotate-bits.h +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/gguf-hash/deps/sha1/package.json +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/gguf-hash/deps/sha1/sha1.c +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/gguf-hash/deps/sha1/sha1.h +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/gguf-hash/deps/sha256/package.json +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/gguf-hash/deps/sha256/sha256.c +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/gguf-hash/deps/sha256/sha256.h +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/gguf-hash/deps/xxhash/clib.json +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/gguf-hash/deps/xxhash/xxhash.c +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/gguf-hash/deps/xxhash/xxhash.h +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/gguf-hash/gguf-hash.cpp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/gguf-split/CMakeLists.txt +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/gguf-split/README.md +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/gguf-split/gguf-split.cpp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/gguf-split/tests.sh +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/gritlm/CMakeLists.txt +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/gritlm/README.md +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/gritlm/gritlm.cpp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/imatrix/CMakeLists.txt +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/imatrix/README.md +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/imatrix/imatrix.cpp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/infill/CMakeLists.txt +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/infill/README.md +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/infill/infill.cpp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/jeopardy/README.md +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/jeopardy/graph.py +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/jeopardy/jeopardy.sh +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/jeopardy/qasheet.csv +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/jeopardy/questions.txt +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/json_schema_pydantic_example.py +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/json_schema_to_grammar.py +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/llama-bench/CMakeLists.txt +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/llama-bench/README.md +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/llama-bench/llama-bench.cpp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/llama.android/.gitignore +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/llama.android/README.md +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/llama.android/app/.gitignore +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/llama.android/app/build.gradle.kts +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/llama.android/app/proguard-rules.pro +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/llama.android/app/src/main/AndroidManifest.xml +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/llama.android/app/src/main/java/com/example/llama/Downloadable.kt +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/llama.android/app/src/main/java/com/example/llama/MainActivity.kt +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/llama.android/app/src/main/java/com/example/llama/MainViewModel.kt +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/llama.android/app/src/main/java/com/example/llama/ui/theme/Color.kt +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/llama.android/app/src/main/java/com/example/llama/ui/theme/Theme.kt +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/llama.android/app/src/main/java/com/example/llama/ui/theme/Type.kt +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/llama.android/app/src/main/res/drawable/ic_launcher_background.xml +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/llama.android/app/src/main/res/drawable/ic_launcher_foreground.xml +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/llama.android/app/src/main/res/mipmap-anydpi/ic_launcher.xml +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/llama.android/app/src/main/res/mipmap-anydpi/ic_launcher_round.xml +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/llama.android/app/src/main/res/mipmap-hdpi/ic_launcher.webp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/llama.android/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/llama.android/app/src/main/res/mipmap-mdpi/ic_launcher.webp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/llama.android/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/llama.android/app/src/main/res/mipmap-xhdpi/ic_launcher.webp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/llama.android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/llama.android/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/llama.android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/llama.android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/llama.android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/llama.android/app/src/main/res/values/colors.xml +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/llama.android/app/src/main/res/values/strings.xml +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/llama.android/app/src/main/res/values/themes.xml +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/llama.android/app/src/main/res/xml/backup_rules.xml +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/llama.android/app/src/main/res/xml/data_extraction_rules.xml +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/llama.android/build.gradle.kts +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/llama.android/gradle/wrapper/gradle-wrapper.jar +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/llama.android/gradle/wrapper/gradle-wrapper.properties +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/llama.android/gradle.properties +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/llama.android/gradlew +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/llama.android/llama/.gitignore +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/llama.android/llama/build.gradle.kts +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/llama.android/llama/consumer-rules.pro +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/llama.android/llama/proguard-rules.pro +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/llama.android/llama/src/androidTest/java/android/llama/cpp/ExampleInstrumentedTest.kt +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/llama.android/llama/src/main/AndroidManifest.xml +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/llama.android/llama/src/main/cpp/CMakeLists.txt +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/llama.android/llama/src/main/cpp/llama-android.cpp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/llama.android/llama/src/main/java/android/llama/cpp/LLamaAndroid.kt +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/llama.android/llama/src/test/java/android/llama/cpp/ExampleUnitTest.kt +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/llama.android/settings.gradle.kts +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/llama.swiftui/.gitignore +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/llama.swiftui/README.md +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/llama.swiftui/llama.cpp.swift/LibLlama.swift +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/llama.swiftui/llama.swiftui/Assets.xcassets/AppIcon.appiconset/Contents.json +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/llama.swiftui/llama.swiftui/Assets.xcassets/Contents.json +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/llama.swiftui/llama.swiftui/Models/LlamaState.swift +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/llama.swiftui/llama.swiftui/Resources/models/.gitignore +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/llama.swiftui/llama.swiftui/UI/ContentView.swift +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/llama.swiftui/llama.swiftui/UI/DownloadButton.swift +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/llama.swiftui/llama.swiftui/UI/InputButton.swift +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/llama.swiftui/llama.swiftui/UI/LoadCustomButton.swift +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/llama.swiftui/llama.swiftui/llama_swiftuiApp.swift +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/llama.swiftui/llama.swiftui.xcodeproj/project.pbxproj +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/llama.swiftui/llama.swiftui.xcodeproj/project.xcworkspace/contents.xcworkspacedata +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/llama.swiftui/llama.swiftui.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/llama.vim +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/llava/CMakeLists.txt +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/llava/MobileVLM-README.md +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/llava/README-minicpmv2.5.md +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/llava/README-minicpmv2.6.md +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/llava/README.md +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/llava/android/adb_run.sh +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/llava/android/build_64.sh +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/llava/clip.cpp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/llava/clip.h +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/llava/convert_image_encoder_to_gguf.py +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/llava/llava-cli.cpp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/llava/llava.cpp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/llava/llava.h +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/llava/llava_surgery.py +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/llava/llava_surgery_v2.py +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/llava/minicpmv-cli.cpp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/llava/minicpmv-convert-image-encoder-to-gguf.py +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/llava/minicpmv-surgery.py +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/llava/requirements.txt +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/llm.vim +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/lookahead/CMakeLists.txt +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/lookahead/README.md +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/lookahead/lookahead.cpp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/lookup/CMakeLists.txt +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/lookup/README.md +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/lookup/lookup-create.cpp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/lookup/lookup-merge.cpp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/lookup/lookup-stats.cpp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/lookup/lookup.cpp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/main/CMakeLists.txt +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/main/README.md +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/main/main.cpp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/main-cmake-pkg/.gitignore +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/main-cmake-pkg/CMakeLists.txt +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/main-cmake-pkg/README.md +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/parallel/CMakeLists.txt +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/parallel/README.md +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/parallel/parallel.cpp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/passkey/CMakeLists.txt +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/passkey/README.md +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/passkey/passkey.cpp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/perplexity/CMakeLists.txt +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/perplexity/README.md +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/perplexity/perplexity.cpp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/pydantic_models_to_grammar.py +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/pydantic_models_to_grammar_examples.py +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/quantize/CMakeLists.txt +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/quantize/README.md +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/quantize/quantize.cpp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/quantize/tests.sh +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/quantize-stats/CMakeLists.txt +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/quantize-stats/quantize-stats.cpp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/reason-act.sh +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/regex_to_grammar.py +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/retrieval/CMakeLists.txt +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/retrieval/README.md +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/retrieval/retrieval.cpp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/rpc/CMakeLists.txt +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/rpc/README.md +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/rpc/rpc-server.cpp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/save-load-state/CMakeLists.txt +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/save-load-state/save-load-state.cpp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/server/CMakeLists.txt +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/server/README.md +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/server/bench/README.md +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/server/bench/bench.py +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/server/bench/prometheus.yml +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/server/bench/requirements.txt +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/server/bench/script.js +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/server/chat-llama2.sh +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/server/chat.mjs +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/server/chat.sh +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/server/deps.sh +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/server/httplib.h +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/server/public/colorthemes.css +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/server/public/completion.js +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/server/public/favicon.ico +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/server/public/index-new.html +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/server/public/index.html +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/server/public/index.js +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/server/public/json-schema-to-grammar.mjs +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/server/public/prompt-formats.js +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/server/public/style.css +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/server/public/system-prompts.js +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/server/public/theme-beeninorder.css +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/server/public/theme-ketivah.css +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/server/public/theme-mangotango.css +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/server/public/theme-playground.css +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/server/public/theme-polarnight.css +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/server/public/theme-snowstorm.css +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/server/public_simplechat/datautils.mjs +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/server/public_simplechat/index.html +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/server/public_simplechat/readme.md +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/server/public_simplechat/simplechat.css +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/server/public_simplechat/simplechat.js +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/server/public_simplechat/simplechat_screens.webp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/server/public_simplechat/ui.mjs +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/server/server.cpp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/server/tests/README.md +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/server/tests/features/embeddings.feature +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/server/tests/features/environment.py +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/server/tests/features/issues.feature +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/server/tests/features/lora.feature +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/server/tests/features/parallel.feature +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/server/tests/features/passkey.feature +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/server/tests/features/results.feature +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/server/tests/features/security.feature +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/server/tests/features/server.feature +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/server/tests/features/slotsave.feature +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/server/tests/features/steps/steps.py +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/server/tests/features/wrong_usages.feature +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/server/tests/requirements.txt +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/server/tests/tests.sh +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/server/themes/README.md +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/server/themes/buttons-top/README.md +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/server/themes/buttons-top/buttons_top.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/server/themes/buttons-top/favicon.ico +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/server/themes/buttons-top/index.html +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/server/themes/wild/README.md +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/server/themes/wild/favicon.ico +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/server/themes/wild/index.html +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/server/themes/wild/llama_cpp.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/server/themes/wild/llamapattern.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/server/themes/wild/wild.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/server/utils.hpp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/server-llama2-13B.sh +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/server_embd.py +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/simple/CMakeLists.txt +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/simple/README.md +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/simple/simple.cpp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/speculative/CMakeLists.txt +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/speculative/README.md +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/speculative/speculative.cpp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/sycl/CMakeLists.txt +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/sycl/README.md +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/sycl/build.sh +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/sycl/ls-sycl-device.cpp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/sycl/run-llama2.sh +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/sycl/win-build-sycl.bat +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/sycl/win-run-llama2.bat +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/tokenize/CMakeLists.txt +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/tokenize/tokenize.cpp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/examples/ts-type-to-grammar.sh +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/flake.lock +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/flake.nix +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/.gitignore +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/CMakeLists.txt +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/cmake/FindSIMD.cmake +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/include/ggml-alloc.h +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/include/ggml-backend.h +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/include/ggml-blas.h +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/include/ggml-cann.h +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/include/ggml-cuda.h +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/include/ggml-kompute.h +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/include/ggml-metal.h +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/include/ggml-rpc.h +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/include/ggml-sycl.h +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/include/ggml-vulkan.h +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/include/ggml.h +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/CMakeLists.txt +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-aarch64.c +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-aarch64.h +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-alloc.c +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-backend-impl.h +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-backend.c +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-blas.cpp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-cann/.clang-format +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-cann/Doxyfile +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-cann/acl_tensor.cpp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-cann/acl_tensor.h +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-cann/aclnn_ops.cpp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-cann/aclnn_ops.h +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-cann/common.h +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-cann/kernels/CMakeLists.txt +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-cann/kernels/ascendc_kernels.h +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-cann/kernels/dup.cpp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-cann/kernels/get_row_f16.cpp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-cann/kernels/get_row_f32.cpp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-cann/kernels/get_row_q4_0.cpp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-cann/kernels/get_row_q8_0.cpp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-cann/kernels/quantize_f16_q8_0.cpp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-cann/kernels/quantize_f32_q8_0.cpp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-cann/kernels/quantize_float_to_q4_0.cpp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-cann.cpp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-common.h +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/acc.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/acc.cuh +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/arange.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/arange.cuh +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/argsort.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/argsort.cuh +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/binbcast.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/binbcast.cuh +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/clamp.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/clamp.cuh +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/common.cuh +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/concat.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/concat.cuh +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/conv-transpose-1d.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/conv-transpose-1d.cuh +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/convert.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/convert.cuh +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/cpy.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/cpy.cuh +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/cross-entropy-loss.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/cross-entropy-loss.cuh +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/dequantize.cuh +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/diagmask.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/diagmask.cuh +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/dmmv.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/dmmv.cuh +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/fattn-common.cuh +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/fattn-tile-f16.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/fattn-tile-f16.cuh +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/fattn-tile-f32.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/fattn-tile-f32.cuh +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/fattn-vec-f16.cuh +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/fattn-vec-f32.cuh +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/fattn-wmma-f16.cuh +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/fattn.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/fattn.cuh +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/getrows.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/getrows.cuh +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/im2col.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/im2col.cuh +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/mma.cuh +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/mmq.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/mmq.cuh +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/mmvq.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/mmvq.cuh +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/norm.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/norm.cuh +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/pad.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/pad.cuh +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/pool2d.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/pool2d.cuh +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/quantize.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/quantize.cuh +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/rope.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/rope.cuh +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/scale.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/scale.cuh +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/softmax.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/softmax.cuh +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/sumrows.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/sumrows.cuh +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/template-instances/fattn-vec-f16-instance-hs128-f16-f16.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/template-instances/fattn-vec-f16-instance-hs128-f16-q4_0.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/template-instances/fattn-vec-f16-instance-hs128-f16-q4_1.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/template-instances/fattn-vec-f16-instance-hs128-f16-q5_0.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/template-instances/fattn-vec-f16-instance-hs128-f16-q5_1.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/template-instances/fattn-vec-f16-instance-hs128-f16-q8_0.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/template-instances/fattn-vec-f16-instance-hs128-q4_0-f16.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/template-instances/fattn-vec-f16-instance-hs128-q4_0-q4_0.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/template-instances/fattn-vec-f16-instance-hs128-q4_0-q4_1.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/template-instances/fattn-vec-f16-instance-hs128-q4_0-q5_0.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/template-instances/fattn-vec-f16-instance-hs128-q4_0-q5_1.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/template-instances/fattn-vec-f16-instance-hs128-q4_0-q8_0.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/template-instances/fattn-vec-f16-instance-hs128-q4_1-f16.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/template-instances/fattn-vec-f16-instance-hs128-q4_1-q4_0.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/template-instances/fattn-vec-f16-instance-hs128-q4_1-q4_1.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/template-instances/fattn-vec-f16-instance-hs128-q4_1-q5_0.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/template-instances/fattn-vec-f16-instance-hs128-q4_1-q5_1.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/template-instances/fattn-vec-f16-instance-hs128-q4_1-q8_0.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/template-instances/fattn-vec-f16-instance-hs128-q5_0-f16.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/template-instances/fattn-vec-f16-instance-hs128-q5_0-q4_0.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/template-instances/fattn-vec-f16-instance-hs128-q5_0-q4_1.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/template-instances/fattn-vec-f16-instance-hs128-q5_0-q5_0.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/template-instances/fattn-vec-f16-instance-hs128-q5_0-q5_1.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/template-instances/fattn-vec-f16-instance-hs128-q5_0-q8_0.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/template-instances/fattn-vec-f16-instance-hs128-q5_1-f16.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/template-instances/fattn-vec-f16-instance-hs128-q5_1-q4_0.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/template-instances/fattn-vec-f16-instance-hs128-q5_1-q4_1.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/template-instances/fattn-vec-f16-instance-hs128-q5_1-q5_0.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/template-instances/fattn-vec-f16-instance-hs128-q5_1-q5_1.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/template-instances/fattn-vec-f16-instance-hs128-q5_1-q8_0.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/template-instances/fattn-vec-f16-instance-hs128-q8_0-f16.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/template-instances/fattn-vec-f16-instance-hs128-q8_0-q4_0.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/template-instances/fattn-vec-f16-instance-hs128-q8_0-q4_1.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/template-instances/fattn-vec-f16-instance-hs128-q8_0-q5_0.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/template-instances/fattn-vec-f16-instance-hs128-q8_0-q5_1.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/template-instances/fattn-vec-f16-instance-hs128-q8_0-q8_0.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/template-instances/fattn-vec-f16-instance-hs256-f16-f16.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/template-instances/fattn-vec-f16-instance-hs64-f16-f16.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/template-instances/fattn-vec-f16-instance-hs64-f16-q4_0.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/template-instances/fattn-vec-f16-instance-hs64-f16-q4_1.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/template-instances/fattn-vec-f16-instance-hs64-f16-q5_0.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/template-instances/fattn-vec-f16-instance-hs64-f16-q5_1.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/template-instances/fattn-vec-f16-instance-hs64-f16-q8_0.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/template-instances/fattn-vec-f32-instance-hs128-f16-f16.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/template-instances/fattn-vec-f32-instance-hs128-f16-q4_0.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/template-instances/fattn-vec-f32-instance-hs128-f16-q4_1.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/template-instances/fattn-vec-f32-instance-hs128-f16-q5_0.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/template-instances/fattn-vec-f32-instance-hs128-f16-q5_1.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/template-instances/fattn-vec-f32-instance-hs128-f16-q8_0.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/template-instances/fattn-vec-f32-instance-hs128-q4_0-f16.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/template-instances/fattn-vec-f32-instance-hs128-q4_0-q4_0.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/template-instances/fattn-vec-f32-instance-hs128-q4_0-q4_1.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/template-instances/fattn-vec-f32-instance-hs128-q4_0-q5_0.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/template-instances/fattn-vec-f32-instance-hs128-q4_0-q5_1.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/template-instances/fattn-vec-f32-instance-hs128-q4_0-q8_0.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/template-instances/fattn-vec-f32-instance-hs128-q4_1-f16.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/template-instances/fattn-vec-f32-instance-hs128-q4_1-q4_0.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/template-instances/fattn-vec-f32-instance-hs128-q4_1-q4_1.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/template-instances/fattn-vec-f32-instance-hs128-q4_1-q5_0.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/template-instances/fattn-vec-f32-instance-hs128-q4_1-q5_1.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/template-instances/fattn-vec-f32-instance-hs128-q4_1-q8_0.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/template-instances/fattn-vec-f32-instance-hs128-q5_0-f16.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/template-instances/fattn-vec-f32-instance-hs128-q5_0-q4_0.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/template-instances/fattn-vec-f32-instance-hs128-q5_0-q4_1.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/template-instances/fattn-vec-f32-instance-hs128-q5_0-q5_0.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/template-instances/fattn-vec-f32-instance-hs128-q5_0-q5_1.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/template-instances/fattn-vec-f32-instance-hs128-q5_0-q8_0.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/template-instances/fattn-vec-f32-instance-hs128-q5_1-f16.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/template-instances/fattn-vec-f32-instance-hs128-q5_1-q4_0.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/template-instances/fattn-vec-f32-instance-hs128-q5_1-q4_1.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/template-instances/fattn-vec-f32-instance-hs128-q5_1-q5_0.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/template-instances/fattn-vec-f32-instance-hs128-q5_1-q5_1.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/template-instances/fattn-vec-f32-instance-hs128-q5_1-q8_0.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/template-instances/fattn-vec-f32-instance-hs128-q8_0-f16.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/template-instances/fattn-vec-f32-instance-hs128-q8_0-q4_0.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/template-instances/fattn-vec-f32-instance-hs128-q8_0-q4_1.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/template-instances/fattn-vec-f32-instance-hs128-q8_0-q5_0.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/template-instances/fattn-vec-f32-instance-hs128-q8_0-q5_1.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/template-instances/fattn-vec-f32-instance-hs128-q8_0-q8_0.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/template-instances/fattn-vec-f32-instance-hs256-f16-f16.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/template-instances/fattn-vec-f32-instance-hs64-f16-f16.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/template-instances/fattn-vec-f32-instance-hs64-f16-q4_0.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/template-instances/fattn-vec-f32-instance-hs64-f16-q4_1.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/template-instances/fattn-vec-f32-instance-hs64-f16-q5_0.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/template-instances/fattn-vec-f32-instance-hs64-f16-q5_1.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/template-instances/fattn-vec-f32-instance-hs64-f16-q8_0.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/template-instances/fattn-wmma-f16-instance-kqfloat-cpb16.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/template-instances/fattn-wmma-f16-instance-kqfloat-cpb32.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/template-instances/fattn-wmma-f16-instance-kqhalf-cpb16.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/template-instances/fattn-wmma-f16-instance-kqhalf-cpb32.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/template-instances/fattn-wmma-f16-instance-kqhalf-cpb8.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/template-instances/generate_cu_files.py +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/template-instances/mmq-instance-iq1_s.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/template-instances/mmq-instance-iq2_s.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/template-instances/mmq-instance-iq2_xs.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/template-instances/mmq-instance-iq2_xxs.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/template-instances/mmq-instance-iq3_s.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/template-instances/mmq-instance-iq3_xxs.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/template-instances/mmq-instance-iq4_nl.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/template-instances/mmq-instance-iq4_xs.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/template-instances/mmq-instance-q2_k.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/template-instances/mmq-instance-q3_k.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/template-instances/mmq-instance-q4_0.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/template-instances/mmq-instance-q4_1.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/template-instances/mmq-instance-q4_k.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/template-instances/mmq-instance-q5_0.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/template-instances/mmq-instance-q5_1.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/template-instances/mmq-instance-q5_k.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/template-instances/mmq-instance-q6_k.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/template-instances/mmq-instance-q8_0.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/tsembd.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/tsembd.cuh +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/unary.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/unary.cuh +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/upscale.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/upscale.cuh +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/vecdotq.cuh +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/vendors/cuda.h +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/vendors/hip.h +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/vendors/musa.h +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-cuda.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-impl.h +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-kompute.cpp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-metal.m +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-metal.metal +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-quants.c +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-quants.h +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-rpc.cpp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-sycl/backend.hpp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-sycl/common.cpp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-sycl/common.hpp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-sycl/concat.cpp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-sycl/concat.hpp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-sycl/conv.cpp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-sycl/conv.hpp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-sycl/convert.cpp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-sycl/convert.hpp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-sycl/dequantize.hpp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-sycl/dmmv.cpp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-sycl/dmmv.hpp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-sycl/dpct/helper.hpp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-sycl/gemm.hpp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-sycl/im2col.cpp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-sycl/im2col.hpp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-sycl/mmq.cpp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-sycl/mmq.hpp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-sycl/mmvq.cpp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-sycl/mmvq.hpp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-sycl/norm.cpp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-sycl/norm.hpp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-sycl/presets.hpp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-sycl/rope.cpp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-sycl/rope.hpp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-sycl/softmax.cpp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-sycl/softmax.hpp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-sycl/tsembd.cpp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-sycl/tsembd.hpp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-sycl/vecdotq.hpp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-sycl.cpp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml-vulkan.cpp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/ggml.c +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/kompute-shaders/common.comp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/kompute-shaders/op_add.comp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/kompute-shaders/op_addrow.comp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/kompute-shaders/op_cpy_f16_f16.comp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/kompute-shaders/op_cpy_f16_f32.comp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/kompute-shaders/op_cpy_f32_f16.comp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/kompute-shaders/op_cpy_f32_f32.comp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/kompute-shaders/op_diagmask.comp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/kompute-shaders/op_gelu.comp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/kompute-shaders/op_getrows.comp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/kompute-shaders/op_getrows_f16.comp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/kompute-shaders/op_getrows_f32.comp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/kompute-shaders/op_getrows_q4_0.comp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/kompute-shaders/op_getrows_q4_1.comp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/kompute-shaders/op_getrows_q6_k.comp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/kompute-shaders/op_mul.comp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/kompute-shaders/op_mul_mat_f16.comp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/kompute-shaders/op_mul_mat_mat_f32.comp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/kompute-shaders/op_mul_mat_q4_0.comp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/kompute-shaders/op_mul_mat_q4_1.comp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/kompute-shaders/op_mul_mat_q6_k.comp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/kompute-shaders/op_mul_mat_q8_0.comp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/kompute-shaders/op_mul_mv_q_n.comp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/kompute-shaders/op_mul_mv_q_n_pre.comp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/kompute-shaders/op_norm.comp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/kompute-shaders/op_relu.comp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/kompute-shaders/op_rmsnorm.comp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/kompute-shaders/op_rope_f16.comp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/kompute-shaders/op_rope_f32.comp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/kompute-shaders/op_scale.comp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/kompute-shaders/op_scale_8.comp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/kompute-shaders/op_silu.comp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/kompute-shaders/op_softmax.comp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/kompute-shaders/rope_common.comp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/llamafile/sgemm.cpp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/llamafile/sgemm.h +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/vulkan-shaders/CMakeLists.txt +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/vulkan-shaders/acc.comp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/vulkan-shaders/add.comp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/vulkan-shaders/argsort.comp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/vulkan-shaders/clamp.comp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/vulkan-shaders/concat.comp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/vulkan-shaders/copy.comp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/vulkan-shaders/cos.comp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/vulkan-shaders/dequant_f32.comp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/vulkan-shaders/dequant_funcs.comp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/vulkan-shaders/dequant_head.comp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/vulkan-shaders/dequant_iq4_nl.comp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/vulkan-shaders/dequant_q2_k.comp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/vulkan-shaders/dequant_q3_k.comp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/vulkan-shaders/dequant_q4_0.comp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/vulkan-shaders/dequant_q4_1.comp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/vulkan-shaders/dequant_q4_k.comp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/vulkan-shaders/dequant_q5_0.comp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/vulkan-shaders/dequant_q5_1.comp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/vulkan-shaders/dequant_q5_k.comp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/vulkan-shaders/dequant_q6_k.comp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/vulkan-shaders/dequant_q8_0.comp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/vulkan-shaders/diag_mask_inf.comp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/vulkan-shaders/div.comp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/vulkan-shaders/gelu.comp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/vulkan-shaders/gelu_quick.comp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/vulkan-shaders/generic_binary_head.comp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/vulkan-shaders/generic_head.comp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/vulkan-shaders/generic_unary_head.comp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/vulkan-shaders/get_rows.comp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/vulkan-shaders/get_rows_quant.comp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/vulkan-shaders/group_norm.comp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/vulkan-shaders/im2col.comp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/vulkan-shaders/leaky_relu.comp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/vulkan-shaders/mul.comp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/vulkan-shaders/mul_mat_split_k_reduce.comp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/vulkan-shaders/mul_mat_vec.comp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/vulkan-shaders/mul_mat_vec_base.comp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/vulkan-shaders/mul_mat_vec_nc.comp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/vulkan-shaders/mul_mat_vec_p021.comp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/vulkan-shaders/mul_mat_vec_q2_k.comp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/vulkan-shaders/mul_mat_vec_q3_k.comp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/vulkan-shaders/mul_mat_vec_q4_k.comp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/vulkan-shaders/mul_mat_vec_q5_k.comp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/vulkan-shaders/mul_mat_vec_q6_k.comp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/vulkan-shaders/mul_mm.comp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/vulkan-shaders/norm.comp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/vulkan-shaders/pad.comp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/vulkan-shaders/relu.comp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/vulkan-shaders/repeat.comp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/vulkan-shaders/rms_norm.comp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/vulkan-shaders/rope_head.comp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/vulkan-shaders/rope_neox.comp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/vulkan-shaders/rope_norm.comp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/vulkan-shaders/scale.comp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/vulkan-shaders/silu.comp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/vulkan-shaders/sin.comp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/vulkan-shaders/soft_max.comp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/vulkan-shaders/square.comp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/vulkan-shaders/sum_rows.comp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/vulkan-shaders/tanh.comp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/vulkan-shaders/timestep_embedding.comp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/vulkan-shaders/types.comp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/vulkan-shaders/upscale.comp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/ggml_llama/src/vulkan-shaders/vulkan-shaders-gen.cpp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/gguf-py/LICENSE +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/gguf-py/README.md +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/gguf-py/examples/reader.py +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/gguf-py/examples/writer.py +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/gguf-py/gguf/__init__.py +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/gguf-py/gguf/constants.py +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/gguf-py/gguf/gguf.py +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/gguf-py/gguf/gguf_reader.py +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/gguf-py/gguf/gguf_writer.py +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/gguf-py/gguf/lazy.py +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/gguf-py/gguf/metadata.py +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/gguf-py/gguf/py.typed +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/gguf-py/gguf/quants.py +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/gguf-py/gguf/tensor_mapping.py +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/gguf-py/gguf/utility.py +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/gguf-py/gguf/vocab.py +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/gguf-py/pyproject.toml +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/gguf-py/scripts/__init__.py +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/gguf-py/scripts/gguf_convert_endian.py +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/gguf-py/scripts/gguf_dump.py +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/gguf-py/scripts/gguf_hash.py +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/gguf-py/scripts/gguf_new_metadata.py +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/gguf-py/scripts/gguf_set_metadata.py +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/gguf-py/tests/__init__.py +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/gguf-py/tests/test_metadata.py +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/gguf-py/tests/test_quants.py +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/grammars/README.md +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/grammars/arithmetic.gbnf +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/grammars/c.gbnf +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/grammars/chess.gbnf +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/grammars/japanese.gbnf +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/grammars/json.gbnf +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/grammars/json_arr.gbnf +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/grammars/list.gbnf +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/include/llama.h +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/media/llama-leader.jpeg +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/media/llama0-banner.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/media/llama0-logo.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/media/llama1-banner.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/media/llama1-logo.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/media/matmul.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/media/matmul.svg +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/models/.editorconfig +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/models/ggml-vocab-aquila.gguf +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/models/ggml-vocab-baichuan.gguf +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/models/ggml-vocab-bert-bge.gguf +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/models/ggml-vocab-bert-bge.gguf.inp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/models/ggml-vocab-bert-bge.gguf.out +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/models/ggml-vocab-command-r.gguf +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/models/ggml-vocab-command-r.gguf.inp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/models/ggml-vocab-command-r.gguf.out +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/models/ggml-vocab-deepseek-coder.gguf +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/models/ggml-vocab-deepseek-coder.gguf.inp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/models/ggml-vocab-deepseek-coder.gguf.out +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/models/ggml-vocab-deepseek-llm.gguf +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/models/ggml-vocab-deepseek-llm.gguf.inp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/models/ggml-vocab-deepseek-llm.gguf.out +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/models/ggml-vocab-falcon.gguf +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/models/ggml-vocab-falcon.gguf.inp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/models/ggml-vocab-falcon.gguf.out +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/models/ggml-vocab-gpt-2.gguf +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/models/ggml-vocab-gpt-2.gguf.inp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/models/ggml-vocab-gpt-2.gguf.out +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/models/ggml-vocab-gpt-neox.gguf +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/models/ggml-vocab-llama-bpe.gguf +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/models/ggml-vocab-llama-bpe.gguf.inp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/models/ggml-vocab-llama-bpe.gguf.out +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/models/ggml-vocab-llama-spm.gguf +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/models/ggml-vocab-llama-spm.gguf.inp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/models/ggml-vocab-llama-spm.gguf.out +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/models/ggml-vocab-mpt.gguf +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/models/ggml-vocab-mpt.gguf.inp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/models/ggml-vocab-mpt.gguf.out +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/models/ggml-vocab-phi-3.gguf +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/models/ggml-vocab-phi-3.gguf.inp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/models/ggml-vocab-phi-3.gguf.out +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/models/ggml-vocab-qwen2.gguf +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/models/ggml-vocab-qwen2.gguf.inp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/models/ggml-vocab-qwen2.gguf.out +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/models/ggml-vocab-refact.gguf +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/models/ggml-vocab-refact.gguf.inp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/models/ggml-vocab-refact.gguf.out +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/models/ggml-vocab-starcoder.gguf +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/models/ggml-vocab-starcoder.gguf.inp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/models/ggml-vocab-starcoder.gguf.out +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/mypy.ini +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/pocs/CMakeLists.txt +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/pocs/vdot/CMakeLists.txt +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/pocs/vdot/q8dot.cpp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/pocs/vdot/vdot.cpp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/poetry.lock +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/prompts/LLM-questions.txt +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/prompts/alpaca.txt +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/prompts/assistant.txt +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/prompts/chat-with-baichuan.txt +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/prompts/chat-with-bob.txt +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/prompts/chat-with-qwen.txt +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/prompts/chat-with-vicuna-v0.txt +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/prompts/chat-with-vicuna-v1.txt +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/prompts/chat.txt +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/prompts/dan-modified.txt +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/prompts/dan.txt +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/prompts/mnemonics.txt +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/prompts/parallel-questions.txt +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/prompts/reason-act.txt +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/pyproject.toml +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/pyrightconfig.json +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/requirements/requirements-all.txt +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/requirements/requirements-compare-llama-bench.txt +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/requirements/requirements-convert_hf_to_gguf.txt +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/requirements/requirements-convert_hf_to_gguf_update.txt +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/requirements/requirements-convert_legacy_llama.txt +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/requirements/requirements-convert_llama_ggml_to_gguf.txt +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/requirements/requirements-convert_lora_to_gguf.txt +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/requirements/requirements-pydantic.txt +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/requirements/requirements-test-tokenizer-random.txt +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/requirements.txt +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/scripts/build-info.sh +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/scripts/check-requirements.sh +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/scripts/ci-run.sh +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/scripts/compare-commits.sh +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/scripts/compare-llama-bench.py +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/scripts/debug-test.sh +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/scripts/gen-authors.sh +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/scripts/gen-unicode-data.py +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/scripts/get-flags.mk +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/scripts/get-hellaswag.sh +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/scripts/get-pg.sh +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/scripts/get-wikitext-103.sh +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/scripts/get-wikitext-2.sh +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/scripts/get-winogrande.sh +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/scripts/hf.sh +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/scripts/install-oneapi.bat +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/scripts/pod-llama.sh +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/scripts/qnt-all.sh +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/scripts/run-all-perf.sh +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/scripts/run-all-ppl.sh +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/scripts/run-with-preset.py +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/scripts/server-llm.sh +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/scripts/sync-ggml-am.sh +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/scripts/sync-ggml.last +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/scripts/sync-ggml.sh +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/scripts/verify-checksum-models.py +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/scripts/xxd.cmake +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/spm-headers/ggml-alloc.h +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/spm-headers/ggml-backend.h +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/spm-headers/ggml-metal.h +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/spm-headers/ggml.h +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/spm-headers/llama.h +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/src/CMakeLists.txt +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/src/llama-grammar.cpp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/src/llama-grammar.h +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/src/llama-impl.h +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/src/llama-sampling.cpp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/src/llama-sampling.h +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/src/llama-vocab.cpp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/src/llama-vocab.h +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/src/llama.cpp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/src/unicode-data.cpp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/src/unicode-data.h +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/src/unicode.cpp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/src/unicode.h +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/tests/.gitignore +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/tests/CMakeLists.txt +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/tests/get-model.cpp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/tests/get-model.h +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/tests/run-json-schema-to-grammar.mjs +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/tests/test-autorelease.cpp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/tests/test-backend-ops.cpp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/tests/test-c.c +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/tests/test-chat-template.cpp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/tests/test-double-float.cpp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/tests/test-grad0.cpp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/tests/test-grammar-integration.cpp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/tests/test-grammar-parser.cpp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/tests/test-json-schema-to-grammar.cpp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/tests/test-llama-grammar.cpp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/tests/test-lora-conversion-inference.sh +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/tests/test-model-load-cancel.cpp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/tests/test-opt.cpp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/tests/test-quantize-fns.cpp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/tests/test-quantize-perf.cpp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/tests/test-rope.cpp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/tests/test-sampling.cpp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/tests/test-tokenizer-0.cpp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/tests/test-tokenizer-0.py +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/tests/test-tokenizer-0.sh +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/tests/test-tokenizer-1-bpe.cpp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/tests/test-tokenizer-1-spm.cpp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/llama.cpp/tests/test-tokenizer-random.py +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/.clang-format +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/.dockerignore +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/.git +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/.github/workflows/build.yml +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/.gitignore +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/.gitmodules +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/CMakeLists.txt +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/Dockerfile +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/LICENSE +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/README.md +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/assets/a lovely cat.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/assets/cat_with_sd_cpp_20184.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/assets/cat_with_sd_cpp_42.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/assets/control.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/assets/control_2.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/assets/control_3.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/assets/f16.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/assets/f32.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/assets/flux/flux1-dev-q2_k.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/assets/flux/flux1-dev-q3_k.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/assets/flux/flux1-dev-q4_0.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/assets/flux/flux1-dev-q4_k.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/assets/flux/flux1-dev-q8_0 with lora.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/assets/flux/flux1-dev-q8_0.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/assets/flux/flux1-schnell-q8_0.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/assets/img2img_output.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/assets/photomaker_examples/lenna_woman/lenna.jpg +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/assets/photomaker_examples/newton_man/newton_0.jpg +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/assets/photomaker_examples/newton_man/newton_1.jpg +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/assets/photomaker_examples/newton_man/newton_2.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/assets/photomaker_examples/newton_man/newton_3.jpg +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/assets/photomaker_examples/scarletthead_woman/scarlett_0.jpg +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/assets/photomaker_examples/scarletthead_woman/scarlett_1.jpg +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/assets/photomaker_examples/scarletthead_woman/scarlett_2.jpg +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/assets/photomaker_examples/scarletthead_woman/scarlett_3.jpg +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/assets/photomaker_examples/yangmi_woman/yangmi_1.jpg +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/assets/photomaker_examples/yangmi_woman/yangmi_2.jpeg +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/assets/photomaker_examples/yangmi_woman/yangmi_3.jpg +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/assets/photomaker_examples/yangmi_woman/yangmi_4.jpg +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/assets/photomaker_examples/yangmi_woman/yangmi_5.jpg +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/assets/photomaker_examples/yangmi_woman/yangmi_6.jpg +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/assets/q4_0.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/assets/q4_1.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/assets/q5_0.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/assets/q5_1.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/assets/q8_0.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/assets/sycl_sd3_output.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/assets/with_lcm.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/assets/without_lcm.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/clip.hpp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/common.hpp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/conditioner.hpp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/control.hpp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/denoiser.hpp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/diffusion_model.hpp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/docs/docker.md +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/docs/esrgan.md +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/docs/flux.md +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/docs/hipBLAS_on_Windows.md +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/docs/lcm.md +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/docs/lora.md +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/docs/photo_maker.md +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/docs/quantization_and_gguf.md +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/docs/taesd.md +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/esrgan.hpp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/examples/CMakeLists.txt +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/examples/cli/CMakeLists.txt +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/examples/cli/main.cpp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/flux.hpp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/format-code.sh +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/.editorconfig +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/.git +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/.github/workflows/ci.yml +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/.gitignore +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/AUTHORS +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/CMakeLists.txt +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/LICENSE +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/Package.swift +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/README.md +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/build.zig +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/ci/run.sh +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/cmake/BuildTypes.cmake +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/cmake/FindSIMD.cmake +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/cmake/GitVars.cmake +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/docs/gguf.md +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/docs/logo/ggml-logo-inverted.jpg +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/docs/logo/ggml-logo-inverted.svg +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/docs/logo/ggml-logo-transparent-inverted.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/docs/logo/ggml-logo-transparent.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/docs/logo/ggml-logo.jpg +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/docs/logo/ggml-logo.svg +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/CMakeLists.txt +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/common-ggml.cpp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/common-ggml.h +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/common.cpp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/common.h +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/dr_wav.h +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/gpt-2/CMakeLists.txt +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/gpt-2/README.md +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/gpt-2/convert-cerebras-to-ggml.py +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/gpt-2/convert-ckpt-to-ggml.py +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/gpt-2/convert-h5-to-ggml.py +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/gpt-2/download-ggml-model.sh +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/gpt-2/download-model.sh +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/gpt-2/main-alloc.cpp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/gpt-2/main-backend.cpp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/gpt-2/main-batched.cpp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/gpt-2/main-ctx.cpp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/gpt-2/main-sched.cpp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/gpt-2/quantize.cpp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/gpt-j/CMakeLists.txt +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/gpt-j/README.md +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/gpt-j/convert-h5-to-ggml.py +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/gpt-j/download-ggml-model.sh +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/gpt-j/download-model.sh +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/gpt-j/main.cpp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/gpt-j/quantize.cpp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/magika/CMakeLists.txt +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/magika/README.md +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/magika/convert.py +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/magika/main.cpp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/mnist/.gitignore +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/mnist/CMakeLists.txt +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/mnist/README.md +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/mnist/mnist-common.cpp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/mnist/mnist-common.h +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/mnist/mnist-eval.cpp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/mnist/mnist-train-cnn.py +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/mnist/mnist-train-fc.py +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/mnist/mnist-train.cpp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/mnist/web/.gitignore +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/mnist/web/index.html +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/prompts/dolly-v2.txt +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/prompts/gpt-2-chinese.txt +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/prompts/gpt-2.txt +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/prompts/gpt-j.txt +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/prompts/gpt-neox-japanese.txt +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/prompts/gpt-neox.txt +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/prompts/polyglot-ko.txt +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/prompts/replit.txt +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/prompts/starcoder.txt +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/prompts/test-cases.txt +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/prompts/tokenize_huggingface.py +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/prompts/whisper.txt +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/python/README.md +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/python/api.h +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/python/example_add_quant.py +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/python/example_test_all_quants.py +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/python/ggml/__init__.py +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/python/ggml/__init__.pyi +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/python/ggml/cffi.py +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/python/ggml/ffi/__init__.pyi +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/python/ggml/utils.py +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/python/regenerate.py +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/python/stubs.py +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/python/test_tensor.py +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/sam/CMakeLists.txt +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/sam/README.md +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/sam/convert-pth-to-ggml.py +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/sam/example.jpg +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/sam/main.cpp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/simple/CMakeLists.txt +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/simple/README.md +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/simple/simple-backend.cpp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/simple/simple-ctx.cpp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/stb_image.h +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/stb_image_write.h +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/CMakeLists.txt +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/README.md +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/convert-yolov3-tiny.py +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/coco.names +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/100_0.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/100_1.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/100_2.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/100_3.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/100_4.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/100_5.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/100_6.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/100_7.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/101_0.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/101_1.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/101_2.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/101_3.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/101_4.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/101_5.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/101_6.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/101_7.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/102_0.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/102_1.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/102_2.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/102_3.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/102_4.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/102_5.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/102_6.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/102_7.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/103_0.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/103_1.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/103_2.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/103_3.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/103_4.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/103_5.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/103_6.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/103_7.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/104_0.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/104_1.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/104_2.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/104_3.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/104_4.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/104_5.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/104_6.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/104_7.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/105_0.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/105_1.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/105_2.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/105_3.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/105_4.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/105_5.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/105_6.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/105_7.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/106_0.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/106_1.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/106_2.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/106_3.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/106_4.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/106_5.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/106_6.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/106_7.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/107_0.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/107_1.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/107_2.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/107_3.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/107_4.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/107_5.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/107_6.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/107_7.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/108_0.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/108_1.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/108_2.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/108_3.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/108_4.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/108_5.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/108_6.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/108_7.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/109_0.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/109_1.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/109_2.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/109_3.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/109_4.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/109_5.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/109_6.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/109_7.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/110_0.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/110_1.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/110_2.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/110_3.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/110_4.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/110_5.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/110_6.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/110_7.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/111_0.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/111_1.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/111_2.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/111_3.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/111_4.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/111_5.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/111_6.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/111_7.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/112_0.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/112_1.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/112_2.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/112_3.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/112_4.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/112_5.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/112_6.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/112_7.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/113_0.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/113_1.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/113_2.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/113_3.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/113_4.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/113_5.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/113_6.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/113_7.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/114_0.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/114_1.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/114_2.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/114_3.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/114_4.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/114_5.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/114_6.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/114_7.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/115_0.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/115_1.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/115_2.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/115_3.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/115_4.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/115_5.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/115_6.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/115_7.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/116_0.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/116_1.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/116_2.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/116_3.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/116_4.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/116_5.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/116_6.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/116_7.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/117_0.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/117_1.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/117_2.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/117_3.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/117_4.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/117_5.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/117_6.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/117_7.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/118_0.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/118_1.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/118_2.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/118_3.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/118_4.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/118_5.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/118_6.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/118_7.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/119_0.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/119_1.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/119_2.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/119_3.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/119_4.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/119_5.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/119_6.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/119_7.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/120_0.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/120_1.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/120_2.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/120_3.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/120_4.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/120_5.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/120_6.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/120_7.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/121_0.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/121_1.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/121_2.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/121_3.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/121_4.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/121_5.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/121_6.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/121_7.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/122_0.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/122_1.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/122_2.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/122_3.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/122_4.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/122_5.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/122_6.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/122_7.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/123_0.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/123_1.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/123_2.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/123_3.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/123_4.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/123_5.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/123_6.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/123_7.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/124_0.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/124_1.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/124_2.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/124_3.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/124_4.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/124_5.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/124_6.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/124_7.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/125_0.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/125_1.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/125_2.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/125_3.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/125_4.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/125_5.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/125_6.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/125_7.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/126_0.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/126_1.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/126_2.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/126_3.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/126_4.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/126_5.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/126_6.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/126_7.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/32_0.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/32_1.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/32_2.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/32_3.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/32_4.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/32_5.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/32_6.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/32_7.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/33_0.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/33_1.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/33_2.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/33_3.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/33_4.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/33_5.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/33_6.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/33_7.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/34_0.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/34_1.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/34_2.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/34_3.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/34_4.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/34_5.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/34_6.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/34_7.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/35_0.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/35_1.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/35_2.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/35_3.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/35_4.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/35_5.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/35_6.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/35_7.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/36_0.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/36_1.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/36_2.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/36_3.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/36_4.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/36_5.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/36_6.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/36_7.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/37_0.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/37_1.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/37_2.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/37_3.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/37_4.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/37_5.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/37_6.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/37_7.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/38_0.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/38_1.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/38_2.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/38_3.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/38_4.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/38_5.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/38_6.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/38_7.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/39_0.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/39_1.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/39_2.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/39_3.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/39_4.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/39_5.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/39_6.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/39_7.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/40_0.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/40_1.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/40_2.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/40_3.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/40_4.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/40_5.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/40_6.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/40_7.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/41_0.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/41_1.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/41_2.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/41_3.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/41_4.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/41_5.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/41_6.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/41_7.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/42_0.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/42_1.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/42_2.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/42_3.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/42_4.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/42_5.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/42_6.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/42_7.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/43_0.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/43_1.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/43_2.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/43_3.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/43_4.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/43_5.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/43_6.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/43_7.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/44_0.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/44_1.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/44_2.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/44_3.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/44_4.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/44_5.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/44_6.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/44_7.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/45_0.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/45_1.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/45_2.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/45_3.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/45_4.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/45_5.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/45_6.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/45_7.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/46_0.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/46_1.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/46_2.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/46_3.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/46_4.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/46_5.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/46_6.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/46_7.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/47_0.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/47_1.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/47_2.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/47_3.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/47_4.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/47_5.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/47_6.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/47_7.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/48_0.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/48_1.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/48_2.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/48_3.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/48_4.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/48_5.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/48_6.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/48_7.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/49_0.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/49_1.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/49_2.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/49_3.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/49_4.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/49_5.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/49_6.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/49_7.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/50_0.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/50_1.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/50_2.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/50_3.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/50_4.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/50_5.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/50_6.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/50_7.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/51_0.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/51_1.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/51_2.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/51_3.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/51_4.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/51_5.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/51_6.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/51_7.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/52_0.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/52_1.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/52_2.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/52_3.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/52_4.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/52_5.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/52_6.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/52_7.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/53_0.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/53_1.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/53_2.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/53_3.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/53_4.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/53_5.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/53_6.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/53_7.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/54_0.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/54_1.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/54_2.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/54_3.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/54_4.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/54_5.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/54_6.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/54_7.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/55_0.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/55_1.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/55_2.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/55_3.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/55_4.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/55_5.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/55_6.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/55_7.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/56_0.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/56_1.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/56_2.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/56_3.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/56_4.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/56_5.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/56_6.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/56_7.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/57_0.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/57_1.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/57_2.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/57_3.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/57_4.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/57_5.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/57_6.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/57_7.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/58_0.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/58_1.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/58_2.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/58_3.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/58_4.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/58_5.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/58_6.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/58_7.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/59_0.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/59_1.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/59_2.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/59_3.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/59_4.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/59_5.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/59_6.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/59_7.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/60_0.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/60_1.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/60_2.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/60_3.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/60_4.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/60_5.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/60_6.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/60_7.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/61_0.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/61_1.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/61_2.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/61_3.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/61_4.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/61_5.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/61_6.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/61_7.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/62_0.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/62_1.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/62_2.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/62_3.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/62_4.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/62_5.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/62_6.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/62_7.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/63_0.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/63_1.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/63_2.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/63_3.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/63_4.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/63_5.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/63_6.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/63_7.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/64_0.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/64_1.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/64_2.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/64_3.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/64_4.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/64_5.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/64_6.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/64_7.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/65_0.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/65_1.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/65_2.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/65_3.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/65_4.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/65_5.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/65_6.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/65_7.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/66_0.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/66_1.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/66_2.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/66_3.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/66_4.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/66_5.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/66_6.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/66_7.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/67_0.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/67_1.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/67_2.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/67_3.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/67_4.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/67_5.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/67_6.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/67_7.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/68_0.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/68_1.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/68_2.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/68_3.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/68_4.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/68_5.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/68_6.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/68_7.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/69_0.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/69_1.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/69_2.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/69_3.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/69_4.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/69_5.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/69_6.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/69_7.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/70_0.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/70_1.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/70_2.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/70_3.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/70_4.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/70_5.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/70_6.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/70_7.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/71_0.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/71_1.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/71_2.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/71_3.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/71_4.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/71_5.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/71_6.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/71_7.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/72_0.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/72_1.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/72_2.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/72_3.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/72_4.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/72_5.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/72_6.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/72_7.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/73_0.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/73_1.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/73_2.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/73_3.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/73_4.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/73_5.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/73_6.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/73_7.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/74_0.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/74_1.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/74_2.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/74_3.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/74_4.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/74_5.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/74_6.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/74_7.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/75_0.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/75_1.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/75_2.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/75_3.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/75_4.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/75_5.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/75_6.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/75_7.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/76_0.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/76_1.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/76_2.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/76_3.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/76_4.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/76_5.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/76_6.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/76_7.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/77_0.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/77_1.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/77_2.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/77_3.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/77_4.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/77_5.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/77_6.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/77_7.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/78_0.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/78_1.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/78_2.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/78_3.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/78_4.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/78_5.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/78_6.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/78_7.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/79_0.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/79_1.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/79_2.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/79_3.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/79_4.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/79_5.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/79_6.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/79_7.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/80_0.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/80_1.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/80_2.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/80_3.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/80_4.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/80_5.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/80_6.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/80_7.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/81_0.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/81_1.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/81_2.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/81_3.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/81_4.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/81_5.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/81_6.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/81_7.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/82_0.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/82_1.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/82_2.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/82_3.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/82_4.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/82_5.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/82_6.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/82_7.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/83_0.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/83_1.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/83_2.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/83_3.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/83_4.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/83_5.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/83_6.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/83_7.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/84_0.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/84_1.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/84_2.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/84_3.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/84_4.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/84_5.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/84_6.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/84_7.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/85_0.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/85_1.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/85_2.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/85_3.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/85_4.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/85_5.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/85_6.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/85_7.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/86_0.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/86_1.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/86_2.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/86_3.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/86_4.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/86_5.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/86_6.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/86_7.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/87_0.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/87_1.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/87_2.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/87_3.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/87_4.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/87_5.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/87_6.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/87_7.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/88_0.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/88_1.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/88_2.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/88_3.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/88_4.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/88_5.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/88_6.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/88_7.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/89_0.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/89_1.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/89_2.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/89_3.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/89_4.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/89_5.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/89_6.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/89_7.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/90_0.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/90_1.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/90_2.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/90_3.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/90_4.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/90_5.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/90_6.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/90_7.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/91_0.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/91_1.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/91_2.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/91_3.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/91_4.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/91_5.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/91_6.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/91_7.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/92_0.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/92_1.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/92_2.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/92_3.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/92_4.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/92_5.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/92_6.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/92_7.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/93_0.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/93_1.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/93_2.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/93_3.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/93_4.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/93_5.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/93_6.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/93_7.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/94_0.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/94_1.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/94_2.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/94_3.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/94_4.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/94_5.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/94_6.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/94_7.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/95_0.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/95_1.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/95_2.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/95_3.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/95_4.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/95_5.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/95_6.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/95_7.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/96_0.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/96_1.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/96_2.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/96_3.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/96_4.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/96_5.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/96_6.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/96_7.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/97_0.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/97_1.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/97_2.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/97_3.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/97_4.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/97_5.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/97_6.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/97_7.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/98_0.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/98_1.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/98_2.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/98_3.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/98_4.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/98_5.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/98_6.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/98_7.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/99_0.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/99_1.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/99_2.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/99_3.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/99_4.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/99_5.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/99_6.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/99_7.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/yolo-image.cpp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/yolo-image.h +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/examples/yolo/yolov3-tiny.cpp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/ggml/include/ggml-cann.h +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/ggml/src/ggml-aarch64.c +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/ggml/src/ggml-aarch64.h +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/ggml/src/ggml-cann.cpp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/ggml.pc.in +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/include/ggml-alloc.h +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/include/ggml-backend.h +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/include/ggml-blas.h +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/include/ggml-cann.h +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/include/ggml-cuda.h +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/include/ggml-kompute.h +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/include/ggml-metal.h +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/include/ggml-rpc.h +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/include/ggml-sycl.h +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/include/ggml-vulkan.h +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/include/ggml.h +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/requirements.txt +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/scripts/gen-authors.sh +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/scripts/sync-llama-am.sh +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/scripts/sync-llama.last +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/scripts/sync-llama.sh +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/scripts/sync-whisper-am.sh +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/scripts/sync-whisper.last +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/scripts/sync-whisper.sh +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/spm-headers/ggml-alloc.h +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/spm-headers/ggml-backend.h +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/spm-headers/ggml-metal.h +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/spm-headers/ggml.h +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/spm-headers/module.modulemap +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/CMakeLists.txt +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-aarch64.c +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-aarch64.h +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-alloc.c +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-backend-impl.h +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-backend.c +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-blas.cpp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-cann/Doxyfile +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-cann/acl_tensor.cpp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-cann/acl_tensor.h +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-cann/aclnn_ops.cpp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-cann/aclnn_ops.h +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-cann/common.h +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-cann/kernels/CMakeLists.txt +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-cann/kernels/ascendc_kernels.h +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-cann/kernels/dup.cpp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-cann/kernels/get_row_f16.cpp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-cann/kernels/get_row_f32.cpp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-cann/kernels/get_row_q4_0.cpp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-cann/kernels/get_row_q8_0.cpp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-cann/kernels/quantize_f16_q8_0.cpp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-cann/kernels/quantize_f32_q8_0.cpp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-cann/kernels/quantize_float_to_q4_0.cpp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-cann.cpp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-common.h +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/acc.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/acc.cuh +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/arange.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/arange.cuh +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/argsort.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/argsort.cuh +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/binbcast.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/binbcast.cuh +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/clamp.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/clamp.cuh +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/common.cuh +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/concat.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/concat.cuh +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/conv-transpose-1d.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/conv-transpose-1d.cuh +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/convert.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/convert.cuh +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/cpy.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/cpy.cuh +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/cross-entropy-loss.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/cross-entropy-loss.cuh +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/dequantize.cuh +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/diagmask.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/diagmask.cuh +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/dmmv.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/dmmv.cuh +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/fattn-common.cuh +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/fattn-tile-f16.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/fattn-tile-f16.cuh +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/fattn-tile-f32.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/fattn-tile-f32.cuh +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/fattn-vec-f16.cuh +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/fattn-vec-f32.cuh +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/fattn-wmma-f16.cuh +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/fattn.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/fattn.cuh +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/getrows.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/getrows.cuh +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/im2col.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/im2col.cuh +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/mma.cuh +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/mmq.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/mmq.cuh +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/mmvq.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/mmvq.cuh +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/norm.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/norm.cuh +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/pad.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/pad.cuh +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/pool2d.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/pool2d.cuh +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/quantize.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/quantize.cuh +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/rope.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/rope.cuh +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/scale.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/scale.cuh +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/softmax.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/softmax.cuh +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/sumrows.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/sumrows.cuh +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f16-instance-hs128-f16-f16.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f16-instance-hs128-f16-q4_0.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f16-instance-hs128-f16-q4_1.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f16-instance-hs128-f16-q5_0.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f16-instance-hs128-f16-q5_1.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f16-instance-hs128-f16-q8_0.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f16-instance-hs128-q4_0-f16.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f16-instance-hs128-q4_0-q4_0.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f16-instance-hs128-q4_0-q4_1.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f16-instance-hs128-q4_0-q5_0.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f16-instance-hs128-q4_0-q5_1.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f16-instance-hs128-q4_0-q8_0.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f16-instance-hs128-q4_1-f16.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f16-instance-hs128-q4_1-q4_0.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f16-instance-hs128-q4_1-q4_1.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f16-instance-hs128-q4_1-q5_0.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f16-instance-hs128-q4_1-q5_1.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f16-instance-hs128-q4_1-q8_0.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f16-instance-hs128-q5_0-f16.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f16-instance-hs128-q5_0-q4_0.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f16-instance-hs128-q5_0-q4_1.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f16-instance-hs128-q5_0-q5_0.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f16-instance-hs128-q5_0-q5_1.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f16-instance-hs128-q5_0-q8_0.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f16-instance-hs128-q5_1-f16.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f16-instance-hs128-q5_1-q4_0.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f16-instance-hs128-q5_1-q4_1.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f16-instance-hs128-q5_1-q5_0.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f16-instance-hs128-q5_1-q5_1.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f16-instance-hs128-q5_1-q8_0.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f16-instance-hs128-q8_0-f16.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f16-instance-hs128-q8_0-q4_0.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f16-instance-hs128-q8_0-q4_1.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f16-instance-hs128-q8_0-q5_0.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f16-instance-hs128-q8_0-q5_1.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f16-instance-hs128-q8_0-q8_0.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f16-instance-hs256-f16-f16.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f16-instance-hs64-f16-f16.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f16-instance-hs64-f16-q4_0.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f16-instance-hs64-f16-q4_1.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f16-instance-hs64-f16-q5_0.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f16-instance-hs64-f16-q5_1.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f16-instance-hs64-f16-q8_0.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f32-instance-hs128-f16-f16.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f32-instance-hs128-f16-q4_0.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f32-instance-hs128-f16-q4_1.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f32-instance-hs128-f16-q5_0.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f32-instance-hs128-f16-q5_1.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f32-instance-hs128-f16-q8_0.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f32-instance-hs128-q4_0-f16.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f32-instance-hs128-q4_0-q4_0.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f32-instance-hs128-q4_0-q4_1.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f32-instance-hs128-q4_0-q5_0.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f32-instance-hs128-q4_0-q5_1.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f32-instance-hs128-q4_0-q8_0.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f32-instance-hs128-q4_1-f16.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f32-instance-hs128-q4_1-q4_0.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f32-instance-hs128-q4_1-q4_1.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f32-instance-hs128-q4_1-q5_0.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f32-instance-hs128-q4_1-q5_1.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f32-instance-hs128-q4_1-q8_0.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f32-instance-hs128-q5_0-f16.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f32-instance-hs128-q5_0-q4_0.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f32-instance-hs128-q5_0-q4_1.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f32-instance-hs128-q5_0-q5_0.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f32-instance-hs128-q5_0-q5_1.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f32-instance-hs128-q5_0-q8_0.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f32-instance-hs128-q5_1-f16.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f32-instance-hs128-q5_1-q4_0.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f32-instance-hs128-q5_1-q4_1.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f32-instance-hs128-q5_1-q5_0.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f32-instance-hs128-q5_1-q5_1.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f32-instance-hs128-q5_1-q8_0.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f32-instance-hs128-q8_0-f16.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f32-instance-hs128-q8_0-q4_0.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f32-instance-hs128-q8_0-q4_1.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f32-instance-hs128-q8_0-q5_0.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f32-instance-hs128-q8_0-q5_1.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f32-instance-hs128-q8_0-q8_0.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f32-instance-hs256-f16-f16.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f32-instance-hs64-f16-f16.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f32-instance-hs64-f16-q4_0.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f32-instance-hs64-f16-q4_1.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f32-instance-hs64-f16-q5_0.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f32-instance-hs64-f16-q5_1.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f32-instance-hs64-f16-q8_0.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/template-instances/fattn-wmma-f16-instance-kqfloat-cpb16.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/template-instances/fattn-wmma-f16-instance-kqfloat-cpb32.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/template-instances/fattn-wmma-f16-instance-kqhalf-cpb16.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/template-instances/fattn-wmma-f16-instance-kqhalf-cpb32.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/template-instances/fattn-wmma-f16-instance-kqhalf-cpb8.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/template-instances/generate_cu_files.py +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/template-instances/mmq-instance-iq1_s.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/template-instances/mmq-instance-iq2_s.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/template-instances/mmq-instance-iq2_xs.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/template-instances/mmq-instance-iq2_xxs.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/template-instances/mmq-instance-iq3_s.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/template-instances/mmq-instance-iq3_xxs.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/template-instances/mmq-instance-iq4_nl.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/template-instances/mmq-instance-iq4_xs.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/template-instances/mmq-instance-q2_k.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/template-instances/mmq-instance-q3_k.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/template-instances/mmq-instance-q4_0.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/template-instances/mmq-instance-q4_1.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/template-instances/mmq-instance-q4_k.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/template-instances/mmq-instance-q5_0.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/template-instances/mmq-instance-q5_1.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/template-instances/mmq-instance-q5_k.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/template-instances/mmq-instance-q6_k.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/template-instances/mmq-instance-q8_0.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/tsembd.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/tsembd.cuh +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/unary.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/unary.cuh +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/upscale.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/upscale.cuh +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/vecdotq.cuh +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/vendors/cuda.h +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/vendors/hip.h +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/vendors/musa.h +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda.cu +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-impl.h +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-kompute.cpp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-metal.m +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-metal.metal +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-quants.c +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-quants.h +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-rpc.cpp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-sycl/backend.hpp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-sycl/common.cpp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-sycl/common.hpp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-sycl/concat.cpp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-sycl/concat.hpp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-sycl/conv.cpp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-sycl/conv.hpp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-sycl/convert.cpp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-sycl/convert.hpp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-sycl/dequantize.hpp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-sycl/dmmv.cpp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-sycl/dmmv.hpp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-sycl/dpct/helper.hpp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-sycl/gemm.hpp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-sycl/im2col.cpp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-sycl/im2col.hpp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-sycl/mmq.cpp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-sycl/mmq.hpp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-sycl/mmvq.cpp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-sycl/mmvq.hpp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-sycl/norm.cpp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-sycl/norm.hpp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-sycl/presets.hpp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-sycl/rope.cpp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-sycl/rope.hpp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-sycl/softmax.cpp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-sycl/softmax.hpp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-sycl/tsembd.cpp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-sycl/tsembd.hpp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-sycl/vecdotq.hpp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-sycl.cpp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml-vulkan.cpp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/ggml.c +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/vulkan-shaders/CMakeLists.txt +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/vulkan-shaders/acc.comp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/vulkan-shaders/add.comp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/vulkan-shaders/argsort.comp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/vulkan-shaders/clamp.comp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/vulkan-shaders/concat.comp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/vulkan-shaders/copy.comp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/vulkan-shaders/cos.comp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/vulkan-shaders/dequant_f32.comp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/vulkan-shaders/dequant_funcs.comp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/vulkan-shaders/dequant_head.comp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/vulkan-shaders/dequant_iq4_nl.comp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/vulkan-shaders/dequant_q2_k.comp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/vulkan-shaders/dequant_q3_k.comp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/vulkan-shaders/dequant_q4_0.comp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/vulkan-shaders/dequant_q4_1.comp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/vulkan-shaders/dequant_q4_k.comp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/vulkan-shaders/dequant_q5_0.comp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/vulkan-shaders/dequant_q5_1.comp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/vulkan-shaders/dequant_q5_k.comp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/vulkan-shaders/dequant_q6_k.comp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/vulkan-shaders/dequant_q8_0.comp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/vulkan-shaders/diag_mask_inf.comp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/vulkan-shaders/div.comp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/vulkan-shaders/gelu.comp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/vulkan-shaders/gelu_quick.comp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/vulkan-shaders/generic_binary_head.comp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/vulkan-shaders/generic_head.comp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/vulkan-shaders/generic_unary_head.comp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/vulkan-shaders/get_rows.comp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/vulkan-shaders/get_rows_quant.comp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/vulkan-shaders/group_norm.comp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/vulkan-shaders/im2col.comp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/vulkan-shaders/leaky_relu.comp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/vulkan-shaders/mul.comp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/vulkan-shaders/mul_mat_split_k_reduce.comp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/vulkan-shaders/mul_mat_vec.comp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/vulkan-shaders/mul_mat_vec_base.comp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/vulkan-shaders/mul_mat_vec_nc.comp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/vulkan-shaders/mul_mat_vec_p021.comp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/vulkan-shaders/mul_mat_vec_q2_k.comp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/vulkan-shaders/mul_mat_vec_q3_k.comp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/vulkan-shaders/mul_mat_vec_q4_k.comp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/vulkan-shaders/mul_mat_vec_q5_k.comp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/vulkan-shaders/mul_mat_vec_q6_k.comp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/vulkan-shaders/mul_mm.comp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/vulkan-shaders/norm.comp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/vulkan-shaders/pad.comp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/vulkan-shaders/relu.comp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/vulkan-shaders/repeat.comp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/vulkan-shaders/rms_norm.comp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/vulkan-shaders/rope_head.comp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/vulkan-shaders/rope_neox.comp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/vulkan-shaders/rope_norm.comp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/vulkan-shaders/scale.comp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/vulkan-shaders/silu.comp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/vulkan-shaders/sin.comp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/vulkan-shaders/soft_max.comp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/vulkan-shaders/square.comp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/vulkan-shaders/sum_rows.comp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/vulkan-shaders/tanh.comp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/vulkan-shaders/timestep_embedding.comp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/vulkan-shaders/types.comp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/vulkan-shaders/upscale.comp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/src/vulkan-shaders/vulkan-shaders-gen.cpp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/tests/CMakeLists.txt +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/tests/test-arange.cpp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/tests/test-backend-buffer.cpp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/tests/test-backend-ops.cpp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/tests/test-blas0.c +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/tests/test-cont.c +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/tests/test-conv-transpose-1d.cpp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/tests/test-conv-transpose.c +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/tests/test-conv1d.cpp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/tests/test-conv2d.cpp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/tests/test-customop.c +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/tests/test-dup.c +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/tests/test-grad0.cpp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/tests/test-mul-mat.cpp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/tests/test-mul-mat0.c +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/tests/test-mul-mat1.c +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/tests/test-mul-mat2.c +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/tests/test-opt.cpp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/tests/test-pool.c +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/tests/test-quantize-fns.cpp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/tests/test-quantize-perf.cpp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/tests/test-rel-pos.c +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/tests/test-svd0.c +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/tests/test-timestep_embedding.cpp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/tests/test-vec0.c +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/tests/test-vec1.c +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/tests/test-vec2.c +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/tests/test0.c +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/tests/test0.zig +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/tests/test1.c +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/tests/test1.zig +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/tests/test2.c +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/tests/test2.zig +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/tests/test3.c +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml/tests/test3.zig +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/ggml_extend.hpp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/gits_noise.inl +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/lora.hpp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/mmdit.hpp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/model.cpp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/model.h +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/pmid.hpp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/preprocessing.hpp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/rng.hpp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/rng_philox.hpp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/stable-diffusion.cpp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/stable-diffusion.h +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/t5.hpp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/tae.hpp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/thirdparty/.clang-format +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/thirdparty/CMakeLists.txt +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/thirdparty/LICENSE.darts_clone.txt +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/thirdparty/README.md +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/thirdparty/darts.h +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/thirdparty/json.hpp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/thirdparty/miniz.h +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/thirdparty/stb_image.h +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/thirdparty/stb_image_resize.h +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/thirdparty/stb_image_write.h +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/thirdparty/zip.c +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/thirdparty/zip.h +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/unet.hpp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/upscaler.cpp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/util.cpp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/util.h +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/vae.hpp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/dependency/stable-diffusion.cpp/vocab.hpp +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/docs/.media/error.jpeg +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/docs/README.md +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/examples/README.md +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/examples/ai_soulmate/README.md +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/examples/ai_soulmate/bark_requirements.txt +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/examples/ai_soulmate/bark_voice_out/app.py +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/examples/ai_soulmate/bark_voice_out/utils/gen_avatar.py +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/examples/ai_soulmate/bark_voice_out/utils/gen_response.py +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/examples/ai_soulmate/bark_voice_out/utils/initialize.py +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/examples/ai_soulmate/bark_voice_out/utils/transcribe.py +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/examples/ai_soulmate/nexalogo.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/examples/ai_soulmate/openai_requirements.txt +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/examples/ai_soulmate/openai_voice_out/app.py +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/examples/ai_soulmate/openai_voice_out/utils/gen_avatar.py +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/examples/ai_soulmate/openai_voice_out/utils/gen_response.py +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/examples/ai_soulmate/openai_voice_out/utils/initialize.py +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/examples/ai_soulmate/openai_voice_out/utils/transcribe.py +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/examples/disaster_assistant/Readme.md +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/examples/disaster_assistant/app.py +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/examples/disaster_assistant/example_output.json +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/examples/disaster_assistant/requirements.txt +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/examples/disaster_assistant/utils/avatar.jpg +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/examples/disaster_assistant/utils/gen_response.py +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/examples/disaster_assistant/utils/initialize.py +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/examples/disaster_assistant/utils/json_cleaner.py +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/examples/disaster_assistant/utils/json_cleaner_update.py +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/examples/disaster_assistant/utils/previous_calls.py +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/examples/disaster_assistant/utils/schemas.py +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/examples/disaster_assistant/utils/state_manager.py +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/examples/disaster_assistant/utils/transcribe.py +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/examples/disaster_assistant/utils/validate_json.py +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/examples/disaster_assistant/utils/victim_json_template_flat.json +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/examples/disaster_assistant/victim_json_template.json +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/examples/disaster_assistant/victim_json_template_flat.json +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/examples/financial-advisor/README.md +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/examples/financial-advisor/app.py +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/examples/financial-advisor/assets/fake_bank_statements/bank_statement_feb.pdf +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/examples/financial-advisor/assets/fake_bank_statements/bank_statement_mar.pdf +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/examples/financial-advisor/assets/fake_bank_statements/bank_tatement_jan.pdf +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/examples/financial-advisor/requirements.txt +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/examples/financial-advisor/utils/financial_analyzer.py +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/examples/local-nsfw-model-router/README.md +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/examples/local-nsfw-model-router/ai_avatar.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/examples/local-nsfw-model-router/app.py +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/examples/local-nsfw-model-router/nexalogo.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/examples/local-nsfw-model-router/preview_model_router.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/examples/local-nsfw-model-router/requirements.txt +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/examples/local-nsfw-model-router/utils/customize.py +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/examples/local-nsfw-model-router/utils/gen_response.py +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/examples/local-nsfw-model-router/utils/initialize.py +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/examples/local_file_organization/LICENSE +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/examples/local_file_organization/README.md +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/examples/local_file_organization/data_processing_common.py +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/examples/local_file_organization/file_utils.py +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/examples/local_file_organization/image_data_processing.py +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/examples/local_file_organization/main.py +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/examples/local_file_organization/output_filter.py +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/examples/local_file_organization/requirements.txt +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/examples/local_file_organization/sample_data/1.xlsx +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/examples/local_file_organization/sample_data/12222_777.docx +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/examples/local_file_organization/sample_data/IMG_0967.PNG +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/examples/local_file_organization/sample_data/c8fed35720671596882b0c6a2ad9586d.gif +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/examples/local_file_organization/sample_data/go_bruin.pptx +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/examples/local_file_organization/sample_data/logo.png +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/examples/local_file_organization/sample_data/paper_1col.pdf +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/examples/local_file_organization/sample_data/sub_dir1/1111_63.csv +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/examples/local_file_organization/sample_data/sub_dir1/animal.jpg +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/examples/local_file_organization/sample_data/sub_dir2/BS.txt +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/examples/local_file_organization/sample_data/text_files/ccc.md +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/examples/local_file_organization/text_data_processing.py +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/examples/voice_transcription/README.md +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/examples/voice_transcription/app.py +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/examples/voice_transcription/requirements.txt +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/examples/voice_transcription/utils/segmenter.py +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/examples/voice_transcription/utils/transcriber.py +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/nexa/cli/__init__.py +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/nexa/constants.py +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/nexa/eval/__init__.py +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/nexa/eval/benchmark_tasks/.gitignore +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/nexa/eval/benchmark_tasks/__init__.py +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/nexa/eval/benchmark_tasks/do-not-answer/README.md +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/nexa/eval/benchmark_tasks/do-not-answer/do-not-answer.yaml +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/nexa/eval/benchmark_tasks/do-not-answer/utils.py +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/nexa/eval/benchmark_tasks/gpqa/README.md +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/nexa/eval/benchmark_tasks/gpqa/_template_yaml +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/nexa/eval/benchmark_tasks/gpqa/gpqa.yaml +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/nexa/eval/benchmark_tasks/gpqa/gpqa_diamond_zeroshot.yaml +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/nexa/eval/benchmark_tasks/gpqa/gpqa_extended_zeroshot.yaml +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/nexa/eval/benchmark_tasks/gpqa/gpqa_main_zeroshot.yaml +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/nexa/eval/benchmark_tasks/gpqa/utils.py +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/nexa/eval/benchmark_tasks/ifeval/README.md +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/nexa/eval/benchmark_tasks/ifeval/ifeval.yaml +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/nexa/eval/benchmark_tasks/ifeval/instructions.py +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/nexa/eval/benchmark_tasks/ifeval/instructions_registry.py +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/nexa/eval/benchmark_tasks/ifeval/instructions_util.py +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/nexa/eval/benchmark_tasks/ifeval/utils.py +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/nexa/eval/benchmark_tasks/math/README.md +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/nexa/eval/benchmark_tasks/math/_template_yaml +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/nexa/eval/benchmark_tasks/math/math.yaml +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/nexa/eval/benchmark_tasks/math/math_algebra.yaml +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/nexa/eval/benchmark_tasks/math/math_counting_and_prob.yaml +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/nexa/eval/benchmark_tasks/math/math_geometry.yaml +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/nexa/eval/benchmark_tasks/math/math_intermediate_algebra.yaml +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/nexa/eval/benchmark_tasks/math/math_num_theory.yaml +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/nexa/eval/benchmark_tasks/math/math_prealgebra.yaml +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/nexa/eval/benchmark_tasks/math/math_precalculus.yaml +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/nexa/eval/benchmark_tasks/math/utils.py +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/nexa/eval/benchmark_tasks/mgsm/README.md +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/nexa/eval/benchmark_tasks/mgsm/direct/direct_yaml +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/nexa/eval/benchmark_tasks/mgsm/direct/mgsm_direct_bn.yaml +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/nexa/eval/benchmark_tasks/mgsm/direct/mgsm_direct_de.yaml +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/nexa/eval/benchmark_tasks/mgsm/direct/mgsm_direct_en.yaml +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/nexa/eval/benchmark_tasks/mgsm/direct/mgsm_direct_es.yaml +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/nexa/eval/benchmark_tasks/mgsm/direct/mgsm_direct_fr.yaml +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/nexa/eval/benchmark_tasks/mgsm/direct/mgsm_direct_ja.yaml +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/nexa/eval/benchmark_tasks/mgsm/direct/mgsm_direct_ru.yaml +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/nexa/eval/benchmark_tasks/mgsm/direct/mgsm_direct_sw.yaml +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/nexa/eval/benchmark_tasks/mgsm/direct/mgsm_direct_te.yaml +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/nexa/eval/benchmark_tasks/mgsm/direct/mgsm_direct_th.yaml +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/nexa/eval/benchmark_tasks/mgsm/direct/mgsm_direct_zh.yaml +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/nexa/eval/benchmark_tasks/mgsm/en_cot/cot_yaml +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/nexa/eval/benchmark_tasks/mgsm/en_cot/mgsm_en_cot_bn.yaml +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/nexa/eval/benchmark_tasks/mgsm/en_cot/mgsm_en_cot_de.yaml +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/nexa/eval/benchmark_tasks/mgsm/en_cot/mgsm_en_cot_en.yaml +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/nexa/eval/benchmark_tasks/mgsm/en_cot/mgsm_en_cot_es.yaml +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/nexa/eval/benchmark_tasks/mgsm/en_cot/mgsm_en_cot_fr.yaml +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/nexa/eval/benchmark_tasks/mgsm/en_cot/mgsm_en_cot_ja.yaml +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/nexa/eval/benchmark_tasks/mgsm/en_cot/mgsm_en_cot_ru.yaml +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/nexa/eval/benchmark_tasks/mgsm/en_cot/mgsm_en_cot_sw.yaml +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/nexa/eval/benchmark_tasks/mgsm/en_cot/mgsm_en_cot_te.yaml +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/nexa/eval/benchmark_tasks/mgsm/en_cot/mgsm_en_cot_th.yaml +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/nexa/eval/benchmark_tasks/mgsm/en_cot/mgsm_en_cot_zh.yaml +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/nexa/eval/benchmark_tasks/mgsm/gen_yaml.sh +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/nexa/eval/benchmark_tasks/mgsm/native_cot/cot_yaml +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/nexa/eval/benchmark_tasks/mgsm/native_cot/mgsm_native_cot_bn.yaml +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/nexa/eval/benchmark_tasks/mgsm/native_cot/mgsm_native_cot_de.yaml +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/nexa/eval/benchmark_tasks/mgsm/native_cot/mgsm_native_cot_en.yaml +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/nexa/eval/benchmark_tasks/mgsm/native_cot/mgsm_native_cot_es.yaml +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/nexa/eval/benchmark_tasks/mgsm/native_cot/mgsm_native_cot_fr.yaml +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/nexa/eval/benchmark_tasks/mgsm/native_cot/mgsm_native_cot_ja.yaml +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/nexa/eval/benchmark_tasks/mgsm/native_cot/mgsm_native_cot_ru.yaml +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/nexa/eval/benchmark_tasks/mgsm/native_cot/mgsm_native_cot_sw.yaml +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/nexa/eval/benchmark_tasks/mgsm/native_cot/mgsm_native_cot_te.yaml +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/nexa/eval/benchmark_tasks/mgsm/native_cot/mgsm_native_cot_th.yaml +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/nexa/eval/benchmark_tasks/mgsm/native_cot/mgsm_native_cot_zh.yaml +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/nexa/eval/benchmark_tasks/mgsm/utils.py +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/nexa/eval/benchmark_tasks/mmlu_pro/README.md +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/nexa/eval/benchmark_tasks/mmlu_pro/mmlu_pro.yaml +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/nexa/eval/benchmark_tasks/mmlu_pro/utils.py +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/nexa/eval/benchmark_tasks/openai_humaneval/README.md +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/nexa/eval/benchmark_tasks/openai_humaneval/openai_humaneval.yaml +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/nexa/eval/benchmark_tasks/openai_humaneval/utils.py +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/nexa/eval/benchmark_tasks/requirements.txt +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/nexa/eval/benchmark_tasks/truthfulqa/README.md +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/nexa/eval/benchmark_tasks/truthfulqa/truthfulqa_gen.yaml +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/nexa/eval/benchmark_tasks/truthfulqa/truthfulqa_mc1.yaml +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/nexa/eval/benchmark_tasks/truthfulqa/truthfulqa_mc2.yaml +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/nexa/eval/benchmark_tasks/truthfulqa/utils.py +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/nexa/eval/evaluator_utils.py +0 -0
- {nexaai-0.0.8.7/nexa/gguf/llama → nexaai-0.0.8.8/nexa/eval/nexa_perf/utils}/__init__.py +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/nexa/eval/nexa_task/filter.py +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/nexa/eval/nexa_task/group.py +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/nexa/eval/nexa_task/instance.py +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/nexa/eval/nexa_task/metrics.py +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/nexa/eval/nexa_task/registry.py +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/nexa/eval/nexa_task/samplers.py +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/nexa/eval/nexa_task/task.py +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/nexa/eval/nexa_task/task_manager.py +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/nexa/eval/prompts.py +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/nexa/general.py +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/nexa/gguf/__init__.py +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/nexa/gguf/lib_utils.py +0 -0
- {nexaai-0.0.8.7/nexa/gguf/sd → nexaai-0.0.8.8/nexa/gguf/llama}/__init__.py +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/nexa/gguf/llama/_internals_transformers.py +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/nexa/gguf/llama/_logger_transformers.py +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/nexa/gguf/llama/_utils_transformers.py +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/nexa/gguf/llama/llama_cache.py +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/nexa/gguf/llama/llama_chat_format.py +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/nexa/gguf/llama/llama_cpp.py +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/nexa/gguf/llama/llama_grammar.py +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/nexa/gguf/llama/llama_speculative.py +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/nexa/gguf/llama/llama_tokenizer.py +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/nexa/gguf/llama/llama_types.py +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/nexa/gguf/llama/llava_cpp.py +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/nexa/gguf/nexa_inference_image.py +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/nexa/gguf/nexa_inference_voice.py +0 -0
- {nexaai-0.0.8.7/nexa/gguf/server → nexaai-0.0.8.8/nexa/gguf/sd}/__init__.py +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/nexa/gguf/sd/_internals_diffusion.py +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/nexa/gguf/sd/_logger_diffusion.py +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/nexa/gguf/sd/_utils_diffusion.py +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/nexa/gguf/sd/stable_diffusion.py +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/nexa/gguf/sd/stable_diffusion_cpp.py +0 -0
- {nexaai-0.0.8.7/nexa/gguf/streamlit → nexaai-0.0.8.8/nexa/gguf/server}/__init__.py +0 -0
- {nexaai-0.0.8.7/nexa/onnx/server → nexaai-0.0.8.8/nexa/gguf/streamlit}/__init__.py +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/nexa/gguf/streamlit/streamlit_image_chat.py +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/nexa/gguf/streamlit/streamlit_text_chat.py +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/nexa/gguf/streamlit/streamlit_vlm.py +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/nexa/gguf/streamlit/streamlit_voice_chat.py +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/nexa/onnx/README.md +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/nexa/onnx/__init__.py +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/nexa/onnx/nexa_inference_image.py +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/nexa/onnx/nexa_inference_text.py +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/nexa/onnx/nexa_inference_tts.py +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/nexa/onnx/nexa_inference_voice.py +0 -0
- {nexaai-0.0.8.7/nexa/onnx/streamlit → nexaai-0.0.8.8/nexa/onnx/server}/__init__.py +0 -0
- {nexaai-0.0.8.7/tests → nexaai-0.0.8.8/nexa/onnx/streamlit}/__init__.py +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/nexa/onnx/streamlit/streamlit_image_chat.py +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/nexa/onnx/streamlit/streamlit_text_chat.py +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/nexa/onnx/streamlit/streamlit_tts.py +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/nexa/onnx/streamlit/streamlit_voice_chat.py +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/nexa/py.typed +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/nexa/utils.py +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/requirements.txt +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/scripts/releases-to-pep-503.sh +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/tests/test_image_generation.py +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/tests/test_text_generation.py +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/tests/test_vlm_generation.py +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/tests/test_voice_generation.py +0 -0
- {nexaai-0.0.8.7 → nexaai-0.0.8.8}/tests/utils.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: nexaai
|
|
3
|
-
Version: 0.0.8.
|
|
3
|
+
Version: 0.0.8.8
|
|
4
4
|
Summary: Nexa AI SDK
|
|
5
5
|
Author-Email: Nexa AI <octopus@nexa4ai.com>
|
|
6
6
|
License: MIT
|
|
@@ -53,6 +53,13 @@ Requires-Dist: pytablewriter; extra == "eval"
|
|
|
53
53
|
Requires-Dist: sacrebleu; extra == "eval"
|
|
54
54
|
Requires-Dist: langdetect; extra == "eval"
|
|
55
55
|
Requires-Dist: immutabledict; extra == "eval"
|
|
56
|
+
Requires-Dist: hydra-core; extra == "eval"
|
|
57
|
+
Requires-Dist: psutil; extra == "eval"
|
|
58
|
+
Requires-Dist: typing-extensions; extra == "eval"
|
|
59
|
+
Requires-Dist: flatten_dict; extra == "eval"
|
|
60
|
+
Requires-Dist: colorlog; extra == "eval"
|
|
61
|
+
Requires-Dist: pandas; extra == "eval"
|
|
62
|
+
Requires-Dist: rich; extra == "eval"
|
|
56
63
|
Provides-Extra: onnx
|
|
57
64
|
Provides-Extra: eval
|
|
58
65
|
Description-Content-Type: text/markdown
|
|
@@ -83,10 +90,18 @@ Description-Content-Type: text/markdown
|
|
|
83
90
|
Nexa SDK is a comprehensive toolkit for supporting **ONNX** and **GGML** models. It supports text generation, image generation, vision-language models (VLM), and speech-to-text (ASR), and text-to-speech (TTS) capabilities. Additionally, it offers an OpenAI-compatible API server with JSON schema mode for function calling and streaming support, and a user-friendly Streamlit UI. Users can run Nexa SDK in any device with Python environment, and GPU acceleration is supported, including CUDA, Metal, and ROCm. An executable version is also available.
|
|
84
91
|
|
|
85
92
|
## Latest News 🔥
|
|
86
|
-
* [2024/
|
|
93
|
+
* [2024/10] Support embedding model: `nexa embed <model_path> <prompt>`
|
|
94
|
+
* [2024/10] Support pull and run supported Computer Vision models in GGUF format from HuggingFace: `nexa run -hf <model_id> -mt COMPUTER_VISION`
|
|
95
|
+
* [2024/10] Support VLM in local server.
|
|
96
|
+
* [2024/10] Added option to customize maximum context window for NLP and VLM models.
|
|
97
|
+
* [2024/10] Support running model from user's local path
|
|
98
|
+
* [2024/10] Added LoRA support for NLP models.
|
|
99
|
+
* [2024/10] Added support for whisper-large-v3-turbo: `nexa run faster-whisper-large-turbo`
|
|
100
|
+
* [2024/10] Added support for AMD-Llama-135m: `nexa run AMD-Llama-135m:fp16`
|
|
101
|
+
* [2024/09] Nexa now has executables for easy installation: [Install Nexa SDK](https://nexaai.com/download-sdk) ✨
|
|
87
102
|
* [2024/09] Added support for Llama 3.2 models: `nexa run llama3.2`
|
|
88
103
|
* [2024/09] Added support for Qwen2.5, Qwen2.5-coder and Qwen2.5-Math models: `nexa run qwen2.5`
|
|
89
|
-
* [2024/09]
|
|
104
|
+
* [2024/09] Support pull and run NLP models in GGUF format from HuggingFace: `nexa run -hf <model_id> -mt NLP`
|
|
90
105
|
* [2024/09] Added support for ROCm
|
|
91
106
|
* [2024/09] Added support for Phi-3.5 models: `nexa run phi3.5`
|
|
92
107
|
* [2024/09] Added support for OpenELM models: `nexa run openelm`
|
|
@@ -252,60 +267,66 @@ Below is our differentiation from other similar tools:
|
|
|
252
267
|
## Supported Models & Model Hub
|
|
253
268
|
Our on-device model hub offers all types of quantized models (text, image, audio, multimodal) with filters for RAM, file size, Tasks, etc. to help you easily explore models with UI. Explore on-device models at [On-device Model Hub](https://model-hub.nexa4ai.com/)
|
|
254
269
|
|
|
255
|
-
|
|
256
|
-
| Model | Type | Format | Command
|
|
257
|
-
| ------------------------------------------------------------------------------------------------------- | --------------- | --------- |
|
|
258
|
-
| [octopus-v2](https://www.nexaai.com/NexaAI/Octopus-v2/gguf-q4_0/readme) | NLP | GGUF | `nexa run octopus-v2`
|
|
259
|
-
| [octopus-v4](https://www.nexaai.com/NexaAI/Octopus-v4/gguf-q4_0/readme) | NLP | GGUF | `nexa run octopus-v4`
|
|
260
|
-
| [gpt2](https://nexaai.com/openai/gpt2/gguf-q4_0/readme) | NLP | GGUF | `nexa run gpt2`
|
|
261
|
-
| [tinyllama](https://www.nexaai.com/TinyLlama/TinyLlama-1.1B-Chat-v1.0/gguf-fp16/readme) | NLP | GGUF | `nexa run tinyllama`
|
|
262
|
-
| [llama2](https://www.nexaai.com/meta/Llama2-7b-chat/gguf-q4_0/readme) | NLP | GGUF/ONNX | `nexa run llama2`
|
|
263
|
-
| [llama2-uncensored](https://www.nexaai.com/georgesung/Llama2-7b-chat-uncensored/gguf-q4_0/readme) | NLP | GGUF | `nexa run llama2-uncensored`
|
|
264
|
-
| [llama2-function-calling](https://www.nexaai.com/Trelis/Llama2-7b-function-calling/gguf-q4_K_M/readme) | NLP | GGUF | `nexa run llama2-function-calling`
|
|
265
|
-
| [llama3](https://www.nexaai.com/meta/Llama3-8B-Instruct/gguf-q4_0/readme) | NLP | GGUF/ONNX | `nexa run llama3`
|
|
266
|
-
| [llama3.1](https://www.nexaai.com/meta/Llama3.1-8B-Instruct/gguf-q4_0/readme) | NLP | GGUF/ONNX | `nexa run llama3.1`
|
|
267
|
-
| [llama3.2](https://nexaai.com/meta/Llama3.2-3B-Instruct/gguf-q4_0/readme) | NLP | GGUF | `nexa run llama3.2`
|
|
268
|
-
| [llama3-uncensored](https://www.nexaai.com/Orenguteng/Llama3-8B-Lexi-Uncensored/gguf-q4_K_M/readme) | NLP | GGUF | `nexa run llama3-uncensored`
|
|
269
|
-
| [gemma](https://www.nexaai.com/google/gemma-1.1-2b-instruct/gguf-q4_0/readme) | NLP | GGUF/ONNX | `nexa run gemma`
|
|
270
|
-
| [gemma2](https://www.nexaai.com/google/gemma-2-2b-instruct/gguf-q4_0/readme) | NLP | GGUF | `nexa run gemma2`
|
|
271
|
-
| [qwen1.5](https://www.nexaai.com/Qwen/Qwen1.5-7B-Instruct/gguf-q4_0/readme) | NLP | GGUF | `nexa run qwen1.5`
|
|
272
|
-
| [qwen2](https://www.nexaai.com/Qwen/Qwen2-1.5B-Instruct/gguf-q4_0/readme) | NLP | GGUF/ONNX | `nexa run qwen2`
|
|
273
|
-
| [qwen2.5](https://www.nexaai.com/Qwen/Qwen2.5-1.5B-Instruct/gguf-q4_0/readme) | NLP | GGUF | `nexa run qwen2.5`
|
|
274
|
-
| [mathqwen](https://nexaai.com/Qwen/Qwen2.5-Math-1.5B-Instruct/gguf-q4_0/readme) | NLP | GGUF | `nexa run mathqwen`
|
|
275
|
-
| [codeqwen](https://www.nexaai.com/Qwen/CodeQwen1.5-7B-Instruct/gguf-q4_0/readme) | NLP | GGUF | `nexa run codeqwen`
|
|
276
|
-
| [mistral](https://www.nexaai.com/mistralai/Mistral-7B-Instruct-v0.3/gguf-q4_0/readme) | NLP | GGUF/ONNX | `nexa run mistral`
|
|
277
|
-
| [dolphin-mistral](https://www.nexaai.com/CognitiveComputations/dolphin-2.8-mistral-7b/gguf-q4_0/readme) | NLP | GGUF | `nexa run dolphin-mistral`
|
|
278
|
-
| [codegemma](https://www.nexaai.com/google/codegemma-2b/gguf-q4_0/readme) | NLP | GGUF | `nexa run codegemma`
|
|
279
|
-
| [codellama](https://www.nexaai.com/meta/CodeLlama-7b-Instruct/gguf-q2_K/readme) | NLP | GGUF | `nexa run codellama`
|
|
280
|
-
| [deepseek-coder](https://www.nexaai.com/DeepSeek/deepseek-coder-1.3b-instruct/gguf-q4_0/readme) | NLP | GGUF | `nexa run deepseek-coder`
|
|
281
|
-
| [phi2](https://www.nexaai.com/microsoft/Phi-2/gguf-q4_0/readme) | NLP | GGUF | `nexa run phi2`
|
|
282
|
-
| [phi3](https://www.nexaai.com/microsoft/Phi-3-mini-128k-instruct/gguf-q4_0/readme) | NLP | GGUF/ONNX | `nexa run phi3`
|
|
283
|
-
| [phi3.5](https://nexaai.com/microsoft/Phi-3.5-mini-instruct/gguf-q4_0/readme) | NLP | GGUF | `nexa run phi3.5`
|
|
284
|
-
| [openelm](https://nexaai.com/apple/OpenELM-3B/gguf-q4_K_M/readme) | NLP | GGUF | `nexa run openelm`
|
|
285
|
-
| [
|
|
286
|
-
| [
|
|
287
|
-
| [llava-
|
|
288
|
-
| [
|
|
289
|
-
| [llava1.6-
|
|
290
|
-
| [
|
|
291
|
-
| [stable-diffusion-v1-
|
|
292
|
-
| [stable-diffusion-
|
|
293
|
-
| [stable-diffusion-
|
|
294
|
-
| [
|
|
295
|
-
| [
|
|
296
|
-
| [
|
|
297
|
-
| [
|
|
298
|
-
| [
|
|
299
|
-
| [faster-whisper-
|
|
300
|
-
| [faster-whisper-
|
|
301
|
-
| [faster-whisper-
|
|
302
|
-
| [faster-whisper-
|
|
303
|
-
| [whisper-
|
|
304
|
-
| [whisper-
|
|
305
|
-
| [whisper-
|
|
306
|
-
| [whisper-
|
|
307
|
-
| [whisper-
|
|
308
|
-
| [whisper-
|
|
270
|
+
Supported models (full list at [Model Hub](https://nexa.ai/models)):
|
|
271
|
+
| Model | Type | Format | Command |
|
|
272
|
+
| ------------------------------------------------------------------------------------------------------- | --------------- | --------- | -------------------------------------- |
|
|
273
|
+
| [octopus-v2](https://www.nexaai.com/NexaAI/Octopus-v2/gguf-q4_0/readme) | NLP | GGUF | `nexa run octopus-v2` |
|
|
274
|
+
| [octopus-v4](https://www.nexaai.com/NexaAI/Octopus-v4/gguf-q4_0/readme) | NLP | GGUF | `nexa run octopus-v4` |
|
|
275
|
+
| [gpt2](https://nexaai.com/openai/gpt2/gguf-q4_0/readme) | NLP | GGUF | `nexa run gpt2` |
|
|
276
|
+
| [tinyllama](https://www.nexaai.com/TinyLlama/TinyLlama-1.1B-Chat-v1.0/gguf-fp16/readme) | NLP | GGUF | `nexa run tinyllama` |
|
|
277
|
+
| [llama2](https://www.nexaai.com/meta/Llama2-7b-chat/gguf-q4_0/readme) | NLP | GGUF/ONNX | `nexa run llama2` |
|
|
278
|
+
| [llama2-uncensored](https://www.nexaai.com/georgesung/Llama2-7b-chat-uncensored/gguf-q4_0/readme) | NLP | GGUF | `nexa run llama2-uncensored` |
|
|
279
|
+
| [llama2-function-calling](https://www.nexaai.com/Trelis/Llama2-7b-function-calling/gguf-q4_K_M/readme) | NLP | GGUF | `nexa run llama2-function-calling` |
|
|
280
|
+
| [llama3](https://www.nexaai.com/meta/Llama3-8B-Instruct/gguf-q4_0/readme) | NLP | GGUF/ONNX | `nexa run llama3` |
|
|
281
|
+
| [llama3.1](https://www.nexaai.com/meta/Llama3.1-8B-Instruct/gguf-q4_0/readme) | NLP | GGUF/ONNX | `nexa run llama3.1` |
|
|
282
|
+
| [llama3.2](https://nexaai.com/meta/Llama3.2-3B-Instruct/gguf-q4_0/readme) | NLP | GGUF | `nexa run llama3.2` |
|
|
283
|
+
| [llama3-uncensored](https://www.nexaai.com/Orenguteng/Llama3-8B-Lexi-Uncensored/gguf-q4_K_M/readme) | NLP | GGUF | `nexa run llama3-uncensored` |
|
|
284
|
+
| [gemma](https://www.nexaai.com/google/gemma-1.1-2b-instruct/gguf-q4_0/readme) | NLP | GGUF/ONNX | `nexa run gemma` |
|
|
285
|
+
| [gemma2](https://www.nexaai.com/google/gemma-2-2b-instruct/gguf-q4_0/readme) | NLP | GGUF | `nexa run gemma2` |
|
|
286
|
+
| [qwen1.5](https://www.nexaai.com/Qwen/Qwen1.5-7B-Instruct/gguf-q4_0/readme) | NLP | GGUF | `nexa run qwen1.5` |
|
|
287
|
+
| [qwen2](https://www.nexaai.com/Qwen/Qwen2-1.5B-Instruct/gguf-q4_0/readme) | NLP | GGUF/ONNX | `nexa run qwen2` |
|
|
288
|
+
| [qwen2.5](https://www.nexaai.com/Qwen/Qwen2.5-1.5B-Instruct/gguf-q4_0/readme) | NLP | GGUF | `nexa run qwen2.5` |
|
|
289
|
+
| [mathqwen](https://nexaai.com/Qwen/Qwen2.5-Math-1.5B-Instruct/gguf-q4_0/readme) | NLP | GGUF | `nexa run mathqwen` |
|
|
290
|
+
| [codeqwen](https://www.nexaai.com/Qwen/CodeQwen1.5-7B-Instruct/gguf-q4_0/readme) | NLP | GGUF | `nexa run codeqwen` |
|
|
291
|
+
| [mistral](https://www.nexaai.com/mistralai/Mistral-7B-Instruct-v0.3/gguf-q4_0/readme) | NLP | GGUF/ONNX | `nexa run mistral` |
|
|
292
|
+
| [dolphin-mistral](https://www.nexaai.com/CognitiveComputations/dolphin-2.8-mistral-7b/gguf-q4_0/readme) | NLP | GGUF | `nexa run dolphin-mistral` |
|
|
293
|
+
| [codegemma](https://www.nexaai.com/google/codegemma-2b/gguf-q4_0/readme) | NLP | GGUF | `nexa run codegemma` |
|
|
294
|
+
| [codellama](https://www.nexaai.com/meta/CodeLlama-7b-Instruct/gguf-q2_K/readme) | NLP | GGUF | `nexa run codellama` |
|
|
295
|
+
| [deepseek-coder](https://www.nexaai.com/DeepSeek/deepseek-coder-1.3b-instruct/gguf-q4_0/readme) | NLP | GGUF | `nexa run deepseek-coder` |
|
|
296
|
+
| [phi2](https://www.nexaai.com/microsoft/Phi-2/gguf-q4_0/readme) | NLP | GGUF | `nexa run phi2` |
|
|
297
|
+
| [phi3](https://www.nexaai.com/microsoft/Phi-3-mini-128k-instruct/gguf-q4_0/readme) | NLP | GGUF/ONNX | `nexa run phi3` |
|
|
298
|
+
| [phi3.5](https://nexaai.com/microsoft/Phi-3.5-mini-instruct/gguf-q4_0/readme) | NLP | GGUF | `nexa run phi3.5` |
|
|
299
|
+
| [openelm](https://nexaai.com/apple/OpenELM-3B/gguf-q4_K_M/readme) | NLP | GGUF | `nexa run openelm` |
|
|
300
|
+
| [AMD-Llama-135m](https://nexaai.com/amd/AMD-Llama-135m/gguf-fp16/readme) | NLP | GGUF | `nexa run AMD-Llama-135m:fp16` |
|
|
301
|
+
| [nanollava](https://www.nexaai.com/qnguyen3/nanoLLaVA/gguf-fp16/readme) | Multimodal | GGUF | `nexa run nanollava` |
|
|
302
|
+
| [llava-phi3](https://www.nexaai.com/xtuner/llava-phi-3-mini/gguf-q4_0/readme) | Multimodal | GGUF | `nexa run llava-phi3` |
|
|
303
|
+
| [llava-llama3](https://www.nexaai.com/xtuner/llava-llama-3-8b-v1.1/gguf-q4_0/readme) | Multimodal | GGUF | `nexa run llava-llama3` |
|
|
304
|
+
| [llava1.6-mistral](https://www.nexaai.com/liuhaotian/llava-v1.6-mistral-7b/gguf-q4_0/readme) | Multimodal | GGUF | `nexa run llava1.6-mistral` |
|
|
305
|
+
| [llava1.6-vicuna](https://www.nexaai.com/liuhaotian/llava-v1.6-vicuna-7b/gguf-q4_0/readme) | Multimodal | GGUF | `nexa run llava1.6-vicuna` |
|
|
306
|
+
| [stable-diffusion-v1-4](https://www.nexaai.com/runwayml/stable-diffusion-v1-4/gguf-q4_0/readme) | Computer Vision | GGUF | `nexa run sd1-4` |
|
|
307
|
+
| [stable-diffusion-v1-5](https://www.nexaai.com/runwayml/stable-diffusion-v1-5/gguf-q4_0/readme) | Computer Vision | GGUF/ONNX | `nexa run sd1-5` |
|
|
308
|
+
| [stable-diffusion-v2-1](https://nexaai.com/StabilityAI/stable-diffusion-v2-1/gguf-q4_0/readme) | Computer Vision | GGUF | `nexa run sd2-1` |
|
|
309
|
+
| [stable-diffusion-3-medium](https://nexaai.com/StabilityAI/stable-diffusion-3-medium/gguf-q4_0/readme) | Computer Vision | GGUF | `nexa run sd3` |
|
|
310
|
+
| [FLUX.1-schnell](https://nexaai.com/BlackForestLabs/FLUX.1-schnell/gguf-q4_0/readme) | Computer Vision | GGUF | `nexa run flux` |
|
|
311
|
+
| [lcm-dreamshaper](https://www.nexaai.com/SimianLuo/lcm-dreamshaper-v7/gguf-fp16/readme) | Computer Vision | GGUF/ONNX | `nexa run lcm-dreamshaper` |
|
|
312
|
+
| [hassaku-lcm](https://nexaai.com/stablediffusionapi/hassaku-hentai-model-v13-LCM/gguf-fp16/readme) | Computer Vision | GGUF | `nexa run hassaku-lcm` |
|
|
313
|
+
| [anything-lcm](https://www.nexaai.com/Linaqruf/anything-v30-LCM/gguf-fp16/readme) | Computer Vision | GGUF | `nexa run anything-lcm` |
|
|
314
|
+
| [faster-whisper-tiny](https://www.nexaai.com/Systran/faster-whisper-tiny/bin-cpu-fp16/readme) | Audio | BIN | `nexa run faster-whisper-tiny` |
|
|
315
|
+
| [faster-whisper-small](https://www.nexaai.com/Systran/faster-whisper-small/bin-cpu-fp16/readme) | Audio | BIN | `nexa run faster-whisper-small` |
|
|
316
|
+
| [faster-whisper-medium](https://www.nexaai.com/Systran/faster-whisper-medium/bin-cpu-fp16/readme) | Audio | BIN | `nexa run faster-whisper-medium` |
|
|
317
|
+
| [faster-whisper-base](https://www.nexaai.com/Systran/faster-whisper-base/bin-cpu-fp16/readme) | Audio | BIN | `nexa run faster-whisper-base` |
|
|
318
|
+
| [faster-whisper-large](https://www.nexaai.com/Systran/faster-whisper-large-v3/bin-cpu-fp16/readme) | Audio | BIN | `nexa run faster-whisper-large` |
|
|
319
|
+
| [whisper-large-v3-turbo](https://nexaai.com/Systran/faster-whisper-large-v3-turbo/bin-cpu-fp16/readme) | Audio | BIN | `nexa run faster-whisper-large-turbo` |
|
|
320
|
+
| [whisper-tiny.en](https://nexaai.com/openai/whisper-tiny.en/onnx-cpu-fp32/readme) | Audio | ONNX | `nexa run whisper-tiny.en` |
|
|
321
|
+
| [whisper-tiny](https://nexaai.com/openai/whisper-tiny/onnx-cpu-fp32/readme) | Audio | ONNX | `nexa run whisper-tiny` |
|
|
322
|
+
| [whisper-small.en](https://nexaai.com/openai/whisper-small.en/onnx-cpu-fp32/readme) | Audio | ONNX | `nexa run whisper-small.en` |
|
|
323
|
+
| [whisper-small](https://nexaai.com/openai/whisper-small/onnx-cpu-fp32/readme) | Audio | ONNX | `nexa run whisper-small` |
|
|
324
|
+
| [whisper-base.en](https://nexaai.com/openai/whisper-base.en/onnx-cpu-fp32/readme) | Audio | ONNX | `nexa run whisper-base.en` |
|
|
325
|
+
| [whisper-base](https://nexaai.com/openai/whisper-base/onnx-cpu-fp32/readme) | Audio | ONNX | `nexa run whisper-base` |
|
|
326
|
+
| [mxbai-embed-large-v1](https://nexa.ai/mixedbread-ai/mxbai-embed-large-v1/gguf-fp16/readme) | Embedding | GGUF | `nexa embed mxbai` |
|
|
327
|
+
| [nomic-embed-text-v1.5](https://nexa.ai/nomic-ai/nomic-embed-text-v1.5/gguf-fp16/readme) | Embedding | GGUF | `nexa embed nomic` |
|
|
328
|
+
| [all-MiniLM-L6-v2](https://nexa.ai/sentence-transformers/all-MiniLM-L6-v2/gguf-fp16/readme) | Embedding | GGUF | `nexa embed all-MiniLM-L6-v2:fp16` |
|
|
329
|
+
| [all-MiniLM-L12-v2](https://nexa.ai/sentence-transformers/all-MiniLM-L12-v2/gguf-fp16/readme) | Embedding | GGUF | `nexa embed all-MiniLM-L12-v2:fp16` |
|
|
309
330
|
|
|
310
331
|
## CLI Reference
|
|
311
332
|
|
|
@@ -24,10 +24,18 @@
|
|
|
24
24
|
Nexa SDK is a comprehensive toolkit for supporting **ONNX** and **GGML** models. It supports text generation, image generation, vision-language models (VLM), and speech-to-text (ASR), and text-to-speech (TTS) capabilities. Additionally, it offers an OpenAI-compatible API server with JSON schema mode for function calling and streaming support, and a user-friendly Streamlit UI. Users can run Nexa SDK in any device with Python environment, and GPU acceleration is supported, including CUDA, Metal, and ROCm. An executable version is also available.
|
|
25
25
|
|
|
26
26
|
## Latest News 🔥
|
|
27
|
-
* [2024/
|
|
27
|
+
* [2024/10] Support embedding model: `nexa embed <model_path> <prompt>`
|
|
28
|
+
* [2024/10] Support pull and run supported Computer Vision models in GGUF format from HuggingFace: `nexa run -hf <model_id> -mt COMPUTER_VISION`
|
|
29
|
+
* [2024/10] Support VLM in local server.
|
|
30
|
+
* [2024/10] Added option to customize maximum context window for NLP and VLM models.
|
|
31
|
+
* [2024/10] Support running model from user's local path
|
|
32
|
+
* [2024/10] Added LoRA support for NLP models.
|
|
33
|
+
* [2024/10] Added support for whisper-large-v3-turbo: `nexa run faster-whisper-large-turbo`
|
|
34
|
+
* [2024/10] Added support for AMD-Llama-135m: `nexa run AMD-Llama-135m:fp16`
|
|
35
|
+
* [2024/09] Nexa now has executables for easy installation: [Install Nexa SDK](https://nexaai.com/download-sdk) ✨
|
|
28
36
|
* [2024/09] Added support for Llama 3.2 models: `nexa run llama3.2`
|
|
29
37
|
* [2024/09] Added support for Qwen2.5, Qwen2.5-coder and Qwen2.5-Math models: `nexa run qwen2.5`
|
|
30
|
-
* [2024/09]
|
|
38
|
+
* [2024/09] Support pull and run NLP models in GGUF format from HuggingFace: `nexa run -hf <model_id> -mt NLP`
|
|
31
39
|
* [2024/09] Added support for ROCm
|
|
32
40
|
* [2024/09] Added support for Phi-3.5 models: `nexa run phi3.5`
|
|
33
41
|
* [2024/09] Added support for OpenELM models: `nexa run openelm`
|
|
@@ -193,60 +201,66 @@ Below is our differentiation from other similar tools:
|
|
|
193
201
|
## Supported Models & Model Hub
|
|
194
202
|
Our on-device model hub offers all types of quantized models (text, image, audio, multimodal) with filters for RAM, file size, Tasks, etc. to help you easily explore models with UI. Explore on-device models at [On-device Model Hub](https://model-hub.nexa4ai.com/)
|
|
195
203
|
|
|
196
|
-
|
|
197
|
-
| Model | Type | Format | Command
|
|
198
|
-
| ------------------------------------------------------------------------------------------------------- | --------------- | --------- |
|
|
199
|
-
| [octopus-v2](https://www.nexaai.com/NexaAI/Octopus-v2/gguf-q4_0/readme) | NLP | GGUF | `nexa run octopus-v2`
|
|
200
|
-
| [octopus-v4](https://www.nexaai.com/NexaAI/Octopus-v4/gguf-q4_0/readme) | NLP | GGUF | `nexa run octopus-v4`
|
|
201
|
-
| [gpt2](https://nexaai.com/openai/gpt2/gguf-q4_0/readme) | NLP | GGUF | `nexa run gpt2`
|
|
202
|
-
| [tinyllama](https://www.nexaai.com/TinyLlama/TinyLlama-1.1B-Chat-v1.0/gguf-fp16/readme) | NLP | GGUF | `nexa run tinyllama`
|
|
203
|
-
| [llama2](https://www.nexaai.com/meta/Llama2-7b-chat/gguf-q4_0/readme) | NLP | GGUF/ONNX | `nexa run llama2`
|
|
204
|
-
| [llama2-uncensored](https://www.nexaai.com/georgesung/Llama2-7b-chat-uncensored/gguf-q4_0/readme) | NLP | GGUF | `nexa run llama2-uncensored`
|
|
205
|
-
| [llama2-function-calling](https://www.nexaai.com/Trelis/Llama2-7b-function-calling/gguf-q4_K_M/readme) | NLP | GGUF | `nexa run llama2-function-calling`
|
|
206
|
-
| [llama3](https://www.nexaai.com/meta/Llama3-8B-Instruct/gguf-q4_0/readme) | NLP | GGUF/ONNX | `nexa run llama3`
|
|
207
|
-
| [llama3.1](https://www.nexaai.com/meta/Llama3.1-8B-Instruct/gguf-q4_0/readme) | NLP | GGUF/ONNX | `nexa run llama3.1`
|
|
208
|
-
| [llama3.2](https://nexaai.com/meta/Llama3.2-3B-Instruct/gguf-q4_0/readme) | NLP | GGUF | `nexa run llama3.2`
|
|
209
|
-
| [llama3-uncensored](https://www.nexaai.com/Orenguteng/Llama3-8B-Lexi-Uncensored/gguf-q4_K_M/readme) | NLP | GGUF | `nexa run llama3-uncensored`
|
|
210
|
-
| [gemma](https://www.nexaai.com/google/gemma-1.1-2b-instruct/gguf-q4_0/readme) | NLP | GGUF/ONNX | `nexa run gemma`
|
|
211
|
-
| [gemma2](https://www.nexaai.com/google/gemma-2-2b-instruct/gguf-q4_0/readme) | NLP | GGUF | `nexa run gemma2`
|
|
212
|
-
| [qwen1.5](https://www.nexaai.com/Qwen/Qwen1.5-7B-Instruct/gguf-q4_0/readme) | NLP | GGUF | `nexa run qwen1.5`
|
|
213
|
-
| [qwen2](https://www.nexaai.com/Qwen/Qwen2-1.5B-Instruct/gguf-q4_0/readme) | NLP | GGUF/ONNX | `nexa run qwen2`
|
|
214
|
-
| [qwen2.5](https://www.nexaai.com/Qwen/Qwen2.5-1.5B-Instruct/gguf-q4_0/readme) | NLP | GGUF | `nexa run qwen2.5`
|
|
215
|
-
| [mathqwen](https://nexaai.com/Qwen/Qwen2.5-Math-1.5B-Instruct/gguf-q4_0/readme) | NLP | GGUF | `nexa run mathqwen`
|
|
216
|
-
| [codeqwen](https://www.nexaai.com/Qwen/CodeQwen1.5-7B-Instruct/gguf-q4_0/readme) | NLP | GGUF | `nexa run codeqwen`
|
|
217
|
-
| [mistral](https://www.nexaai.com/mistralai/Mistral-7B-Instruct-v0.3/gguf-q4_0/readme) | NLP | GGUF/ONNX | `nexa run mistral`
|
|
218
|
-
| [dolphin-mistral](https://www.nexaai.com/CognitiveComputations/dolphin-2.8-mistral-7b/gguf-q4_0/readme) | NLP | GGUF | `nexa run dolphin-mistral`
|
|
219
|
-
| [codegemma](https://www.nexaai.com/google/codegemma-2b/gguf-q4_0/readme) | NLP | GGUF | `nexa run codegemma`
|
|
220
|
-
| [codellama](https://www.nexaai.com/meta/CodeLlama-7b-Instruct/gguf-q2_K/readme) | NLP | GGUF | `nexa run codellama`
|
|
221
|
-
| [deepseek-coder](https://www.nexaai.com/DeepSeek/deepseek-coder-1.3b-instruct/gguf-q4_0/readme) | NLP | GGUF | `nexa run deepseek-coder`
|
|
222
|
-
| [phi2](https://www.nexaai.com/microsoft/Phi-2/gguf-q4_0/readme) | NLP | GGUF | `nexa run phi2`
|
|
223
|
-
| [phi3](https://www.nexaai.com/microsoft/Phi-3-mini-128k-instruct/gguf-q4_0/readme) | NLP | GGUF/ONNX | `nexa run phi3`
|
|
224
|
-
| [phi3.5](https://nexaai.com/microsoft/Phi-3.5-mini-instruct/gguf-q4_0/readme) | NLP | GGUF | `nexa run phi3.5`
|
|
225
|
-
| [openelm](https://nexaai.com/apple/OpenELM-3B/gguf-q4_K_M/readme) | NLP | GGUF | `nexa run openelm`
|
|
226
|
-
| [
|
|
227
|
-
| [
|
|
228
|
-
| [llava-
|
|
229
|
-
| [
|
|
230
|
-
| [llava1.6-
|
|
231
|
-
| [
|
|
232
|
-
| [stable-diffusion-v1-
|
|
233
|
-
| [stable-diffusion-
|
|
234
|
-
| [stable-diffusion-
|
|
235
|
-
| [
|
|
236
|
-
| [
|
|
237
|
-
| [
|
|
238
|
-
| [
|
|
239
|
-
| [
|
|
240
|
-
| [faster-whisper-
|
|
241
|
-
| [faster-whisper-
|
|
242
|
-
| [faster-whisper-
|
|
243
|
-
| [faster-whisper-
|
|
244
|
-
| [whisper-
|
|
245
|
-
| [whisper-
|
|
246
|
-
| [whisper-
|
|
247
|
-
| [whisper-
|
|
248
|
-
| [whisper-
|
|
249
|
-
| [whisper-
|
|
204
|
+
Supported models (full list at [Model Hub](https://nexa.ai/models)):
|
|
205
|
+
| Model | Type | Format | Command |
|
|
206
|
+
| ------------------------------------------------------------------------------------------------------- | --------------- | --------- | -------------------------------------- |
|
|
207
|
+
| [octopus-v2](https://www.nexaai.com/NexaAI/Octopus-v2/gguf-q4_0/readme) | NLP | GGUF | `nexa run octopus-v2` |
|
|
208
|
+
| [octopus-v4](https://www.nexaai.com/NexaAI/Octopus-v4/gguf-q4_0/readme) | NLP | GGUF | `nexa run octopus-v4` |
|
|
209
|
+
| [gpt2](https://nexaai.com/openai/gpt2/gguf-q4_0/readme) | NLP | GGUF | `nexa run gpt2` |
|
|
210
|
+
| [tinyllama](https://www.nexaai.com/TinyLlama/TinyLlama-1.1B-Chat-v1.0/gguf-fp16/readme) | NLP | GGUF | `nexa run tinyllama` |
|
|
211
|
+
| [llama2](https://www.nexaai.com/meta/Llama2-7b-chat/gguf-q4_0/readme) | NLP | GGUF/ONNX | `nexa run llama2` |
|
|
212
|
+
| [llama2-uncensored](https://www.nexaai.com/georgesung/Llama2-7b-chat-uncensored/gguf-q4_0/readme) | NLP | GGUF | `nexa run llama2-uncensored` |
|
|
213
|
+
| [llama2-function-calling](https://www.nexaai.com/Trelis/Llama2-7b-function-calling/gguf-q4_K_M/readme) | NLP | GGUF | `nexa run llama2-function-calling` |
|
|
214
|
+
| [llama3](https://www.nexaai.com/meta/Llama3-8B-Instruct/gguf-q4_0/readme) | NLP | GGUF/ONNX | `nexa run llama3` |
|
|
215
|
+
| [llama3.1](https://www.nexaai.com/meta/Llama3.1-8B-Instruct/gguf-q4_0/readme) | NLP | GGUF/ONNX | `nexa run llama3.1` |
|
|
216
|
+
| [llama3.2](https://nexaai.com/meta/Llama3.2-3B-Instruct/gguf-q4_0/readme) | NLP | GGUF | `nexa run llama3.2` |
|
|
217
|
+
| [llama3-uncensored](https://www.nexaai.com/Orenguteng/Llama3-8B-Lexi-Uncensored/gguf-q4_K_M/readme) | NLP | GGUF | `nexa run llama3-uncensored` |
|
|
218
|
+
| [gemma](https://www.nexaai.com/google/gemma-1.1-2b-instruct/gguf-q4_0/readme) | NLP | GGUF/ONNX | `nexa run gemma` |
|
|
219
|
+
| [gemma2](https://www.nexaai.com/google/gemma-2-2b-instruct/gguf-q4_0/readme) | NLP | GGUF | `nexa run gemma2` |
|
|
220
|
+
| [qwen1.5](https://www.nexaai.com/Qwen/Qwen1.5-7B-Instruct/gguf-q4_0/readme) | NLP | GGUF | `nexa run qwen1.5` |
|
|
221
|
+
| [qwen2](https://www.nexaai.com/Qwen/Qwen2-1.5B-Instruct/gguf-q4_0/readme) | NLP | GGUF/ONNX | `nexa run qwen2` |
|
|
222
|
+
| [qwen2.5](https://www.nexaai.com/Qwen/Qwen2.5-1.5B-Instruct/gguf-q4_0/readme) | NLP | GGUF | `nexa run qwen2.5` |
|
|
223
|
+
| [mathqwen](https://nexaai.com/Qwen/Qwen2.5-Math-1.5B-Instruct/gguf-q4_0/readme) | NLP | GGUF | `nexa run mathqwen` |
|
|
224
|
+
| [codeqwen](https://www.nexaai.com/Qwen/CodeQwen1.5-7B-Instruct/gguf-q4_0/readme) | NLP | GGUF | `nexa run codeqwen` |
|
|
225
|
+
| [mistral](https://www.nexaai.com/mistralai/Mistral-7B-Instruct-v0.3/gguf-q4_0/readme) | NLP | GGUF/ONNX | `nexa run mistral` |
|
|
226
|
+
| [dolphin-mistral](https://www.nexaai.com/CognitiveComputations/dolphin-2.8-mistral-7b/gguf-q4_0/readme) | NLP | GGUF | `nexa run dolphin-mistral` |
|
|
227
|
+
| [codegemma](https://www.nexaai.com/google/codegemma-2b/gguf-q4_0/readme) | NLP | GGUF | `nexa run codegemma` |
|
|
228
|
+
| [codellama](https://www.nexaai.com/meta/CodeLlama-7b-Instruct/gguf-q2_K/readme) | NLP | GGUF | `nexa run codellama` |
|
|
229
|
+
| [deepseek-coder](https://www.nexaai.com/DeepSeek/deepseek-coder-1.3b-instruct/gguf-q4_0/readme) | NLP | GGUF | `nexa run deepseek-coder` |
|
|
230
|
+
| [phi2](https://www.nexaai.com/microsoft/Phi-2/gguf-q4_0/readme) | NLP | GGUF | `nexa run phi2` |
|
|
231
|
+
| [phi3](https://www.nexaai.com/microsoft/Phi-3-mini-128k-instruct/gguf-q4_0/readme) | NLP | GGUF/ONNX | `nexa run phi3` |
|
|
232
|
+
| [phi3.5](https://nexaai.com/microsoft/Phi-3.5-mini-instruct/gguf-q4_0/readme) | NLP | GGUF | `nexa run phi3.5` |
|
|
233
|
+
| [openelm](https://nexaai.com/apple/OpenELM-3B/gguf-q4_K_M/readme) | NLP | GGUF | `nexa run openelm` |
|
|
234
|
+
| [AMD-Llama-135m](https://nexaai.com/amd/AMD-Llama-135m/gguf-fp16/readme) | NLP | GGUF | `nexa run AMD-Llama-135m:fp16` |
|
|
235
|
+
| [nanollava](https://www.nexaai.com/qnguyen3/nanoLLaVA/gguf-fp16/readme) | Multimodal | GGUF | `nexa run nanollava` |
|
|
236
|
+
| [llava-phi3](https://www.nexaai.com/xtuner/llava-phi-3-mini/gguf-q4_0/readme) | Multimodal | GGUF | `nexa run llava-phi3` |
|
|
237
|
+
| [llava-llama3](https://www.nexaai.com/xtuner/llava-llama-3-8b-v1.1/gguf-q4_0/readme) | Multimodal | GGUF | `nexa run llava-llama3` |
|
|
238
|
+
| [llava1.6-mistral](https://www.nexaai.com/liuhaotian/llava-v1.6-mistral-7b/gguf-q4_0/readme) | Multimodal | GGUF | `nexa run llava1.6-mistral` |
|
|
239
|
+
| [llava1.6-vicuna](https://www.nexaai.com/liuhaotian/llava-v1.6-vicuna-7b/gguf-q4_0/readme) | Multimodal | GGUF | `nexa run llava1.6-vicuna` |
|
|
240
|
+
| [stable-diffusion-v1-4](https://www.nexaai.com/runwayml/stable-diffusion-v1-4/gguf-q4_0/readme) | Computer Vision | GGUF | `nexa run sd1-4` |
|
|
241
|
+
| [stable-diffusion-v1-5](https://www.nexaai.com/runwayml/stable-diffusion-v1-5/gguf-q4_0/readme) | Computer Vision | GGUF/ONNX | `nexa run sd1-5` |
|
|
242
|
+
| [stable-diffusion-v2-1](https://nexaai.com/StabilityAI/stable-diffusion-v2-1/gguf-q4_0/readme) | Computer Vision | GGUF | `nexa run sd2-1` |
|
|
243
|
+
| [stable-diffusion-3-medium](https://nexaai.com/StabilityAI/stable-diffusion-3-medium/gguf-q4_0/readme) | Computer Vision | GGUF | `nexa run sd3` |
|
|
244
|
+
| [FLUX.1-schnell](https://nexaai.com/BlackForestLabs/FLUX.1-schnell/gguf-q4_0/readme) | Computer Vision | GGUF | `nexa run flux` |
|
|
245
|
+
| [lcm-dreamshaper](https://www.nexaai.com/SimianLuo/lcm-dreamshaper-v7/gguf-fp16/readme) | Computer Vision | GGUF/ONNX | `nexa run lcm-dreamshaper` |
|
|
246
|
+
| [hassaku-lcm](https://nexaai.com/stablediffusionapi/hassaku-hentai-model-v13-LCM/gguf-fp16/readme) | Computer Vision | GGUF | `nexa run hassaku-lcm` |
|
|
247
|
+
| [anything-lcm](https://www.nexaai.com/Linaqruf/anything-v30-LCM/gguf-fp16/readme) | Computer Vision | GGUF | `nexa run anything-lcm` |
|
|
248
|
+
| [faster-whisper-tiny](https://www.nexaai.com/Systran/faster-whisper-tiny/bin-cpu-fp16/readme) | Audio | BIN | `nexa run faster-whisper-tiny` |
|
|
249
|
+
| [faster-whisper-small](https://www.nexaai.com/Systran/faster-whisper-small/bin-cpu-fp16/readme) | Audio | BIN | `nexa run faster-whisper-small` |
|
|
250
|
+
| [faster-whisper-medium](https://www.nexaai.com/Systran/faster-whisper-medium/bin-cpu-fp16/readme) | Audio | BIN | `nexa run faster-whisper-medium` |
|
|
251
|
+
| [faster-whisper-base](https://www.nexaai.com/Systran/faster-whisper-base/bin-cpu-fp16/readme) | Audio | BIN | `nexa run faster-whisper-base` |
|
|
252
|
+
| [faster-whisper-large](https://www.nexaai.com/Systran/faster-whisper-large-v3/bin-cpu-fp16/readme) | Audio | BIN | `nexa run faster-whisper-large` |
|
|
253
|
+
| [whisper-large-v3-turbo](https://nexaai.com/Systran/faster-whisper-large-v3-turbo/bin-cpu-fp16/readme) | Audio | BIN | `nexa run faster-whisper-large-turbo` |
|
|
254
|
+
| [whisper-tiny.en](https://nexaai.com/openai/whisper-tiny.en/onnx-cpu-fp32/readme) | Audio | ONNX | `nexa run whisper-tiny.en` |
|
|
255
|
+
| [whisper-tiny](https://nexaai.com/openai/whisper-tiny/onnx-cpu-fp32/readme) | Audio | ONNX | `nexa run whisper-tiny` |
|
|
256
|
+
| [whisper-small.en](https://nexaai.com/openai/whisper-small.en/onnx-cpu-fp32/readme) | Audio | ONNX | `nexa run whisper-small.en` |
|
|
257
|
+
| [whisper-small](https://nexaai.com/openai/whisper-small/onnx-cpu-fp32/readme) | Audio | ONNX | `nexa run whisper-small` |
|
|
258
|
+
| [whisper-base.en](https://nexaai.com/openai/whisper-base.en/onnx-cpu-fp32/readme) | Audio | ONNX | `nexa run whisper-base.en` |
|
|
259
|
+
| [whisper-base](https://nexaai.com/openai/whisper-base/onnx-cpu-fp32/readme) | Audio | ONNX | `nexa run whisper-base` |
|
|
260
|
+
| [mxbai-embed-large-v1](https://nexa.ai/mixedbread-ai/mxbai-embed-large-v1/gguf-fp16/readme) | Embedding | GGUF | `nexa embed mxbai` |
|
|
261
|
+
| [nomic-embed-text-v1.5](https://nexa.ai/nomic-ai/nomic-embed-text-v1.5/gguf-fp16/readme) | Embedding | GGUF | `nexa embed nomic` |
|
|
262
|
+
| [all-MiniLM-L6-v2](https://nexa.ai/sentence-transformers/all-MiniLM-L6-v2/gguf-fp16/readme) | Embedding | GGUF | `nexa embed all-MiniLM-L6-v2:fp16` |
|
|
263
|
+
| [all-MiniLM-L12-v2](https://nexa.ai/sentence-transformers/all-MiniLM-L12-v2/gguf-fp16/readme) | Embedding | GGUF | `nexa embed all-MiniLM-L12-v2:fp16` |
|
|
250
264
|
|
|
251
265
|
## CLI Reference
|
|
252
266
|
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = "0.0.8.8"
|
|
@@ -208,7 +208,7 @@ def run_onnx_inference(args):
|
|
|
208
208
|
|
|
209
209
|
def run_eval_tasks(args):
|
|
210
210
|
try:
|
|
211
|
-
if 'do-not-answer' in args.tasks:
|
|
211
|
+
if args.tasks and 'do-not-answer' in args.tasks:
|
|
212
212
|
if not os.getenv('OPENAI_API_KEY'):
|
|
213
213
|
print("Warning: The 'do-not-answer' task requires an OpenAI API key.")
|
|
214
214
|
print("Please set your API key in the terminal using the following command:")
|
|
@@ -221,9 +221,13 @@ def run_eval_tasks(args):
|
|
|
221
221
|
|
|
222
222
|
from nexa.eval.nexa_eval import NexaEval
|
|
223
223
|
evaluator = NexaEval(model_path, args.tasks, args.limit, args.port, args.nctx)
|
|
224
|
-
|
|
224
|
+
if not args.tasks:
|
|
225
|
+
evaluator.run_perf_eval(args.device, args.new_tokens)
|
|
226
|
+
else:
|
|
227
|
+
evaluator.run_evaluation()
|
|
225
228
|
except Exception as e:
|
|
226
|
-
print(
|
|
229
|
+
print("Please run: pip install nexaai[eval]")
|
|
230
|
+
print(f"Error running evaluation: {e}")
|
|
227
231
|
return
|
|
228
232
|
|
|
229
233
|
def run_embedding_generation(args):
|
|
@@ -257,18 +261,8 @@ def run_embedding_generation(args):
|
|
|
257
261
|
print("Please refer to our docs to install nexaai package: https://docs.nexaai.com/getting-started/installation")
|
|
258
262
|
|
|
259
263
|
def main():
|
|
260
|
-
parser = argparse.ArgumentParser(
|
|
261
|
-
|
|
262
|
-
)
|
|
263
|
-
|
|
264
|
-
parser.add_argument(
|
|
265
|
-
"-V",
|
|
266
|
-
"--version",
|
|
267
|
-
action="version",
|
|
268
|
-
version=__version__,
|
|
269
|
-
help="Show the version of the Nexa SDK.",
|
|
270
|
-
)
|
|
271
|
-
|
|
264
|
+
parser = argparse.ArgumentParser(description="Nexa CLI tool for handling various model operations.")
|
|
265
|
+
parser.add_argument("-V", "--version", action="version", version=__version__, help="Show the version of the Nexa SDK.")
|
|
272
266
|
subparsers = parser.add_subparsers(dest="command", help="sub-command help")
|
|
273
267
|
|
|
274
268
|
# Run command
|
|
@@ -349,7 +343,7 @@ def main():
|
|
|
349
343
|
server_parser.add_argument("-lp", "--local_path", action="store_true", help="Indicate that the model path provided is the local path, must be used with -mt")
|
|
350
344
|
server_parser.add_argument("-mt", "--model_type", type=str, choices=[e.name for e in ModelType], help="Indicate the model running type, must be used with -lp or -hf")
|
|
351
345
|
server_parser.add_argument("-hf", "--huggingface", action="store_true", help="Load model from Hugging Face Hub, must be used with -mt")
|
|
352
|
-
server_parser.add_argument("--host", type=str, default="
|
|
346
|
+
server_parser.add_argument("--host", type=str, default="localhost", help="Host to bind the server to")
|
|
353
347
|
server_parser.add_argument("--port", type=int, default=8000, help="Port to bind the server to")
|
|
354
348
|
server_parser.add_argument("--reload", action="store_true", help="Enable automatic reloading on code changes")
|
|
355
349
|
server_parser.add_argument("--nctx", type=int, default=2048, help="Maximum context length of the model you're using")
|
|
@@ -371,10 +365,18 @@ def main():
|
|
|
371
365
|
# Benchmark Evaluation
|
|
372
366
|
eval_parser = subparsers.add_parser("eval", help="Evaluate models on specified tasks.")
|
|
373
367
|
eval_parser.add_argument("model_path", type=str, help="Path or identifier for the model in Nexa Model Hub")
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
eval_parser.
|
|
377
|
-
|
|
368
|
+
|
|
369
|
+
# General evaluation options
|
|
370
|
+
general_eval_group = eval_parser.add_argument_group('General evaluation options')
|
|
371
|
+
general_eval_group.add_argument("--tasks", type=str, help="Tasks to evaluate the model on, separated by commas.")
|
|
372
|
+
general_eval_group.add_argument("--limit", type=float, help="Limit the number of examples per task. If <1, limit is a percentage of the total number of examples.", default=None)
|
|
373
|
+
general_eval_group.add_argument("--port", type=int, help="Port to bind the server to", default=8300)
|
|
374
|
+
general_eval_group.add_argument("--nctx", type=int, help="Length of context window", default=4096)
|
|
375
|
+
|
|
376
|
+
# Performance evaluation options
|
|
377
|
+
perf_eval_group = eval_parser.add_argument_group('Performance evaluation options')
|
|
378
|
+
perf_eval_group.add_argument("--device", type=str, help="Device to run performance evaluation on, choose from 'cpu', 'cuda', 'mps'", default="cpu")
|
|
379
|
+
perf_eval_group.add_argument("--new_tokens", type=int, help="Number of new tokens to evaluate", default=100)
|
|
378
380
|
|
|
379
381
|
# Embed command
|
|
380
382
|
embed_parser = subparsers.add_parser("embed", help="Generate embeddings for a given prompt.")
|
|
@@ -141,7 +141,7 @@ def nexa_evaluate(
|
|
|
141
141
|
requests[reqtype].append(instance)
|
|
142
142
|
|
|
143
143
|
# Run LM on inputs, get all outputs
|
|
144
|
-
for reqtype, reqs in requests.items():
|
|
144
|
+
for reqtype, reqs in requests.items(): # TODO: probably change to multiprocessing
|
|
145
145
|
eval_logger.info(f"Running {reqtype} requests")
|
|
146
146
|
cloned_reqs = []
|
|
147
147
|
for req in reqs:
|
|
@@ -11,14 +11,21 @@ from pathlib import Path
|
|
|
11
11
|
from contextlib import ExitStack
|
|
12
12
|
from nexa.eval import evaluator
|
|
13
13
|
from nexa.eval.nexa_task.task_manager import TaskManager
|
|
14
|
-
from nexa.eval.utils import make_table,
|
|
14
|
+
from nexa.eval.utils import make_table, handle_non_serializable
|
|
15
15
|
from nexa.gguf.server.nexa_service import run_nexa_ai_service as NexaServer
|
|
16
16
|
from nexa.constants import NEXA_MODEL_EVAL_RESULTS_PATH, NEXA_RUN_MODEL_MAP
|
|
17
|
+
from nexa.eval.nexa_perf import (
|
|
18
|
+
Benchmark,
|
|
19
|
+
BenchmarkConfig,
|
|
20
|
+
InferenceConfig,
|
|
21
|
+
ProcessConfig,
|
|
22
|
+
NexaConfig,
|
|
23
|
+
)
|
|
17
24
|
|
|
18
25
|
logging.basicConfig(level=logging.INFO, format='%(asctime)s - %(levelname)s - %(message)s')
|
|
19
26
|
|
|
20
27
|
class NexaEval:
|
|
21
|
-
def __init__(self, model_path: str, tasks: str, limit: float = None, port: int = None, nctx: int = None):
|
|
28
|
+
def __init__(self, model_path: str, tasks: str = None, limit: float = None, port: int = None, nctx: int = None):
|
|
22
29
|
model_path = NEXA_RUN_MODEL_MAP.get(model_path, model_path)
|
|
23
30
|
self.model_path = model_path
|
|
24
31
|
|
|
@@ -30,14 +37,15 @@ class NexaEval:
|
|
|
30
37
|
self.nctx = nctx if nctx is not None else 4096
|
|
31
38
|
self.initial_port = port if port is not None else 8300
|
|
32
39
|
self.port = self.initial_port
|
|
33
|
-
self.server_url = f"http://
|
|
34
|
-
output_path = Path(NEXA_MODEL_EVAL_RESULTS_PATH) / self.model_name / self.model_tag
|
|
40
|
+
self.server_url = f"http://localhost:{self.port}"
|
|
41
|
+
output_path = Path(NEXA_MODEL_EVAL_RESULTS_PATH) / self.model_name / self.model_tag
|
|
42
|
+
if self.tasks:
|
|
43
|
+
output_path = output_path / self.tasks.replace(',', '_')
|
|
35
44
|
self.eval_args = {
|
|
36
45
|
"model": self.model_path,
|
|
37
46
|
"tasks": self.tasks,
|
|
38
47
|
"limit": self.limit,
|
|
39
48
|
"model_args": f"base_url={self.server_url}/v1/completions",
|
|
40
|
-
"hf_hub_log_args": "",
|
|
41
49
|
"batch_size": 8,
|
|
42
50
|
"output_path": str(output_path),
|
|
43
51
|
"include_path": None,
|
|
@@ -48,14 +56,14 @@ class NexaEval:
|
|
|
48
56
|
while True:
|
|
49
57
|
try:
|
|
50
58
|
with socket.socket(socket.AF_INET, socket.SOCK_STREAM) as s:
|
|
51
|
-
s.bind(('
|
|
59
|
+
s.bind(('localhost', self.port))
|
|
52
60
|
return self.port
|
|
53
61
|
except socket.error:
|
|
54
62
|
logging.info(f"Port {self.port} is in use, trying {self.port + 1}")
|
|
55
63
|
self.port += 1
|
|
56
64
|
|
|
57
65
|
def update_urls(self):
|
|
58
|
-
self.server_url = f"http://
|
|
66
|
+
self.server_url = f"http://localhost:{self.port}"
|
|
59
67
|
self.eval_args["model_args"] = f"base_url={self.server_url}/v1/completions"
|
|
60
68
|
|
|
61
69
|
def start_server(self):
|
|
@@ -64,7 +72,7 @@ class NexaEval:
|
|
|
64
72
|
self.server_process = multiprocessing.Process(
|
|
65
73
|
target=NexaServer,
|
|
66
74
|
args=(self.model_path,),
|
|
67
|
-
kwargs={"host": "
|
|
75
|
+
kwargs={"host": "localhost", "port": self.port, "nctx": self.nctx},
|
|
68
76
|
)
|
|
69
77
|
self.server_process.start()
|
|
70
78
|
logging.info(f"Started server process for model: {self.model_path} on port {self.port} with context window {self.nctx}")
|
|
@@ -182,23 +190,62 @@ class NexaEval:
|
|
|
182
190
|
except Exception as e:
|
|
183
191
|
logging.error(f"An error occurred during evaluation: {e}")
|
|
184
192
|
|
|
193
|
+
def run_perf_eval(self, device: str, new_tokens: int):
|
|
194
|
+
BENCHMARK_NAME = f"nexa_sdk_{self.model_path}"
|
|
195
|
+
launcher_config = ProcessConfig()
|
|
196
|
+
backend_config = NexaConfig(
|
|
197
|
+
device=device,
|
|
198
|
+
model=self.model_path,
|
|
199
|
+
task="text-generation",
|
|
200
|
+
)
|
|
201
|
+
scenario_config = InferenceConfig(
|
|
202
|
+
latency=True,
|
|
203
|
+
memory=True,
|
|
204
|
+
energy=True,
|
|
205
|
+
input_shapes={
|
|
206
|
+
"batch_size": 1, # TODO: make it dynamic, hardcoded to 1 for now
|
|
207
|
+
"sequence_length": 256,
|
|
208
|
+
"vocab_size": 32000,
|
|
209
|
+
},
|
|
210
|
+
generate_kwargs={
|
|
211
|
+
"max_new_tokens": new_tokens,
|
|
212
|
+
"min_new_tokens": new_tokens,
|
|
213
|
+
},
|
|
214
|
+
)
|
|
215
|
+
benchmark_config = BenchmarkConfig(
|
|
216
|
+
name=BENCHMARK_NAME,
|
|
217
|
+
launcher=launcher_config,
|
|
218
|
+
backend=backend_config,
|
|
219
|
+
scenario=scenario_config,
|
|
220
|
+
)
|
|
221
|
+
|
|
222
|
+
# Launch the benchmark with the specified configuration
|
|
223
|
+
benchmark_report = Benchmark.launch(benchmark_config)
|
|
224
|
+
benchmark_report.save_csv(f"benchmark_report_{self.model_path}.csv")
|
|
225
|
+
|
|
226
|
+
|
|
185
227
|
def stop_server(self):
|
|
186
228
|
if self.server_process:
|
|
187
229
|
self.server_process.terminate()
|
|
188
230
|
self.server_process.join()
|
|
189
231
|
logging.info("Server process terminated")
|
|
190
232
|
|
|
191
|
-
def run_eval_inference(model_path: str, tasks: str, limit: float = None, port: int = None, nctx: int = None):
|
|
233
|
+
def run_eval_inference(model_path: str, tasks: str = None, limit: float = None, port: int = None, nctx: int = None, device: str = "cpu", new_tokens: int = 100):
|
|
192
234
|
evaluator = NexaEval(model_path, tasks, limit, port, nctx)
|
|
193
|
-
|
|
235
|
+
if not tasks:
|
|
236
|
+
evaluator.run_perf_eval(device, new_tokens)
|
|
237
|
+
else:
|
|
238
|
+
evaluator.run_evaluation()
|
|
194
239
|
|
|
195
240
|
if __name__ == "__main__":
|
|
196
241
|
parser = argparse.ArgumentParser(description="Run Nexa Model Evaluation")
|
|
197
242
|
parser.add_argument("model_path", type=str, help="Path or identifier for the model in Nexa Model Hub")
|
|
198
|
-
parser.add_argument("--tasks", type=str, help="Tasks to evaluate, comma-separated")
|
|
243
|
+
parser.add_argument("--tasks", type=str, help="Tasks to evaluate, comma-separated", default=None)
|
|
199
244
|
parser.add_argument("--limit", type=float, help="Limit the number of examples per task. If <1, limit is a percentage of the total number of examples.", default=None)
|
|
200
245
|
parser.add_argument("--port", type=int, help="Initial port to bind the server to", default=8300)
|
|
201
246
|
parser.add_argument("--nctx", type=int, help="Length of context window", default=4096)
|
|
202
|
-
|
|
247
|
+
parser.add_argument("--device", type=str, help="Device to run the inference on, choose from 'cpu', 'cuda', 'mps'", default="cpu")
|
|
248
|
+
parser.add_argument("--new_tokens", type=int, help="Number of new tokens to evaluate", default=100)
|
|
249
|
+
|
|
203
250
|
args = parser.parse_args()
|
|
204
|
-
run_eval_inference(args.model_path, args.tasks, args.limit, args.port, args.nctx)
|
|
251
|
+
run_eval_inference(args.model_path, args.tasks, args.limit, args.port, args.nctx, args.device, args.new_tokens)
|