Update app.py
Browse files
app.py
CHANGED
@@ -4,41 +4,28 @@ from PIL import Image, ImageDraw, ImageFont
|
|
4 |
import os
|
5 |
import gradio as gr # Import Gradio for the interface
|
6 |
|
7 |
-
# Function to Generate Image
|
8 |
-
def generate_image(prompt, height=1024, width=1024):
|
9 |
-
"""
|
10 |
-
Generate an image using Stable Diffusion from Hugging Face.
|
11 |
-
|
12 |
-
Args:
|
13 |
-
prompt (str): The text prompt to guide image generation.
|
14 |
-
height (int): Height of the generated image.
|
15 |
-
width (int): Width of the generated image.
|
16 |
|
17 |
-
|
18 |
-
|
19 |
-
""
|
20 |
-
# Load Hugging Face access token from environment variables
|
21 |
HUGGINGFACE_API_KEY = os.getenv("HUGGINGFACE_API_KEY")
|
|
|
22 |
if not HUGGINGFACE_API_KEY:
|
23 |
raise ValueError("Hugging Face API key is not set. Export it as HUGGINGFACE_API_KEY.")
|
24 |
-
|
25 |
-
#
|
26 |
-
model_id = "stabilityai/stable-diffusion-2-1"
|
27 |
pipeline = StableDiffusionPipeline.from_pretrained(
|
28 |
model_id,
|
29 |
use_auth_token=HUGGINGFACE_API_KEY,
|
30 |
-
torch_dtype=torch.float16
|
|
|
31 |
)
|
32 |
|
33 |
-
|
34 |
-
device = "cuda" if torch.cuda.is_available() else "cpu"
|
35 |
-
pipeline = pipeline.to(device)
|
36 |
-
|
37 |
-
# Generate the image
|
38 |
image = pipeline(prompt, height=height, width=width).images[0]
|
39 |
-
|
40 |
return image
|
41 |
|
|
|
42 |
# Function to Add Text to Image
|
43 |
def add_text_to_image(image, product_name, tagline, cta_text, font_size=50):
|
44 |
"""
|
|
|
4 |
import os
|
5 |
import gradio as gr # Import Gradio for the interface
|
6 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7 |
|
8 |
+
#Function to generate image
|
9 |
+
def generate_image(prompt, height=512, width=512):
|
10 |
+
model_id = "stabilityai/stable-diffusion-2-1"
|
|
|
11 |
HUGGINGFACE_API_KEY = os.getenv("HUGGINGFACE_API_KEY")
|
12 |
+
|
13 |
if not HUGGINGFACE_API_KEY:
|
14 |
raise ValueError("Hugging Face API key is not set. Export it as HUGGINGFACE_API_KEY.")
|
15 |
+
|
16 |
+
# Use half-precision and reduce model load time
|
|
|
17 |
pipeline = StableDiffusionPipeline.from_pretrained(
|
18 |
model_id,
|
19 |
use_auth_token=HUGGINGFACE_API_KEY,
|
20 |
+
torch_dtype=torch.float16,
|
21 |
+
revision="fp16"
|
22 |
)
|
23 |
|
24 |
+
pipeline = pipeline.to("cuda" if torch.cuda.is_available() else "cpu")
|
|
|
|
|
|
|
|
|
25 |
image = pipeline(prompt, height=height, width=width).images[0]
|
|
|
26 |
return image
|
27 |
|
28 |
+
|
29 |
# Function to Add Text to Image
|
30 |
def add_text_to_image(image, product_name, tagline, cta_text, font_size=50):
|
31 |
"""
|