danieldux commited on
Commit
19a950c
1 Parent(s): ae40804

Update module to isco_hierarchical_accuracy

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -50,7 +50,7 @@ def launch_gradio_widget(metric, test_cases):
50
  outputs=gr.outputs.Textbox(label=metric.name),
51
  description=(
52
  metric.info.description
53
- # + "\nISCO codes must be wrapped in double quotes."
54
  # " Alternatively you can use a JSON-formatted list as input."
55
  ),
56
  title=f"Metric: {metric.name}",
@@ -61,6 +61,6 @@ def launch_gradio_widget(metric, test_cases):
61
  iface.launch()
62
 
63
 
64
- module = evaluate.load("danieldux/metric_template_1")
65
 
66
  launch_gradio_widget(module, test_cases)
 
50
  outputs=gr.outputs.Textbox(label=metric.name),
51
  description=(
52
  metric.info.description
53
+ + "\nISCO codes must be wrapped in double quotes."
54
  # " Alternatively you can use a JSON-formatted list as input."
55
  ),
56
  title=f"Metric: {metric.name}",
 
61
  iface.launch()
62
 
63
 
64
+ module = evaluate.load("danieldux/isco_hierarchical_accuracy")
65
 
66
  launch_gradio_widget(module, test_cases)