Skip to main content

confidance

  • April 10, 2026
  • 3 replies
  • 54 views

Hello everyone, my name is Mahameru from Indonesia. I'm currently conducting computer vision research using Axelera PCI and M2 cards. I've tried running the model using YOLO Model versions 8 and 11, and I get different confidence levels when running using the CPU/GPU (local on my laptop) and Axelera. Can anyone help me?

3 replies

Spanner
Axelera Team
Forum|alt.badge.img+3
  • Axelera Team
  • April 10, 2026

Hi there ​@Mahameru, welcome on board!

Ah, I bet this is something to do with quantisation.

When a model runs on the CPU/GPU it's using 16 or 32-bit floating point. But on Metis, the model is quantised to an 8-bit integer to get the optimal performance and efficiency benefits of the hardware. So that quantisation step will probably shift confidence scores slightly compared to the original FP32 model, if that makes sense?

But it’s usually pretty minimal even then. Here’s a bit more info about it, that should help. Is it vastly different of you, or  just a bit of a variance?

 


  • Author
  • Cadet
  • April 13, 2026

Hi, thanks for your explanation!

Yes, I understand quantization can affect confidence scores. 
However, in my case the difference is quite large (e.g. 0.8–0.9 on local vs around 0.3 on Axelera).

Could this be related to scaling or post-processing differences?
Also, should I adjust the confidence threshold when running on Metis?

Thanks!


Spanner
Axelera Team
Forum|alt.badge.img+3
  • Axelera Team
  • April 14, 2026

Ooo, yeah, a drop from 0.8–0.9 down to ~0.3 is bigger than what you'd expect from quantisation. That kind of gap likely points to a preprocessing or pipeline mismatch?

To help narrow this down, could you share:

  • What’s your setup? Host system, OS, SDK version etc.
  • Are you using the pre-built model zoo YAMLs from the Voyager SDK (e.g. yolov8n-coco-onnx), or did you export your own YOLO model and write a custom YAML?
  • The commands you're running on both sides (your local laptop and on Axelera) . That way we can try and spot any differences in the pipeline.

👍