"vscode:/vscode.git/clone" did not exist on "b9247022c153c6109ca3e2900869f83144be5740"
run_glide.py 225 Bytes
Newer Older
anton-l's avatar
anton-l committed
1
import torch
2
from modeling_glide import GLIDE
anton-l's avatar
anton-l committed
3
4
5
6
7

generator = torch.Generator()
generator = generator.manual_seed(0)

# 1. Load models
8
pipeline = GLIDE.from_pretrained("fusing/glide-base")
anton-l's avatar
anton-l committed
9
10
11
12

img = pipeline(generator)

print(img)