Update space name
Browse files
README.md
CHANGED
@@ -25,7 +25,7 @@ The dataset is used to evaluate the quality of hate speech detection models, inc
|
|
25 |
```python
|
26 |
from evaluate import load
|
27 |
|
28 |
-
vishd_metric = load("phucdev/
|
29 |
references = [0, 1]
|
30 |
predictions = [0, 1]
|
31 |
results = vishd_metric.compute(predictions=predictions, references=references)
|
@@ -86,7 +86,7 @@ They used the raw texts of the ViHSD dataset for training and testing, without a
|
|
86 |
```python
|
87 |
from evaluate import load
|
88 |
|
89 |
-
vishd_metric = load("phucdev/
|
90 |
references = [0, 1]
|
91 |
predictions = [0, 1]
|
92 |
results = vishd_metric.compute(predictions=predictions, references=references)
|
|
|
25 |
```python
|
26 |
from evaluate import load
|
27 |
|
28 |
+
vishd_metric = load("phucdev/vihsd")
|
29 |
references = [0, 1]
|
30 |
predictions = [0, 1]
|
31 |
results = vishd_metric.compute(predictions=predictions, references=references)
|
|
|
86 |
```python
|
87 |
from evaluate import load
|
88 |
|
89 |
+
vishd_metric = load("phucdev/vihsd")
|
90 |
references = [0, 1]
|
91 |
predictions = [0, 1]
|
92 |
results = vishd_metric.compute(predictions=predictions, references=references)
|
app.py
CHANGED
@@ -2,5 +2,5 @@ import evaluate
|
|
2 |
from evaluate.utils import launch_gradio_widget
|
3 |
|
4 |
|
5 |
-
module = evaluate.load("phucdev/
|
6 |
launch_gradio_widget(module)
|
|
|
2 |
from evaluate.utils import launch_gradio_widget
|
3 |
|
4 |
|
5 |
+
module = evaluate.load("phucdev/vihsd")
|
6 |
launch_gradio_widget(module)
|