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(
[
transforms.RandomResizedCrop(
image_size,
scale=(min_scale, max_scale),
transforms.Resize(
(image_size,image_size),
interpolation=InterpolationMode.BICUBIC,
),
transforms.ToTensor(),
@ -138,4 +137,4 @@ class Blip2ImageEvalProcessor(BlipImageBaseProcessor):
mean = cfg.get("mean", None)
std = cfg.get("std", None)
return cls(image_size=image_size, mean=mean, std=std)
return cls(image_size=image_size, mean=mean, std=std)