How can I visualize solov2 models like Alexnet,Resnet50,etc., in deep learning toobox

I want to see what kind of convolutional layers/pooling layers, etc., are used in this model, and how are these layers connected, in the author's original paper, and my knowledge level is limited to understand them all

 採用された回答

Malay Agarwal
Malay Agarwal 2024 年 12 月 30 日

0 投票

Hi @Yan,
MATLAB has a lot of these models built-in. Refer to the following resource for a list of the models available in MATLAB and how you can visualize them: https://www.mathworks.com/help/deeplearning/ug/pretrained-convolutional-neural-networks.html
Hope this helps!

3 件のコメント

Yan
Yan 2025 年 1 月 2 日
Thank you for your attention to this problem, but unfortunately, I did not find the structure of the solov2 model, only the way to use it.
@Yan, you can create an object detector in MATLAB like this:
detector = solov2("resnet50-coco");
However, as far as I can see there's no way to actually peek into the internal networks used in the object detector. But...if you look at the code for solov2 (by calling "edit solov2"), you will be able to see all the networks used there - see the internal properties such as FeatureNet, NeckNet, MaskFeatNet etc. Loading those networks into Deep Network Designer app might get you what you want.
Yan
Yan 2025 年 2 月 6 日
Thanks!

サインインしてコメントする。

その他の回答 (0 件)

タグ

質問済み:

Yan
2024 年 12 月 30 日

コメント済み:

Yan
2025 年 2 月 6 日

Community Treasure Hunt

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

Start Hunting!

Translated by