multimodalart HF Staff commited on
Commit
9ea9819
·
verified ·
1 Parent(s): 25e0506

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -6
app.py CHANGED
@@ -54,12 +54,6 @@ with gr.Blocks() as demo:
54
  )
55
  with gr.Row():
56
  with gr.Column():
57
- model_radio = gr.Radio(
58
- choices=["14B", "2B"],
59
- value="14B",
60
- label="Model Selection",
61
- )
62
-
63
  prompt_input = gr.Textbox(
64
  label="Prompt",
65
  lines=5,
@@ -87,6 +81,11 @@ with gr.Blocks() as demo:
87
  label="Seed"
88
  )
89
 
 
 
 
 
 
90
  generate_button = gr.Button("Generate Image")
91
 
92
  with gr.Column():
 
54
  )
55
  with gr.Row():
56
  with gr.Column():
 
 
 
 
 
 
57
  prompt_input = gr.Textbox(
58
  label="Prompt",
59
  lines=5,
 
81
  label="Seed"
82
  )
83
 
84
+ model_radio = gr.Radio(
85
+ choices=["14B", "2B"],
86
+ value="14B",
87
+ label="Model Selection",
88
+ )
89
  generate_button = gr.Button("Generate Image")
90
 
91
  with gr.Column():