Datasets:
Tasks:
Token Classification
Modalities:
Text
Sub-tasks:
named-entity-recognition
Languages:
English
Size:
1K - 10K
ArXiv:
License:
update
Browse files- README.md +34 -37
- dataset/label.json +1 -0
README.md
CHANGED
@@ -19,15 +19,15 @@ pretty_name: WNUT 2017
|
|
19 |
## Dataset Description
|
20 |
|
21 |
- **Repository:** [T-NER](https://github.com/asahi417/tner)
|
22 |
-
- **Paper:** [https://
|
23 |
-
- **Dataset:**
|
24 |
-
- **Domain:** Twitter
|
25 |
-
- **Number of Entity:**
|
26 |
|
27 |
|
28 |
### Dataset Summary
|
29 |
-
|
30 |
-
- Entity Types: `
|
31 |
|
32 |
## Dataset Structure
|
33 |
|
@@ -36,8 +36,8 @@ An example of `train` looks as follows.
|
|
36 |
|
37 |
```
|
38 |
{
|
39 |
-
'tokens': ['
|
40 |
-
'tags': [
|
41 |
}
|
42 |
```
|
43 |
|
@@ -45,19 +45,15 @@ An example of `train` looks as follows.
|
|
45 |
The label2id dictionary can be found at [here](https://huggingface.co/datasets/tner/wnut2017/raw/main/dataset/label.json).
|
46 |
```python
|
47 |
{
|
48 |
-
"B-
|
49 |
-
"B-
|
50 |
-
"B-
|
51 |
-
"B-
|
52 |
-
"
|
53 |
-
"
|
54 |
-
"I-
|
55 |
-
"I-
|
56 |
-
"
|
57 |
-
"I-location": 9,
|
58 |
-
"I-person": 10,
|
59 |
-
"I-product": 11,
|
60 |
-
"O": 12
|
61 |
}
|
62 |
```
|
63 |
|
@@ -65,25 +61,26 @@ The label2id dictionary can be found at [here](https://huggingface.co/datasets/t
|
|
65 |
|
66 |
| name |train|validation|test|
|
67 |
|---------|----:|---------:|---:|
|
68 |
-
|
|
69 |
|
70 |
### Citation Information
|
71 |
|
72 |
```
|
73 |
-
@
|
74 |
-
|
75 |
-
|
76 |
-
|
77 |
-
|
78 |
-
|
79 |
-
|
80 |
-
|
81 |
-
|
82 |
-
|
83 |
-
|
84 |
-
|
85 |
-
|
86 |
-
|
87 |
-
|
|
|
88 |
}
|
89 |
```
|
|
|
19 |
## Dataset Description
|
20 |
|
21 |
- **Repository:** [T-NER](https://github.com/asahi417/tner)
|
22 |
+
- **Paper:** [https://arxiv.org/abs/2201.07281](https://arxiv.org/abs/2201.07281)
|
23 |
+
- **Dataset:** TweeBank NER
|
24 |
+
- **Domain:** Twitter
|
25 |
+
- **Number of Entity:** 4
|
26 |
|
27 |
|
28 |
### Dataset Summary
|
29 |
+
TweeBank NER dataset formatted in a part of [TNER](https://github.com/asahi417/tner) project.
|
30 |
+
- Entity Types: `LOC`, `MISC`, `PER, `ORG`
|
31 |
|
32 |
## Dataset Structure
|
33 |
|
|
|
36 |
|
37 |
```
|
38 |
{
|
39 |
+
'tokens': ['RT', '@USER2362', ':', 'Farmall', 'Heart', 'Of', 'The', 'Holidays', 'Tabletop', 'Christmas', 'Tree', 'With', 'Lights', 'And', 'Motion', 'URL1087', '#Holiday', '#Gifts'],
|
40 |
+
'tags': [8, 8, 8, 2, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8]
|
41 |
}
|
42 |
```
|
43 |
|
|
|
45 |
The label2id dictionary can be found at [here](https://huggingface.co/datasets/tner/wnut2017/raw/main/dataset/label.json).
|
46 |
```python
|
47 |
{
|
48 |
+
"B-LOC": 0,
|
49 |
+
"B-MISC": 1,
|
50 |
+
"B-ORG": 2,
|
51 |
+
"B-PER": 3,
|
52 |
+
"I-LOC": 4,
|
53 |
+
"I-MISC": 5,
|
54 |
+
"I-ORG": 6,
|
55 |
+
"I-PER": 7,
|
56 |
+
"O": 8
|
|
|
|
|
|
|
|
|
57 |
}
|
58 |
```
|
59 |
|
|
|
61 |
|
62 |
| name |train|validation|test|
|
63 |
|---------|----:|---------:|---:|
|
64 |
+
|tweebank_ner | 1639| 710 |1201|
|
65 |
|
66 |
### Citation Information
|
67 |
|
68 |
```
|
69 |
+
@article{DBLP:journals/corr/abs-2201-07281,
|
70 |
+
author = {Hang Jiang and
|
71 |
+
Yining Hua and
|
72 |
+
Doug Beeferman and
|
73 |
+
Deb Roy},
|
74 |
+
title = {Annotating the Tweebank Corpus on Named Entity Recognition and Building
|
75 |
+
{NLP} Models for Social Media Analysis},
|
76 |
+
journal = {CoRR},
|
77 |
+
volume = {abs/2201.07281},
|
78 |
+
year = {2022},
|
79 |
+
url = {https://arxiv.org/abs/2201.07281},
|
80 |
+
eprinttype = {arXiv},
|
81 |
+
eprint = {2201.07281},
|
82 |
+
timestamp = {Fri, 21 Jan 2022 13:57:15 +0100},
|
83 |
+
biburl = {https://dblp.org/rec/journals/corr/abs-2201-07281.bib},
|
84 |
+
bibsource = {dblp computer science bibliography, https://dblp.org}
|
85 |
}
|
86 |
```
|
dataset/label.json
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
{"B-LOC": 0, "B-MISC": 1, "B-ORG": 2, "B-PER": 3, "I-LOC": 4, "I-MISC": 5, "I-ORG": 6, "I-PER": 7, "O": 8}
|