Gauri54damle commited on
Commit
3af4c60
·
1 Parent(s): 0e6f849

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -3
app.py CHANGED
@@ -110,9 +110,11 @@ with gr.Blocks(css=css) as demo:
110
 
111
  with gr.Column():
112
 
113
- model = gr.Dropdown(label="baseModel", value=model)
114
- finetuningLayer= gr.Dropdown(label="finetuningLayer", value=finetuningLayer)
115
- prompt = gr.Textbox(label="Prompt", placeholder="photo of McDCoke - it is unique identifier need to be used to identify drinks")
 
 
116
 
117
  with gr.Accordion("Advanced options", open=True):
118
  guidance = gr.Slider(label="Guidance scale", value=7.5, maximum=15)
 
110
 
111
  with gr.Column():
112
 
113
+
114
+ model = gr.Dropdown(label="baseModel",choices=[model], default=model)
115
+ finetuningLayer= gr.Dropdown(label="Finetuning Layer", choices=[finetuningLayer], default=finetuningLayer)
116
+
117
+ prompt = gr.Textbox(label="Prompt", placeholder="photo of burger called McDBigMac placed on serving tray with fries called McDFries- it is unique identifier need to be used to identify burger")
118
 
119
  with gr.Accordion("Advanced options", open=True):
120
  guidance = gr.Slider(label="Guidance scale", value=7.5, maximum=15)