init
Browse files
README.md
ADDED
@@ -0,0 +1,81 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
language:
|
3 |
+
- en
|
4 |
+
license:
|
5 |
+
- other
|
6 |
+
multilinguality:
|
7 |
+
- monolingual
|
8 |
+
size_categories:
|
9 |
+
- 1k<10K
|
10 |
+
task_categories:
|
11 |
+
- token-classification
|
12 |
+
task_ids:
|
13 |
+
- named-entity-recognition
|
14 |
+
pretty_name: TTC
|
15 |
+
---
|
16 |
+
|
17 |
+
# Dataset Card for "tner/ttc"
|
18 |
+
|
19 |
+
## Dataset Description
|
20 |
+
|
21 |
+
- **Repository:** [T-NER](https://github.com/asahi417/tner)
|
22 |
+
- **Paper:** [https://aclanthology.org/2020.acl-main.680/](https://aclanthology.org/2020.acl-main.680/)
|
23 |
+
- **Dataset:** Temporal Twitter Corpus
|
24 |
+
- **Domain:** Twitter
|
25 |
+
- **Number of Entity:** 3
|
26 |
+
|
27 |
+
|
28 |
+
### Dataset Summary
|
29 |
+
Broad Twitter Corpus NER dataset formatted in a part of [TNER](https://github.com/asahi417/tner) project.
|
30 |
+
- Entity Types: `LOC`, `ORG`, `PER`
|
31 |
+
|
32 |
+
## Dataset Structure
|
33 |
+
|
34 |
+
### Data Instances
|
35 |
+
An example of `train` looks as follows.
|
36 |
+
|
37 |
+
```
|
38 |
+
{
|
39 |
+
'tokens': ['😝', 'lemme', 'ask', '$MENTION$', ',', 'Timb', '???', '"', '$MENTION$', ':', '$RESERVED$', '!!!', '"', '$MENTION$', ':', '$MENTION$', 'Nezzzz', '!!', 'How', "'", 'bout', 'do', 'a', 'duet', 'with', '$MENTION$', '??!', ';)', '"'],
|
40 |
+
'tags': [6, 6, 6, 6, 6, 2, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6]
|
41 |
+
}
|
42 |
+
```
|
43 |
+
|
44 |
+
### Label ID
|
45 |
+
The label2id dictionary can be found at [here](https://huggingface.co/datasets/tner/btc/raw/main/dataset/label.json).
|
46 |
+
```python
|
47 |
+
{
|
48 |
+
"B-LOC": 0,
|
49 |
+
"B-ORG": 1,
|
50 |
+
"B-PER": 2,
|
51 |
+
"I-LOC": 3,
|
52 |
+
"I-ORG": 4,
|
53 |
+
"I-PER": 5,
|
54 |
+
"O": 6
|
55 |
+
}
|
56 |
+
```
|
57 |
+
|
58 |
+
### Data Splits
|
59 |
+
|
60 |
+
| name |train|validation|test|
|
61 |
+
|---------|----:|---------:|---:|
|
62 |
+
|ttc | 9995| 500|1477|
|
63 |
+
|
64 |
+
### Citation Information
|
65 |
+
|
66 |
+
```
|
67 |
+
@inproceedings{rijhwani-preotiuc-pietro-2020-temporally,
|
68 |
+
title = "Temporally-Informed Analysis of Named Entity Recognition",
|
69 |
+
author = "Rijhwani, Shruti and
|
70 |
+
Preotiuc-Pietro, Daniel",
|
71 |
+
booktitle = "Proceedings of the 58th Annual Meeting of the Association for Computational Linguistics",
|
72 |
+
month = jul,
|
73 |
+
year = "2020",
|
74 |
+
address = "Online",
|
75 |
+
publisher = "Association for Computational Linguistics",
|
76 |
+
url = "https://aclanthology.org/2020.acl-main.680",
|
77 |
+
doi = "10.18653/v1/2020.acl-main.680",
|
78 |
+
pages = "7605--7617",
|
79 |
+
abstract = "Natural language processing models often have to make predictions on text data that evolves over time as a result of changes in language use or the information described in the text. However, evaluation results on existing data sets are seldom reported by taking the timestamp of the document into account. We analyze and propose methods that make better use of temporally-diverse training data, with a focus on the task of named entity recognition. To support these experiments, we introduce a novel data set of English tweets annotated with named entities. We empirically demonstrate the effect of temporal drift on performance, and how the temporal information of documents can be used to obtain better models compared to those that disregard temporal information. Our analysis gives insights into why this information is useful, in the hope of informing potential avenues of improvement for named entity recognition as well as other NLP tasks under similar experimental setups.",
|
80 |
+
}
|
81 |
+
```
|