我是靠谱客的博主 落寞月光,最近开发中收集的这篇文章主要介绍使用nn.BatchNorm1d出现RuntimeError: running_mean should contain 1 elements not 512错误,觉得挺不错的,现在分享给大家,希望可以做个参考。
概述
pytorch模型中添加batchnorm过程中出现错误RuntimeError: running_mean should contain 1 elements not 512
,错误来自于nn.BatchNorm1d(N),其中N=channels
解决办法:
将输入重新排列
video = video.view(-1, video.shape[-1])
最后
以上就是落寞月光为你收集整理的使用nn.BatchNorm1d出现RuntimeError: running_mean should contain 1 elements not 512错误的全部内容,希望文章能够帮你解决使用nn.BatchNorm1d出现RuntimeError: running_mean should contain 1 elements not 512错误所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复