Spaces:
Runtime error
Runtime error
Commit
·
e870f88
1
Parent(s):
64123a1
edited strategy messages
Browse files
app.py
CHANGED
@@ -213,19 +213,19 @@ def interface():
|
|
213 |
task_btn = gr.Button(value="Submit")
|
214 |
|
215 |
# Outputs
|
216 |
-
gr.Markdown("### Strategy 1 QA-Based Prompting")
|
217 |
strategy1 = gr.Markdown("S1", visible=False)
|
218 |
with gr.Row():
|
219 |
vicuna_S1_chatbot = gr.Chatbot(label="vicuna-7b")
|
220 |
llama_S1_chatbot = gr.Chatbot(label="llama-7b")
|
221 |
gpt_S1_chatbot = gr.Chatbot(label="gpt-3.5")
|
222 |
-
gr.Markdown("### Strategy 2 Instruction-Based Prompting")
|
223 |
strategy2 = gr.Markdown("S2", visible=False)
|
224 |
with gr.Row():
|
225 |
vicuna_S2_chatbot = gr.Chatbot(label="vicuna-7b")
|
226 |
llama_S2_chatbot = gr.Chatbot(label="llama-7b")
|
227 |
gpt_S2_chatbot = gr.Chatbot(label="gpt-3.5")
|
228 |
-
gr.Markdown("### Strategy 3 Structured Prompting")
|
229 |
strategy3 = gr.Markdown("S3", visible=False)
|
230 |
with gr.Row():
|
231 |
vicuna_S3_chatbot = gr.Chatbot(label="vicuna-7b")
|
|
|
213 |
task_btn = gr.Button(value="Submit")
|
214 |
|
215 |
# Outputs
|
216 |
+
gr.Markdown("### Strategy 1 - QA-Based Prompting")
|
217 |
strategy1 = gr.Markdown("S1", visible=False)
|
218 |
with gr.Row():
|
219 |
vicuna_S1_chatbot = gr.Chatbot(label="vicuna-7b")
|
220 |
llama_S1_chatbot = gr.Chatbot(label="llama-7b")
|
221 |
gpt_S1_chatbot = gr.Chatbot(label="gpt-3.5")
|
222 |
+
gr.Markdown("### Strategy 2 - Instruction-Based Prompting")
|
223 |
strategy2 = gr.Markdown("S2", visible=False)
|
224 |
with gr.Row():
|
225 |
vicuna_S2_chatbot = gr.Chatbot(label="vicuna-7b")
|
226 |
llama_S2_chatbot = gr.Chatbot(label="llama-7b")
|
227 |
gpt_S2_chatbot = gr.Chatbot(label="gpt-3.5")
|
228 |
+
gr.Markdown("### Strategy 3 - Structured Prompting")
|
229 |
strategy3 = gr.Markdown("S3", visible=False)
|
230 |
with gr.Row():
|
231 |
vicuna_S3_chatbot = gr.Chatbot(label="vicuna-7b")
|