-
Notifications
You must be signed in to change notification settings - Fork 41
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
alexnet_params.h not found #29
Comments
We generated one internally a long time ago, but we didn't end up pushing it because it was pretty large. I've taken a look, and I can't find it anymore. If I end up finding the file later, I'll update you. In the meantime, if you want to run |
If you were to port a trained model parameters to work in RoCC/Gemmini, what steps would it take to do the necessary quantizations? Been looking around all available resources but couldn't get a solid answer for this. |
@k0nze Did you managed to generate the dummy parameters for alexnet? I am also interested in executing it. |
@mbelda No, I haven't I might have a look in the coming weeks. |
@k0nze Did you generate the parameters for alexnet? |
@mbelda I ended up implementing Conv2D and FC AlexNet Layer from scratch |
@k0nze Do you mind sharing the code please? |
I'm not able to share the code, but it was quite straightforward. As I was only interested in the runtime of AlexNet I filled the weights in the header with 0 and just set the correct dimensions taken from the torchvision implementation. |
Oh, I see. I was asking because I needed trained parameters, but since you used all zeros, I can't use your code. Thank you anyway. |
In the
imagenet
directory is aalexnet.c
which I would like to compile. However, the ?alexnet_params.h
andalexnet_images.h
are missing from that directory, and due to that, the compilation of AlexNet fails. Is it possible to get the header files for AlexNet?The text was updated successfully, but these errors were encountered: