nicolas-dufour's picture
squash: merge all unpushed commits
c4c7cee
raw
history blame contribute delete
369 Bytes
_target_: torchvision.transforms.Compose
transforms:
- _target_: torchvision.transforms.Resize
size: 224
interpolation: 3
antialias: true
- _target_: torchvision.transforms.CenterCrop
size: 224
- _target_: torchvision.transforms.ToTensor
- _target_: torchvision.transforms.Normalize
mean: [0.485 ,0.456 ,0.406]
std: [0.229, 0.224, 0.225]