awacke1 commited on
Commit
ce3b7d7
1 Parent(s): 0005f05

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -93,7 +93,7 @@ def predict(prompt, guidance, steps, seed=1231231):
93
  if len(results.images) > 0:
94
  image_path = os.path.join("", filename) # Specify your directory
95
  results.images[0].save(image_path)
96
- gr.Markdown(f"#Image saved as {image_path}")
97
 
98
  return results.images[0] if len(results.images) > 0 else None
99
 
 
93
  if len(results.images) > 0:
94
  image_path = os.path.join("", filename) # Specify your directory
95
  results.images[0].save(image_path)
96
+ print(f"#Image saved as {image_path}")
97
 
98
  return results.images[0] if len(results.images) > 0 else None
99