gaur3009 commited on
Commit
9d8547c
1 Parent(s): 9ad5c50

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -19,7 +19,7 @@ MAX_SEED = np.iinfo(np.int32).max
19
  MAX_IMAGE_SIZE = 1024
20
 
21
  def infer(prompt_part1, color, dress_type, design, prompt_part5, negative_prompt, seed, randomize_seed, width, height, guidance_scale, num_inference_steps):
22
- prompt = f"A 4k image of front view and back view where the image is divided into two parts like a collage, with the front view in one part and the back view in the other part, the image is about a {prompt_part1} {color}-colored {dress_type} with {design}, {prompt_part5}. Ensure both front view and back view are detailed, well-lit, and clearly show the continuity of the design from front to back."
23
  if randomize_seed:
24
  seed = random.randint(0, MAX_SEED)
25
 
 
19
  MAX_IMAGE_SIZE = 1024
20
 
21
  def infer(prompt_part1, color, dress_type, design, prompt_part5, negative_prompt, seed, randomize_seed, width, height, guidance_scale, num_inference_steps):
22
+ prompt = f"The image showing front view and back view where the image is divided into two parts like a collage, with the front view in one part and the back view in the other part, the image is {prompt_part1} {color}-colored {dress_type} with {design}, {prompt_part5}. Ensure both front view and back view are detailed, well-lit, and clearly show the continuity of the design from front to back."
23
  if randomize_seed:
24
  seed = random.randint(0, MAX_SEED)
25