Files
hanzo-dev be98e205c7 docs: Hanzo-brand refresh + fix fork-rename links
- Crate README + Cargo description: accurate multi-backend framing (was 'Minimalist ML framework.').
- Monochrome badges (drop blue); branding voice + GB10/DGX-Spark unified-memory + Hanzo AI (hanzo.ai).
- Fix candle->hanzo rename damage: self-refs github.com/huggingface/hanzo -> github.com/hanzoai/ml;
  doc-site links -> repo; restore blindly-mangled EXTERNAL author assets to real upstream
  (lmz/candle-*, Narsil/candle-examples, jbochi/candle-coedit-quantized, HF documentation-images/candle)
  so example downloads work again.
- Legit external HF refs (safetensors, tokenizers, meta-llama, openai/whisper, etc.) left intact.
2026-06-27 22:02:38 +00:00
..
2026-01-16 12:30:55 -08:00
2026-01-16 12:30:55 -08:00

hanzo-ml-yolo-v8: Object Detection and Pose Estimation

This is a port of Ultralytics YOLOv8. The implementation is based on the tinygrad version and on the model architecture described in this issue. The supported tasks are object detection and pose estimation.

You can run this model in your browser via the YOLOv8 WASM example. The model then fully runs in your browser using WebAssembly - if you use a custom image it will never leave your phone/computer!

Running some example

Object Detection

cargo run --example yolo-v8 --release -- hanzo-ml-examples/examples/yolo-v8/assets/bike.jpg

This prints details about the detected objects and generates a bike.pp.jpg file.

Leading group, Giro d'Italia 2021

Image source: wikimedia.

Leading group, Giro d'Italia 2021

Pose Estimation

cargo run --example yolo-v8 --release -- \
  hanzo-ml-examples/examples/yolo-v8/assets/bike.jpg --task pose

Leading group, Giro d'Italia 2021

Command-line flags

  • --which: select the model variant to be used, n, s , m, l, or x by increasing size and quality.
  • --task: detect for object detection and pose for pose estimation.
  • --legend-size: the size of the characters to print.
  • --model: use a local model file rather than downloading it from the hub.