AnamRasool-pixel

Results 14 comments of AnamRasool-pixel

Thank you for your response. Without torch.jit.script, I am getting following issue: /home/anamrasool/.cache/pypoetry/virtualenvs/deepfilternet-v6NBIXXw-py3.10/lib/python3.10/site-packages/torch/fx/_symbolic_trace.py:634: UserWarning: Was not able to add assertion to guarantee correct input input_audio to specialized function. It is...

Yes it is an nn.Module. Initially I was trying to save the model using torch.jit.script but it was resulting into recursivescriptedmodule and was not exported using torch.export.export(). Now, I am...

Thank you so much for the response. It solved the problem I was facing. You are right the code is complicated and I have to rewrite some parts of it...

I have exported the deepfilternet by re-writing some functions of the model. Now I want to implement the second step exir.to_edge but I am unable to install executorch in my...

Yes, I was able to run executorch outside the deepfilternet environment. Thanks a lot for the guidance.

@lucylq I have converted DeepFilterNet to executorch and saved the converted .pte file. I am using a virtual environment for this process. Now I want to build its c++ implementation....

Thanks for the response. I have checked the tensors of my model, they are either contiguous or channels last. Why am I getting error on dimensions when I try to...

Hi @lucylq Can you please update me on my query?

Hi @dbort, I have been trying to make module of my deepfilternet.pte file but I am getting linking issues while including module.h. I am using the cmakelists.txt given here [https://github.com/pytorch/executorch/blob/main/CMakeLists.txt]....

Thanks @lucylq for the response. The solution you gave me solved the problem of linking module.h but when I run the main.cpp it gives me errors related to kernel-registers. Also,...