Saarthak2002 commited on
Commit
6c9d2f5
·
verified ·
1 Parent(s): 6376d60

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +10 -23
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
- Returns:
18
- PIL Image: Generated image.
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
- # Load the Stable Diffusion model
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 if torch.cuda.is_available() else torch.float32
 
31
  )
32
 
33
- # Move to GPU if available
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
  """