ruanchaves commited on
Commit
ac5d75e
1 Parent(s): 095801f

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +93 -1
README.md CHANGED
@@ -1,3 +1,95 @@
1
  ---
2
- license: agpl-3.0
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ annotations_creators:
3
+ - expert-generated
4
+ language_creators:
5
+ - machine-generated
6
+ languages:
7
+ - en
8
+ licenses:
9
+ - agpl-3.0
10
+ multilinguality:
11
+ - monolingual
12
+ pretty_name: STAN Large
13
+ size_categories:
14
+ - unknown
15
+ source_datasets:
16
+ - original
17
+ task_categories:
18
+ - structure-prediction
19
+ task_ids:
20
+ - structure-prediction-other-word-segmentation
21
  ---
22
+
23
+ # Dataset Card for STAN Large
24
+
25
+ ## Dataset Description
26
+
27
+ - **Repository:** [mounicam/hashtag_master](https://github.com/mounicam/hashtag_master)
28
+ - **Paper:** [Multi-task Pairwise Neural Ranking for Hashtag Segmentation](https://aclanthology.org/P19-1242/)
29
+
30
+ ### Dataset Summary
31
+
32
+ The description below was taken from the paper "Multi-task Pairwise Neural Ranking for Hashtag Segmentation"
33
+ by Maddela et al..
34
+
35
+ "STAN large, our new expert curated dataset, which includes all 12,594 unique English hashtags and their
36
+ associated tweets from the same Stanford dataset.
37
+
38
+ STAN small is the most commonly used dataset in previous work. However, after reexamination, we found annotation
39
+ errors in 6.8% of the hashtags in this dataset, which is significant given that the error rate of the state-of-the art
40
+ models is only around 10%. Most of the errors were related to named entities. For example, #lionhead,
41
+ which refers to the “Lionhead” video game company, was labeled as “lion head”.
42
+
43
+ We therefore constructed the STAN large dataset of 12,594 hashtags with additional quality control for human annotations."
44
+
45
+ ### Languages
46
+
47
+ English
48
+
49
+ ## Dataset Structure
50
+
51
+ ### Data Instances
52
+
53
+ ```
54
+ {
55
+ "index": 15,
56
+ "hashtag": "PokemonPlatinum",
57
+ "segmentation": "Pokemon platinum",
58
+ "alternatives": {
59
+ "segmentation": [
60
+ "Pokemon Platinum"
61
+ ]
62
+ }
63
+ }
64
+ ```
65
+
66
+ ### Data Fields
67
+
68
+ - `index`: a numerical index.
69
+ - `hashtag`: the original hashtag.
70
+ - `segmentation`: the gold segmentation for the hashtag.
71
+ - `alternatives`: other segmentations that are also accepted as a gold segmentation.
72
+
73
+ ### Citation Information
74
+
75
+ ```
76
+ @inproceedings{maddela-etal-2019-multi,
77
+ title = "Multi-task Pairwise Neural Ranking for Hashtag Segmentation",
78
+ author = "Maddela, Mounica and
79
+ Xu, Wei and
80
+ Preo{\c{t}}iuc-Pietro, Daniel",
81
+ booktitle = "Proceedings of the 57th Annual Meeting of the Association for Computational Linguistics",
82
+ month = jul,
83
+ year = "2019",
84
+ address = "Florence, Italy",
85
+ publisher = "Association for Computational Linguistics",
86
+ url = "https://aclanthology.org/P19-1242",
87
+ doi = "10.18653/v1/P19-1242",
88
+ pages = "2538--2549",
89
+ abstract = "Hashtags are often employed on social media and beyond to add metadata to a textual utterance with the goal of increasing discoverability, aiding search, or providing additional semantics. However, the semantic content of hashtags is not straightforward to infer as these represent ad-hoc conventions which frequently include multiple words joined together and can include abbreviations and unorthodox spellings. We build a dataset of 12,594 hashtags split into individual segments and propose a set of approaches for hashtag segmentation by framing it as a pairwise ranking problem between candidate segmentations. Our novel neural approaches demonstrate 24.6{\%} error reduction in hashtag segmentation accuracy compared to the current state-of-the-art method. Finally, we demonstrate that a deeper understanding of hashtag semantics obtained through segmentation is useful for downstream applications such as sentiment analysis, for which we achieved a 2.6{\%} increase in average recall on the SemEval 2017 sentiment analysis dataset.",
90
+ }
91
+ ```
92
+
93
+ ### Contributions
94
+
95
+ This dataset was added by [@ruanchaves](https://github.com/ruanchaves) while developing the [hashformers](https://github..com/ruanchaves/hashformers) library.