How to do FPGA inference of deblur GAN network using deep learning HDL tool box?
1 view (last 30 days)
Show older comments
I want to implement Deblur GAN on Zync FPGA. I have already trained the dataset on google colab and the weights have been generated. How can I load the trained model in deep learning HDL tool box for inferencing using FPGA?
0 Comments
Answers (1)
Tarunbir Gambhir
on 26 May 2021
You have various options to import a trained model into MATLAB. If your model is a pretrained TensorFlow-Keras network, you can use importKerasNetwork to import the model into MATLAB. You can also import a model of a ONNX (Open Neural Network Exchange) model format using importONNXNetwork. You can refer this documentation for the list of supported Deep Learning model Import and Export options.
After importing the neural network, you can load it into the deep learning HDL workflow. Refer this example on how to deploy a pretrained deep learning network to a target board.
0 Comments
See Also
Categories
Find more on Deep Learning Toolbox in Help Center and File Exchange
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!