ashutoshzade commited on
Commit
6eaa99a
·
verified ·
1 Parent(s): 292705c

Removed layouts

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -29,7 +29,6 @@ interface = Interface(
29
  Dropdown(choices=["gemma_2b_en", "gemma_1b_en"], value="gemma_2b_en", label="Model 2"),
30
  ],
31
  outputs=Text(label="Outputs"),
32
- layout="horizontal",
33
  description=Markdown("""
34
  This Gradio app allows you to compare text generation outputs from two different large language models (LLMs) on the same prompt.
35
 
@@ -41,6 +40,7 @@ interface = Interface(
41
  """),
42
  )
43
 
 
44
  # Launch the Gradio app
45
  interface.launch(share=True) # Set share=True to host on Hugging Face Hub
46
 
 
29
  Dropdown(choices=["gemma_2b_en", "gemma_1b_en"], value="gemma_2b_en", label="Model 2"),
30
  ],
31
  outputs=Text(label="Outputs"),
 
32
  description=Markdown("""
33
  This Gradio app allows you to compare text generation outputs from two different large language models (LLMs) on the same prompt.
34
 
 
40
  """),
41
  )
42
 
43
+
44
  # Launch the Gradio app
45
  interface.launch(share=True) # Set share=True to host on Hugging Face Hub
46