Skip to content

Deploying YOLOv8 to ARTPEC-8 cameras #144

Answered by Corallo
philippe-heitzmann asked this question in Q&A
Discussion options

You must be logged in to vote

Hello @philippe-heitzmann

Runningjournalctl -u larodafter trying to load the model (and failing) gives you more info about the problem with the model.
Specifically, running it after loading your model you'll see
Apr 13 11:17:43 axis-b8a44f277efe sh[1156]: ERROR: hybrid data type is not supported in conv2d.
This means that the conv2d are quantized only in the kernel parameters, but the convolution excepts input and produce outputs as float. This is not supported.

Besides, looking at your model with netron you can see that other layers are not quantized, like the Add and Mul nodes, this will make the execution fall back to the cpu after each convolution, and that's why you see that error s…

Replies: 7 comments 11 replies

Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Answer selected by Corallo
Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
11 replies
@Corallo
Comment options

@egSat
Comment options

@Corallo
Comment options

@egSat
Comment options

@Corallo
Comment options

Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
3 participants
Converted from issue

This discussion was converted from issue #141 on April 27, 2023 14:18.