千家信息网

如何计算pytorch标准化Normalize所需要数据集的均值和方差

发表于:2025-01-16 作者:千家信息网编辑
千家信息网最后更新 2025年01月16日,这篇文章将为大家详细讲解有关如何计算pytorch标准化Normalize所需要数据集的均值和方差,小编觉得挺实用的,因此分享给大家做个参考,希望大家阅读完这篇文章后可以有所收获。pytorch做标准
千家信息网最后更新 2025年01月16日如何计算pytorch标准化Normalize所需要数据集的均值和方差

这篇文章将为大家详细讲解有关如何计算pytorch标准化Normalize所需要数据集的均值和方差,小编觉得挺实用的,因此分享给大家做个参考,希望大家阅读完这篇文章后可以有所收获。

pytorch做标准化利用transforms.Normalize(mean_vals, std_vals),其中常用数据集的均值方差有:

if 'coco' in args.dataset:  mean_vals = [0.471, 0.448, 0.408]  std_vals = [0.234, 0.239, 0.242]elif 'imagenet' in args.dataset:  mean_vals = [0.485, 0.456, 0.406]  std_vals = [0.229, 0.224, 0.225]

计算自己数据集图像像素的均值方差:

import numpy as npimport cv2import random # calculate means and stdtrain_txt_path = './train_val_list.txt' CNum = 10000   # 挑选多少图片进行计算 img_h, img_w = 32, 32imgs = np.zeros([img_w, img_h, 3, 1])means, stdevs = [], [] with open(train_txt_path, 'r') as f:  lines = f.readlines()  random.shuffle(lines)  # shuffle , 随机挑选图片   for i in tqdm_notebook(range(CNum)):    img_path = os.path.join('./train', lines[i].rstrip().split()[0])     img = cv2.imread(img_path)    img = cv2.resize(img, (img_h, img_w))    img = img[:, :, :, np.newaxis]        imgs = np.concatenate((imgs, img), axis=3)#     print(i) imgs = imgs.astype(np.float32)/255.  for i in tqdm_notebook(range(3)):  pixels = imgs[:,:,i,:].ravel() # 拉成一行  means.append(np.mean(pixels))  stdevs.append(np.std(pixels)) # cv2 读取的图像格式为BGR,PIL/Skimage读取到的都是RGB不用转means.reverse() # BGR --> RGBstdevs.reverse() print("normMean = {}".format(means))print("normStd = {}".format(stdevs))print('transforms.Normalize(normMean = {}, normStd = {})'.format(means, stdevs))

关于"如何计算pytorch标准化Normalize所需要数据集的均值和方差"这篇文章就分享到这里了,希望以上内容可以对大家有一定的帮助,使各位可以学到更多知识,如果觉得文章不错,请把它分享出去让更多的人看到。

0