当前位置: 首页> 游戏> 攻略 > 高端品牌logo_制作网络图的app_市场推广方案范文_淘宝关键词top排行榜

高端品牌logo_制作网络图的app_市场推广方案范文_淘宝关键词top排行榜

时间:2025/7/11 3:02:41来源:https://blog.csdn.net/qq_43620967/article/details/144660732 浏览次数:0次
高端品牌logo_制作网络图的app_市场推广方案范文_淘宝关键词top排行榜

onnx

import onnx_toolmodel_path = 'resnet50_224x224.onnx' #本地模型onnx_tool.model_profile(model_path)

模型

from torchprofile import profile_macs
from mirnet_v2_g3_conv13_noskff_arch import *
from thop import profileif __name__ == '__main__':model_temp = MIRNet_v2(inp_channels=4,out_channels=4,n_feat=32,n_RRG=4,n_MRB=1)model_temp.eval()inp_frames = torch.randn(1, 4, 2568//2, 1440//2)#inp_frames = torch.randn(1, 4, 1920//2, 1080//2)inp_frames = torch.randn(1, 4, 128, 128)macs = profile_macs(model_temp, (inp_frames))print(macs // 1e9) # 计算量在 587 G 左右flops, params = profile(model_temp, inputs = (inp_frames, ))print('MACs = ' + str(flops/1000**3) + 'G' + '(PMRID)')print('Params = ' + str(params/1000**2) + 'M' )
关键字:高端品牌logo_制作网络图的app_市场推广方案范文_淘宝关键词top排行榜

版权声明:

本网仅为发布的内容提供存储空间,不对发表、转载的内容提供任何形式的保证。凡本网注明“来源:XXX网络”的作品,均转载自其它媒体,著作权归作者所有,商业转载请联系作者获得授权,非商业转载请注明出处。

我们尊重并感谢每一位作者,均已注明文章来源和作者。如因作品内容、版权或其它问题,请及时与我们联系,联系邮箱:809451989@qq.com,投稿邮箱:809451989@qq.com

责任编辑: