How could I implement Retina Net or feature pyramidal network for object detection by only using deep learning toolbox?
11 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
DaeYoung
el 10 de Ag. de 2020
Respondida: Raynier Suresh
el 23 de Feb. de 2021
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?
0 comentarios
Respuesta aceptada
Raynier Suresh
el 23 de Feb. de 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
0 comentarios
Más respuestas (0)
Ver también
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!