ruanchaves commited on
Commit
d8e5dda
·
1 Parent(s): 0d7b7fe

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +115 -1
README.md CHANGED
@@ -1,3 +1,117 @@
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: Test-Stanford
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 Test-Stanford
24
+
25
+ ## Dataset Description
26
+
27
+ - **Paper:** [Towards Deep Semantic Analysis Of Hashtags](https://arxiv.org/abs/1501.03210)
28
+
29
+ ### Dataset Summary
30
+
31
+ Manually Annotated Stanford Sentiment Analysis Dataset by Bansal et al..
32
+
33
+ ### Languages
34
+
35
+ English
36
+
37
+ ## Dataset Structure
38
+
39
+ ### Data Instances
40
+
41
+ ```
42
+ {
43
+ "index": 1467856821,
44
+ "hashtag": "therapyfail",
45
+ "segmentation": "therapy fail",
46
+ "gold_position": 8,
47
+ "rank": {
48
+ "position": [
49
+ 1,
50
+ 2,
51
+ 3,
52
+ 4,
53
+ 5,
54
+ 6,
55
+ 7,
56
+ 8,
57
+ 9,
58
+ 10,
59
+ 11,
60
+ 12,
61
+ 13,
62
+ 14,
63
+ 15,
64
+ 16,
65
+ 17,
66
+ 18,
67
+ 19,
68
+ 20
69
+ ],
70
+ "candidate": [
71
+ "therap y fail",
72
+ "the rap y fail",
73
+ "t her apy fail",
74
+ "the rap yfail",
75
+ "t he rap y fail",
76
+ "thera py fail",
77
+ "ther apy fail",
78
+ "th era py fail",
79
+ "therapy fail",
80
+ "therapy fai l",
81
+ "the r apy fail",
82
+ "the rapyfa il",
83
+ "the rapy fail",
84
+ "t herapy fail",
85
+ "the rapyfail",
86
+ "therapy f ai l",
87
+ "therapy fa il",
88
+ "the rapyf a il",
89
+ "therapy f ail",
90
+ "the ra py fail"
91
+ ]
92
+ }
93
+ }
94
+ ```
95
+
96
+ ### Data Fields
97
+
98
+ - `index`: a numerical index annotated by Kodali et al..
99
+ - `hashtag`: the original hashtag.
100
+ - `segmentation`: the gold segmentation for the hashtag.
101
+ - `gold_position`: position of the gold segmentation on the `segmentation` field inside the `rank`.
102
+ - `rank`: Rank of each candidate selected by a baseline word segmenter ( Segmentations Seeder Module ).
103
+
104
+ ### Citation Information
105
+
106
+ ```
107
+ @article{kodali2022hashset,
108
+ title={HashSet--A Dataset For Hashtag Segmentation},
109
+ author={Kodali, Prashant and Bhatnagar, Akshala and Ahuja, Naman and Shrivastava, Manish and Kumaraguru, Ponnurangam},
110
+ journal={arXiv preprint arXiv:2201.06741},
111
+ year={2022}
112
+ }
113
+ ```
114
+
115
+ ### Contributions
116
+
117
+ This dataset was added by [@ruanchaves](https://github.com/ruanchaves) while developing the [hashformers](https://github..com/ruanchaves/hashformers) library.