Spaces:
Runtime error
Runtime error
Update text_to_image.py
Browse files- text_to_image.py +35 -55
text_to_image.py
CHANGED
@@ -1,55 +1,35 @@
|
|
1 |
-
import torch
|
2 |
-
import spaces
|
3 |
-
from diffusers import
|
4 |
-
from PIL import Image
|
5 |
-
from io import BytesIO
|
6 |
-
from utils import load_unet_model
|
7 |
-
|
8 |
-
@spaces.GPU
|
9 |
-
class TextToImage:
|
10 |
-
"""
|
11 |
-
Class to handle Text-to-Image generation using Stable Diffusion XL.
|
12 |
-
"""
|
13 |
-
def __init__(self, device="cpu"):
|
14 |
-
# Model and repository details
|
15 |
-
|
16 |
-
self.
|
17 |
-
self.
|
18 |
-
|
19 |
-
|
20 |
-
|
21 |
-
|
22 |
-
|
23 |
-
|
24 |
-
|
25 |
-
|
26 |
-
|
27 |
-
|
28 |
-
|
29 |
-
|
30 |
-
|
31 |
-
|
32 |
-
|
33 |
-
|
34 |
-
|
35 |
-
|
36 |
-
print("Text-to-Image model loaded successfully.")
|
37 |
-
|
38 |
-
|
39 |
-
async def generate_image(self, prompt):
|
40 |
-
"""
|
41 |
-
Generate an image from a text prompt.
|
42 |
-
|
43 |
-
Args:
|
44 |
-
prompt (str): The text prompt to generate the image.
|
45 |
-
|
46 |
-
Returns:
|
47 |
-
PIL.Image: The generated image.
|
48 |
-
"""
|
49 |
-
with torch.no_grad():
|
50 |
-
image = self.pipe(
|
51 |
-
prompt,
|
52 |
-
num_inference_steps=4,
|
53 |
-
guidance_scale=0
|
54 |
-
).images[0]
|
55 |
-
return image
|
|
|
1 |
+
import torch
|
2 |
+
import spaces
|
3 |
+
from diffusers import StableDiffusionPipeline
|
4 |
+
from PIL import Image
|
5 |
+
from io import BytesIO
|
6 |
+
from utils import load_unet_model
|
7 |
+
|
8 |
+
@spaces.GPU
|
9 |
+
class TextToImage:
|
10 |
+
"""
|
11 |
+
Class to handle Text-to-Image generation using Stable Diffusion XL.
|
12 |
+
"""
|
13 |
+
def __init__(self, device="cpu"):
|
14 |
+
# Model and repository details
|
15 |
+
model_id = "OFA-Sys/small-stable-diffusion-v0"
|
16 |
+
self.device = device
|
17 |
+
self.pipe = StableDiffusionPipeline.from_pretrained(model_id, torch_dtype=torch.float32).pipe.to(device)
|
18 |
+
print("Text-to-Image model loaded successfully.")
|
19 |
+
|
20 |
+
|
21 |
+
async def generate_image(self, prompt):
|
22 |
+
"""
|
23 |
+
Generate an image from a text prompt.
|
24 |
+
|
25 |
+
Args:
|
26 |
+
prompt (str): The text prompt to generate the image.
|
27 |
+
|
28 |
+
Returns:
|
29 |
+
PIL.Image: The generated image.
|
30 |
+
"""
|
31 |
+
with torch.no_grad():
|
32 |
+
image = self.pipe(
|
33 |
+
prompt
|
34 |
+
).images[0]
|
35 |
+
return image
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|