How could I implement Retina Net or feature pyramidal network for object detection by only using deep learning toolbox?

10 views (last 30 days)
Since MATLAB 2020a, it now provides a new object network scheme such as SSD(single-shot detector), and YOLO v2
as a form of layer template.
Such templates make it easy to implement some typical detection networks, but they seem to be less flexible.
For example, when I want to implement my own detection network with multiple RPNs (from faster RCNN) that are connected to different conv layers,
MATLAB outputs erros because only one RPN should be included in detection network (faster RCNN).
The relatively new networks such as FPN, RetinaNet should have more flexibility to use multi-scale feature maps from conv layers.
How could I implement Retina Net or feature pyramidal network for object detection by only using deep learning toolbox?

Accepted Answer

Raynier Suresh
Raynier Suresh on 23 Feb 2021
Hi, The deep learning toolbox allows you to create custom layers and custom training loops, using these features you can define your network architecture and then train it.
Refer the below links for more information

More Answers (0)

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!