Spaces:
Runtime error
Runtime error
Commit
·
3af4c60
1
Parent(s):
0e6f849
Update app.py
Browse files
app.py
CHANGED
@@ -110,9 +110,11 @@ with gr.Blocks(css=css) as demo:
|
|
110 |
|
111 |
with gr.Column():
|
112 |
|
113 |
-
|
114 |
-
|
115 |
-
|
|
|
|
|
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)
|