船长_Kevin

关注

基于netron的pytorch模型可视化

船长_Kevin

关注

阅读 115

2022-06-28

可视化效果图

基于netron的pytorch模型可视化_5e

例子

from models.seg_hrnet import get_seg_model
import yaml
import torch
import os

if __name__ == '__main__':
cfgPath = './experiments/cityscapes/seg_hrnet_w18_small_v1_512x1024_sgd_lr1e-2_wd5e-4_bs_12_epoch484.yaml'
with open(cfgPath, 'r') as f:
data = yaml.load(f)

model = get_seg_model(data)
img = torch.randn((2, 3, 512, 512))
output = model(img)
print(output.size())


相关推荐

小龟老师

PyTorch 神经网络模型可视化(Netron)

小龟老师 43 0 0

快乐码农Alan007

Netron 模型可视化神器,保存好的模型丢进去就能可视化!

快乐码农Alan007 41 0 0

菜头粿子园

使用Netron可视化tckpt文件

菜头粿子园 64 0 0

梦为马

使用netron实现对onnx模型结构可视化

梦为马 89 0 0

水墨_青花

网络模型可视化工具 Netron

水墨_青花 87 0 0

大柚子top

【可视化】——pytorch模型可视化工具

大柚子top 214 0 0

爱动漫建模

MegEngine 使用小技巧:使用 Netron 实现模型可视化

爱动漫建模 55 0 0

ZGtheGreat

基于pytorch的特征图可视化

ZGtheGreat 57 0 0

秀儿2020

Pytorch的可视化

秀儿2020 12 0 0

非常帅气的昵称吧

# Pytorch 深度卷积模型的特征可视化

非常帅气的昵称吧 81 0 0

精彩评论(0)

0 0 举报