Update app.py
Browse files
app.py
CHANGED
@@ -44,7 +44,7 @@ def generate_caption_and_image(image):
|
|
44 |
inputs = {key: val.to(device) for key, val in inputs.items()}
|
45 |
out = model.generate(**inputs)
|
46 |
caption = processor.decode(out[0], skip_special_tokens=True)
|
47 |
-
prompt = f"Create a highly realistic design of a clothing item based on the following description: 'The design should
|
48 |
|
49 |
|
50 |
# Generate image based on the caption
|
|
|
44 |
inputs = {key: val.to(device) for key, val in inputs.items()}
|
45 |
out = model.generate(**inputs)
|
46 |
caption = processor.decode(out[0], skip_special_tokens=True)
|
47 |
+
prompt = f"Create a highly realistic design of a clothing item based on the following description: 'The design should he realted to following {caption}. The clothing should look realistic, modern, and stylish. Use high-quality fabric textures and realistic lighting to give the design a lifelike appearance. The colors, patterns, and materials should reflect the essence of the caption and extracted text.'"
|
48 |
|
49 |
|
50 |
# Generate image based on the caption
|