zhangchenxu commited on
Commit
813b533
·
1 Parent(s): 3dddf25
Files changed (1) hide show
  1. app.py +4 -4
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 - Answer Verification Tool") as demo:
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 - Answer Verification Tool
196
 
197
- Verify if model-generated answers are semantically correct compared to ground truth, even with formatting differences
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=9
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