美文网首页
MNIST手写字符标准化参数

MNIST手写字符标准化参数

作者: 人生一场梦163 | 来源:发表于2019-10-21 11:35 被阅读0次

在mnist手写字符识别的pytorch代码中,回有如下代码:

train_transforms = transforms.Compose([
                           transforms.Resize(32),
                           transforms.ToTensor(),
                           transforms.Normalize((0.1307,), (0.3081,))
                       ])

其中transforms.Normalize((0.1307,), (0.3081,))表示进行标准化,0.1307和0.3081分别是mnist数据集的均值和标准差。

相关文章

网友评论

      本文标题:MNIST手写字符标准化参数

      本文链接:https://www.haomeiwen.com/subject/uvxtvctx.html