338. APTOS 2019 Blindness Detection | aptos2019-blindness-detection
恭喜所有的参赛者!
我只使用了 Ben 的裁剪方法(缩放半径 scale radius)。
输出图像大小为 256x256。
train_transform = transforms.Compose([
transforms.Resize((288, 288)),
transforms.RandomAffine(
degrees=(-180, 180),
scale=(0.8889, 1.0),
shear=(-36, 36)),
transforms.CenterCrop(256),
transforms.RandomHorizontalFlip(p=0.5),
transforms.RandomVerticalFlip(p=0.5),
transforms.ColorJitter(contrast=(0.9, 1.1)),
transforms.ToTensor(),
transforms.Normalize([0.485, 0.456, 0.406], [0.229, 0.224, 0.225]),
])
最后,对第二级模型的预测结果取平均值。
幸运的是,我选择了最好的提交结果。
