Hieucyber2208 commited on
Commit
7a96ad1
·
verified ·
1 Parent(s): 55862dc

Update src/image_gen.py

Browse files
Files changed (1) hide show
  1. src/image_gen.py +1 -1
src/image_gen.py CHANGED
@@ -101,7 +101,7 @@ def image_gen(number_of_images = 3,detail_level = "short", perspective="neutral"
101
  texts = split_text_for_images(number_of_images)
102
  index = 0
103
  for text in tqdm(texts, desc="Processing", unit="image"):
104
- output_path = f"./image/{index}.png"
105
  prompt = describe_image(text, detail_level, perspective, emotion, time_setting, art_style)
106
  print(prompt)
107
 
 
101
  texts = split_text_for_images(number_of_images)
102
  index = 0
103
  for text in tqdm(texts, desc="Processing", unit="image"):
104
+ output_path = f"./{index}.png"
105
  prompt = describe_image(text, detail_level, perspective, emotion, time_setting, art_style)
106
  print(prompt)
107