Open appleleaves opened 5 years ago
Hi, What results did you get? Is performance a little bit worse or completely dropped?
Hi,
I also have the same issue. I run the ResNET-18 and I got 64%. What pre-processing did you used to get 68%?
Thanks,
I have the same issue. Top-1 accuracy is 64% for Resnet18 instead of the promised 68%.
Preprocessing I have used to evaluate models:
import albumentations as A
img_size = 256
crop_size = 224
transform = A.Compose([
A.PadIfNeeded(min_height=img_size, min_width=img_size),
A.SmallestMaxSize(max_size=img_size, interpolation=2),
A.CenterCrop(crop_size, crop_size, p=1.0),
], p = 1.0)
As you can notice we cut borders, image size is larger than crop size.
Would you like to tell me where I am doing wrong?