Fix depreciated enum

This commit is contained in:
Maw-Fox 2022-11-10 05:42:38 -07:00
parent 3fe9df1450
commit 0be39a4887
1 changed files with 2 additions and 2 deletions

View File

@ -401,7 +401,7 @@ class AspectDataset(torch.utils.data.Dataset):
(item[1], item[2]),
bleed=0.0,
centering=(0.5, 0.5),
method=Image.Resampling.LANCZOS
method=Image.Resampling(Image.LANCZOS)
)
return_dict['pixel_values'] = self.transforms(image_file)
@ -548,7 +548,7 @@ def main():
if args.resume:
args.model = args.resume
tokenizer = CLIPTokenizer.from_pretrained(args.model, subfolder='tokenizer', use_auth_token=args.hf_token)
text_encoder = CLIPTextModel.from_pretrained(args.model, subfolder='text_encoder', use_auth_token=args.hf_token)
vae = AutoencoderKL.from_pretrained(args.model, subfolder='vae', use_auth_token=args.hf_token)