Commit
·
9ca0ae0
1
Parent(s):
26a8a58
Updated README.md
Browse files
README.md
CHANGED
@@ -1,3 +1,28 @@
|
|
1 |
---
|
2 |
license: apache-2.0
|
3 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
---
|
2 |
license: apache-2.0
|
3 |
---
|
4 |
+
|
5 |
+
# azaheadhealth
|
6 |
+
|
7 |
+
### Dataset INFO
|
8 |
+
|
9 |
+
```python
|
10 |
+
features=datasets.Features(
|
11 |
+
{
|
12 |
+
"text": datasets.Value("string"),
|
13 |
+
"label": datasets.ClassLabel(num_classes=2, names=["NEGATIVE", "POSITIVE"]),
|
14 |
+
}
|
15 |
+
),
|
16 |
+
supervised_keys=None,
|
17 |
+
task_templates=[
|
18 |
+
TextClassification(
|
19 |
+
text_column="text", label_column="label"
|
20 |
+
)
|
21 |
+
]
|
22 |
+
```
|
23 |
+
|
24 |
+
### Dataset DESCRIPTION
|
25 |
+
|
26 |
+
`azaheadhealth` is a custom dataset for training binary text classifiers in the public health domain.
|
27 |
+
|
28 |
+
02.05.24 - The `small` dataset is available. This set contains a `train` and `test` split with 160 and 24 examples respectively, at roughly 10:6 Negative:Positive examples each.
|