Spaces:
Running
on
Zero
Running
on
Zero
Commit
•
d951a37
1
Parent(s):
be0bcaf
change diffusers repo
Browse files
app.py
CHANGED
@@ -8,9 +8,9 @@ import spaces
|
|
8 |
device = "cuda" if torch.cuda.is_available() else "cpu"
|
9 |
dtype = torch.float16
|
10 |
|
11 |
-
repo = "stabilityai/stable-diffusion-3-medium"
|
12 |
|
13 |
-
pipe = StableDiffusion3Pipeline.from_pretrained(repo, torch_dtype=torch.float16
|
14 |
|
15 |
MAX_SEED = np.iinfo(np.int32).max
|
16 |
MAX_IMAGE_SIZE = 1344
|
|
|
8 |
device = "cuda" if torch.cuda.is_available() else "cpu"
|
9 |
dtype = torch.float16
|
10 |
|
11 |
+
repo = "stabilityai/stable-diffusion-3-medium-diffusers"
|
12 |
|
13 |
+
pipe = StableDiffusion3Pipeline.from_pretrained(repo, torch_dtype=torch.float16).to(device)
|
14 |
|
15 |
MAX_SEED = np.iinfo(np.int32).max
|
16 |
MAX_IMAGE_SIZE = 1344
|