Datasets:
Commit
•
f7ae98a
1
Parent(s):
de11268
Fix `license` metadata (#1)
Browse files- Fix `license` metadata (27689bfe665743cc43e7915576e23bc32cd36e6f)
Co-authored-by: Julien Chaumond <julien-c@users.noreply.huggingface.co>
README.md
CHANGED
@@ -1,132 +1,132 @@
|
|
1 |
-
---
|
2 |
-
annotations_creators:
|
3 |
-
- expert-generated
|
4 |
-
language_creators:
|
5 |
-
- machine-generated
|
6 |
-
|
7 |
-
- en
|
8 |
-
|
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 |
-
## Dataset Creation
|
105 |
-
|
106 |
-
- All hashtag segmentation and identifier splitting datasets on this profile have the same basic fields: `hashtag` and `segmentation` or `identifier` and `segmentation`.
|
107 |
-
|
108 |
-
- The only difference between `hashtag` and `segmentation` or between `identifier` and `segmentation` are the whitespace characters. Spell checking, expanding abbreviations or correcting characters to uppercase go into other fields.
|
109 |
-
|
110 |
-
- There is always whitespace between an alphanumeric character and a sequence of any special characters ( such as `_` , `:`, `~` ).
|
111 |
-
|
112 |
-
- If there are any annotations for named entity recognition and other token classification tasks, they are given in a `spans` field.
|
113 |
-
|
114 |
-
## Additional Information
|
115 |
-
|
116 |
-
|
117 |
-
### Citation Information
|
118 |
-
|
119 |
-
```
|
120 |
-
@misc{bansal2015deep,
|
121 |
-
title={Towards Deep Semantic Analysis Of Hashtags},
|
122 |
-
author={Piyush Bansal and Romil Bansal and Vasudeva Varma},
|
123 |
-
year={2015},
|
124 |
-
eprint={1501.03210},
|
125 |
-
archivePrefix={arXiv},
|
126 |
-
primaryClass={cs.IR}
|
127 |
-
}
|
128 |
-
```
|
129 |
-
|
130 |
-
### Contributions
|
131 |
-
|
132 |
This dataset was added by [@ruanchaves](https://github.com/ruanchaves) while developing the [hashformers](https://github.com/ruanchaves/hashformers) library.
|
|
|
1 |
+
---
|
2 |
+
annotations_creators:
|
3 |
+
- expert-generated
|
4 |
+
language_creators:
|
5 |
+
- machine-generated
|
6 |
+
language:
|
7 |
+
- en
|
8 |
+
license:
|
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 |
+
## Dataset Creation
|
105 |
+
|
106 |
+
- All hashtag segmentation and identifier splitting datasets on this profile have the same basic fields: `hashtag` and `segmentation` or `identifier` and `segmentation`.
|
107 |
+
|
108 |
+
- The only difference between `hashtag` and `segmentation` or between `identifier` and `segmentation` are the whitespace characters. Spell checking, expanding abbreviations or correcting characters to uppercase go into other fields.
|
109 |
+
|
110 |
+
- There is always whitespace between an alphanumeric character and a sequence of any special characters ( such as `_` , `:`, `~` ).
|
111 |
+
|
112 |
+
- If there are any annotations for named entity recognition and other token classification tasks, they are given in a `spans` field.
|
113 |
+
|
114 |
+
## Additional Information
|
115 |
+
|
116 |
+
|
117 |
+
### Citation Information
|
118 |
+
|
119 |
+
```
|
120 |
+
@misc{bansal2015deep,
|
121 |
+
title={Towards Deep Semantic Analysis Of Hashtags},
|
122 |
+
author={Piyush Bansal and Romil Bansal and Vasudeva Varma},
|
123 |
+
year={2015},
|
124 |
+
eprint={1501.03210},
|
125 |
+
archivePrefix={arXiv},
|
126 |
+
primaryClass={cs.IR}
|
127 |
+
}
|
128 |
+
```
|
129 |
+
|
130 |
+
### Contributions
|
131 |
+
|
132 |
This dataset was added by [@ruanchaves](https://github.com/ruanchaves) while developing the [hashformers](https://github.com/ruanchaves/hashformers) library.
|