Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Embed yolo files #831

Open
wants to merge 22 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
add yolo test, making gguf and reading files from gguf
  • Loading branch information
katsu560 committed Jun 22, 2024
commit e8720f659f7efd586859004e33e8a20651b8484d
9 changes: 9 additions & 0 deletions ci/run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -277,6 +277,15 @@ function gg_run_yolo {
grep -q "truck: 56%" $OUT/${ci}-main.log
grep -q "bicycle: 59%" $OUT/${ci}-main.log

python3 ../examples/yolo/gguf-addfile.py yolov3-tiny.gguf yolov3-tiny-data.gguf data/coco.names data/labels/*.png

(time ./bin/yolov3-tiny -m yolov3-tiny-data.gguf -i ${path_models}/dog.jpg ) 2>&1 | tee -a $OUT/${ci}-main2.log

grep -q "dog: 57%" $OUT/${ci}-main2.log
grep -q "car: 52%" $OUT/${ci}-main2.log
grep -q "truck: 56%" $OUT/${ci}-main2.log
grep -q "bicycle: 59%" $OUT/${ci}-main2.log

set +e
}

Expand Down
Loading