Datasets:
Update README.md
Browse files
README.md
CHANGED
@@ -12,7 +12,15 @@ multilinguality:
|
|
12 |
- monolingual
|
13 |
pretty_name: UTCD
|
14 |
---
|
15 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
16 |
UTCD is a curated compilation of 18 datasets revised for Zero-shot Text Classification spanning 3 aspect categories of Sentiment, Intent/Dialogue, and Topic classification. UTCD focuses on the task of zero-shot text classification where the candidate labels are descriptive of the text being classified. TUTCD consists of ~ 6M/800K train/test examples.
|
17 |
|
18 |
UTCD was introduced in the Findings of ACL'23 Paper **Label Agnostic Pre-training for Zero-shot Text Classification** by ***Christopher Clarke, Yuzhao Heng, Yiping Kang, Krisztian Flautner, Lingjia Tang and Jason Mars***.
|
|
|
12 |
- monolingual
|
13 |
pretty_name: UTCD
|
14 |
---
|
15 |
+
# Universal Text Classification Dataset (UTCD)
|
16 |
+
|
17 |
+
## Load dataset
|
18 |
+
```python
|
19 |
+
from datasets import load_dataset
|
20 |
+
dataset = load_dataset('claritylab/utcd', name='aspect-normalized-in-domain')
|
21 |
+
```
|
22 |
+
|
23 |
+
## Description
|
24 |
UTCD is a curated compilation of 18 datasets revised for Zero-shot Text Classification spanning 3 aspect categories of Sentiment, Intent/Dialogue, and Topic classification. UTCD focuses on the task of zero-shot text classification where the candidate labels are descriptive of the text being classified. TUTCD consists of ~ 6M/800K train/test examples.
|
25 |
|
26 |
UTCD was introduced in the Findings of ACL'23 Paper **Label Agnostic Pre-training for Zero-shot Text Classification** by ***Christopher Clarke, Yuzhao Heng, Yiping Kang, Krisztian Flautner, Lingjia Tang and Jason Mars***.
|