danieldux commited on
Commit
535f418
1 Parent(s): 7e936ac

Fix examples in Gradio widget initialization

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -56,7 +56,7 @@ def launch_gradio_widget(metric, test_cases):
56
  title=f"Metric: {metric.name}",
57
  article=parse_readme(local_path / "README.md"),
58
  # TODO: load test cases and use them to populate examples
59
- examples=[[parse_test_cases(test_cases, feature_names, gradio_input_types)]],
60
  )
61
 
62
  iface.launch()
 
56
  title=f"Metric: {metric.name}",
57
  article=parse_readme(local_path / "README.md"),
58
  # TODO: load test cases and use them to populate examples
59
+ examples=[parse_test_cases(test_cases, feature_names, gradio_input_types)],
60
  )
61
 
62
  iface.launch()