ruanchaves commited on
Commit
a79bbab
1 Parent(s): 5452b25

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +87 -1
README.md CHANGED
@@ -1,3 +1,89 @@
1
  ---
2
- license: other
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ annotations_creators:
3
+ - expert-generated
4
+ language_creators:
5
+ - machine-generated
6
+ languages:
7
+ - en
8
+ licenses:
9
+ - unknown
10
+ multilinguality:
11
+ - monolingual
12
+ pretty_name: STAN Small
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 Small
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": 6,
56
+ "hashtag": "justsayin",
57
+ "segmentation": "just sayin",
58
+ "alternatives": {
59
+ "segmentation": [
60
+ "just sayin",
61
+ "just sayin "
62
+ ]
63
+ }
64
+ }
65
+ ```
66
+
67
+ ### Data Fields
68
+
69
+ - `index`: a numerical index.
70
+ - `hashtag`: the original hashtag.
71
+ - `segmentation`: the gold segmentation for the hashtag.
72
+ - `alternatives`: other segmentations that are also accepted as a gold segmentation.
73
+
74
+ ### Citation Information
75
+
76
+ ```
77
+ @misc{bansal2015deep,
78
+ title={Towards Deep Semantic Analysis Of Hashtags},
79
+ author={Piyush Bansal and Romil Bansal and Vasudeva Varma},
80
+ year={2015},
81
+ eprint={1501.03210},
82
+ archivePrefix={arXiv},
83
+ primaryClass={cs.IR}
84
+ }
85
+ ```
86
+
87
+ ### Contributions
88
+
89
+ This dataset was added by [@ruanchaves](https://github.com/ruanchaves) while developing the [hashformers](https://github..com/ruanchaves/hashformers) library.