Mean and std for transfer learning

I want to use resnet pretrained on Imagenet and fine tune the model on my new dataset (consisting of cell images).
So what must be the mean and std in transforms.Normalize(mean, std, ).
Should it be that of the ImageNet dataset (coz we are using a pretrained model trained on ImageNet)
or we should pass the mean and std of this new dataset?