-
Notifications
You must be signed in to change notification settings - Fork 134
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
Greater module not supported even though it is listed in the repo (AIV-742) #192
Comments
We have not yet tested the greater operator, so this operator has not been registered in dl_module_creator.hpp. |
Hi @sun-xiangyu thank you for your fast response. Is there any plan on testing and registering the |
Please try to register Greater by adding the following code in dl_module_creator.hpp
|
In ".\esp-dl\dl\module\include\dl_module_creator.hpp", I have added
I have tried changing the Would be grateful to get another help on this! |
I looked at your open-source model files, the Greater operator is not quantized. Currently, esp-dl does not support floating-point operators, which is likely the cause of the error. |
We will support Greater op as soon as possible. |
I see, thank you very much for reviewing my code! Looking forward to the update 😁 |
Checklist
How often does this bug occurs?
always
Expected behavior
Quantized model deployed and all layer infos printed.
Actual behavior (suspected bug)
Greater
ops not supported.Error logs or terminal output
Steps to reproduce the behavior
Model Quantization
INPUT_SHAPE
to [784]ONNX_PATH
andESPDL_MODLE_PATH
quant_setting_mobilenet_v2
input 1 toNone
Model Deployment
Project release version
latest
System architecture
Intel/AMD 64-bit (modern PC, older Mac)
Operating system
Windows
Operating system version
Windows 10
Shell
PowerShell
Additional context
Hi, I am using VS Code with ESP-IDF extension v1.6.5 and ESP-IDF v5.3.1. I am deploying simple quantized snnTorch model from an .onnx file. The
Greater
ops is not supported even though it is in the ".\esp-dl\dl\module\include" folder. I have uploaded the ESP-IDF Project folder with the model files in GitHub repo https://github.com/morenzoe/esp-dl-snn-simple. The folder should be placed in the esp-dl GitHub repo folder because it is using esp-dl folder as component in idf_component.yml file.Is there a bug in the
Greater
ops module? Is the implementation ofGreater
ops in the model wrong? Did I do anything wrong in the quantization? Thank you in advance!The text was updated successfully, but these errors were encountered: