Simon Narduzzi
Simon Narduzzi
Hello, any update on the default n bit quantization? Is a tutorial available by any chance?
Any update on this?
I'm facing the same issue with MaixPy v0.3.2
Hi @Yhaw, I think I ran into the same problem and solved it by using convolutions with "same" padding. Furthermore, check that each activation map does not exceed 2MB, as...
Hi @Yhaw, You have to modify the model to make sure every convolutional layer is using "same" as padding. One way to do it is to rewrite the model from...
By the way, I have just opened [this issue](https://github.com/kendryte/canmv/issues/35#issue-1721728061) about how to use the latest version of NNCase with the Maix M1 Dock. Hopefully it will solve your problem as...
The error seems to originate from the IDE as the code continues to run on the chip.
Hi @kendryte747, I have updated my IDE to the latest release (Commit: `v2.9.2-2-0-g132467a`), but the bug is not solved. Is it originating from the editor of from the firmware?
It seems that the losses are a list of several losses. Can you try the following code instead? ```python print([x.numpy() for x in quantized_model.losses]) ```