My-AI-Projects commited on
Commit
d415aed
Β·
verified Β·
1 Parent(s): bd84033

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -9,8 +9,8 @@ pipeline.enable_model_cpu_offload() #save some VRAM by offloading the model to C
9
 
10
 
11
  # Set the model to the appropriate device
12
- #device = "cuda" if torch.cuda.is_available() else "cpu"
13
- #pipeline.to(device)
14
 
15
  def generate_image(prompt, guidance_scale=7.5, num_inference_steps=50):
16
  # Generate an image based on the prompt
 
9
 
10
 
11
  # Set the model to the appropriate device
12
+ device = "cuda" if torch.cuda.is_available() else "cpu"
13
+ pipeline.to(device)
14
 
15
  def generate_image(prompt, guidance_scale=7.5, num_inference_steps=50):
16
  # Generate an image based on the prompt