Spaces:
Sleeping
Sleeping
Commit
·
813b533
1
Parent(s):
3dddf25
update
Browse files
app.py
CHANGED
@@ -182,7 +182,7 @@ def load_example(example_index):
|
|
182 |
)
|
183 |
|
184 |
# Create the Gradio interface with proper component initialization
|
185 |
-
with gr.Blocks(title="TinyV
|
186 |
|
187 |
# Define states (invisible components to store values)
|
188 |
temperature = gr.State(value=0.3)
|
@@ -192,9 +192,9 @@ with gr.Blocks(title="TinyV - Answer Verification Tool") as demo:
|
|
192 |
# Header
|
193 |
gr.Markdown(
|
194 |
"""
|
195 |
-
# TinyV -
|
196 |
|
197 |
-
Verify if model-generated answers are semantically correct compared to ground truth
|
198 |
"""
|
199 |
)
|
200 |
|
@@ -230,7 +230,7 @@ with gr.Blocks(title="TinyV - Answer Verification Tool") as demo:
|
|
230 |
result = gr.Textbox(
|
231 |
label="Verification Result",
|
232 |
placeholder="The verification result will appear here...",
|
233 |
-
lines=
|
234 |
)
|
235 |
|
236 |
# Examples section
|
|
|
182 |
)
|
183 |
|
184 |
# Create the Gradio interface with proper component initialization
|
185 |
+
with gr.Blocks(title="TinyV") as demo:
|
186 |
|
187 |
# Define states (invisible components to store values)
|
188 |
temperature = gr.State(value=0.3)
|
|
|
192 |
# Header
|
193 |
gr.Markdown(
|
194 |
"""
|
195 |
+
# TinyV - LLM-Based Verifier for RL
|
196 |
|
197 |
+
Verify if model-generated answers are semantically correct compared to ground truth.
|
198 |
"""
|
199 |
)
|
200 |
|
|
|
230 |
result = gr.Textbox(
|
231 |
label="Verification Result",
|
232 |
placeholder="The verification result will appear here...",
|
233 |
+
lines=10
|
234 |
)
|
235 |
|
236 |
# Examples section
|