Sambhavnoobcoder commited on
Commit
39c05ba
·
1 Parent(s): f6d6725

removed examples , images banner

Browse files
Files changed (1) hide show
  1. app.py +5 -6
app.py CHANGED
@@ -53,17 +53,16 @@ def mingle_prompts(first_prompt, second_prompt):
53
  with gr.Blocks() as demo:
54
  gr.Markdown(
55
  '''
56
- <p style="text-align: center;">create a 'chimera' by averaging the embeddings of two different prompts!!</p>
57
  ''')
58
- gr.Image('batman_venum.png', shape=(1024, 205))
59
 
60
  first_prompt = gr.Textbox(label="first_prompt")
61
  second_prompt = gr.Textbox(label="second_prompt")
62
  greet_btn = gr.Button("Submit")
63
- gr.Markdown("## Text Examples")
64
- gr.Examples([['batman, dynamic lighting, photorealistic fantasy concept art, trending on art station, stunning visuals, terrifying, creative, cinematic',
65
- 'venom, dynamic lighting, photorealistic fantasy concept art, trending on art station, stunning visuals, terrifying, creative, cinematic'],
66
- ['A mouse', 'A leopard']], [first_prompt, second_prompt])
67
 
68
  gr.Markdown("# Output Results")
69
  output = gr.Image(shape=(512,512))
 
53
  with gr.Blocks() as demo:
54
  gr.Markdown(
55
  '''
56
+ <p style="text-align: center;">generated an image as an average of 2 prompts inserted !!</p>
57
  ''')
 
58
 
59
  first_prompt = gr.Textbox(label="first_prompt")
60
  second_prompt = gr.Textbox(label="second_prompt")
61
  greet_btn = gr.Button("Submit")
62
+ # gr.Markdown("## Text Examples")
63
+ # gr.Examples([['batman, dynamic lighting, photorealistic fantasy concept art, trending on art station, stunning visuals, terrifying, creative, cinematic',
64
+ # 'venom, dynamic lighting, photorealistic fantasy concept art, trending on art station, stunning visuals, terrifying, creative, cinematic'],
65
+ # ['A mouse', 'A leopard']], [first_prompt, second_prompt])
66
 
67
  gr.Markdown("# Output Results")
68
  output = gr.Image(shape=(512,512))