macadeliccc commited on
Commit
94c19a4
1 Parent(s): 767f83e
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -50,7 +50,7 @@ def generate_image_with_refinement(prompt):
50
  high_noise_frac = 0.8
51
 
52
  # run both experts
53
- image = pipe(prompt=prompt).images[0]
54
  # Save the image as before
55
  unique_id = str(uuid.uuid4())
56
  image_path = f"generated_images_refined/{unique_id}.jpeg"
 
50
  high_noise_frac = 0.8
51
 
52
  # run both experts
53
+ image = base(prompt=prompt).images[0]
54
  # Save the image as before
55
  unique_id = str(uuid.uuid4())
56
  image_path = f"generated_images_refined/{unique_id}.jpeg"