-
Notifications
You must be signed in to change notification settings - Fork 46
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
KeyError, (CenterNet Pytorch) #32
Comments
FileNotFoundError: Download the YOLOv3 model using Pytorch, such as 'https://github.com/ultralytics/yolov3'. Then extract it, and rename it as 'yolov3' Traceback (most recent call last): |
asn1crypto = 0.24.0 onnx = 1.8.0 python-apt = 1.6.5+ubuntu0.3 pyxdg = 0.25 matplotlib = 3.3.3 pyverilog = 1.2.1 |
It seems that the version of that repository 'ultralytics/yolov3' has been upgraded and is no longer supported, so checkout tags/v8 and give it a try. |
@RyusukeYamano |
Have you already tried adding the map in the repository manually, that is how it worked for me. |
Thank you. I will try that |
If it works out, I would appreciate you helping me with or sharing your version of the implementation on the FPGA as this is something I not yet managed to succeed in. |
issue
I've tried to load an onnx-model that I had created using a module, "torch.onnx.export", from a ".pth"(Pytorch) model.
The following codes are for these implimentaitions.
Some nodes in my onnx-file couldn't be accepted by 'ng.from_onnx'. For example, 'ConvTranspose' is not supported in NNgen.
As is written on NNgen's Git, I interpreted this as that existing models should be loaded from torchvision instead of creating onnx-file myself.
Is there any possible ways to use my own onnx-file?
Converting a pytorch-file into onnx-file
Loading my own onnx-file. (Getting_started.py )
Loading my own onnx-file
The text was updated successfully, but these errors were encountered: