Update blip_processors.py

This commit is contained in:
Jun Chen 2023-11-08 10:21:09 -08:00 committed by GitHub
parent 23671f9861
commit 68d81af31c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -75,9 +75,8 @@ class Blip2ImageTrainProcessor(BlipImageBaseProcessor):
self.transform = transforms.Compose( self.transform = transforms.Compose(
[ [
transforms.RandomResizedCrop( transforms.Resize(
image_size, (image_size,image_size),
scale=(min_scale, max_scale),
interpolation=InterpolationMode.BICUBIC, interpolation=InterpolationMode.BICUBIC,
), ),
transforms.ToTensor(), transforms.ToTensor(),