fix namespace for community metric
Browse filesOnly "canonical" metrics (i.e. metrics implemented in `evaluate`) don't need a namespace. For the others you need to prepend the user.
app.py
CHANGED
@@ -2,5 +2,5 @@ import evaluate
|
|
2 |
from evaluate.utils import launch_gradio_widget
|
3 |
|
4 |
|
5 |
-
module = evaluate.load("directional_bias_amplification")
|
6 |
launch_gradio_widget(module)
|
|
|
2 |
from evaluate.utils import launch_gradio_widget
|
3 |
|
4 |
|
5 |
+
module = evaluate.load("angelina-wang/directional_bias_amplification")
|
6 |
launch_gradio_widget(module)
|