Datasets:
ruanchaves
commited on
Commit
·
e49e1e7
1
Parent(s):
631d245
Update README.md
Browse files
README.md
CHANGED
@@ -1,3 +1,74 @@
|
|
1 |
---
|
2 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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: Dev-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 Dev-Stanford
|
24 |
+
|
25 |
+
## Dataset Description
|
26 |
+
|
27 |
+
- **Repository:** [ardax/hashtag-segmentor](https://github.com/ardax/hashtag-segmentor)
|
28 |
+
- **Paper:** [Segmenting Hashtags and Analyzing Their Grammatical Structure](https://asistdl.onlinelibrary.wiley.com/doi/epdf/10.1002/asi.23989?author_access_token=qbKcE1jrre5nbv_Tn9csbU4keas67K9QMdWULTWMo8NOtY2aA39ck2w5Sm4ePQ1MZhbjCdEuaRlPEw2Kd12jzvwhwoWP0fdroZAwWsmXHPXxryDk_oBCup1i9_VDNIpU)
|
29 |
+
|
30 |
+
### Dataset Summary
|
31 |
+
|
32 |
+
1000 hashtags manually segmented by Çelebi et al. for development purposes,
|
33 |
+
randomly selected from the Stanford Sentiment Tweet Corpus by Sentiment140.
|
34 |
+
|
35 |
+
### Languages
|
36 |
+
|
37 |
+
English
|
38 |
+
|
39 |
+
## Dataset Structure
|
40 |
+
|
41 |
+
### Data Instances
|
42 |
+
|
43 |
+
```
|
44 |
+
{
|
45 |
+
"index": 15,
|
46 |
+
"hashtag": "marathonmonday",
|
47 |
+
"segmentation": "marathon monday"
|
48 |
+
}
|
49 |
+
```
|
50 |
+
|
51 |
+
### Data Fields
|
52 |
+
|
53 |
+
- `index`: a numerical index.
|
54 |
+
- `hashtag`: the original hashtag.
|
55 |
+
- `segmentation`: the gold segmentation for the hashtag.
|
56 |
+
|
57 |
+
### Citation Information
|
58 |
+
|
59 |
+
```
|
60 |
+
@article{celebi2018segmenting,
|
61 |
+
title={Segmenting hashtags and analyzing their grammatical structure},
|
62 |
+
author={Celebi, Arda and {\"O}zg{\"u}r, Arzucan},
|
63 |
+
journal={Journal of the Association for Information Science and Technology},
|
64 |
+
volume={69},
|
65 |
+
number={5},
|
66 |
+
pages={675--686},
|
67 |
+
year={2018},
|
68 |
+
publisher={Wiley Online Library}
|
69 |
+
}
|
70 |
+
```
|
71 |
+
|
72 |
+
### Contributions
|
73 |
+
|
74 |
+
This dataset was added by [@ruanchaves](https://github.com/ruanchaves) while developing the [hashformers](https://github..com/ruanchaves/hashformers) library.
|