ruanchaves julien-c HF staff commited on
Commit
06ad14a
1 Parent(s): ff6f3ce

Fix `license` metadata (#1)

Browse files

- Fix `license` metadata (c203582287fd2c34de6710ad6ffb088e5a3b7870)


Co-authored-by: Julien Chaumond <julien-c@users.noreply.huggingface.co>

Files changed (1) hide show
  1. README.md +85 -85
README.md CHANGED
@@ -1,86 +1,86 @@
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
- ## Dataset Creation
58
-
59
- - All hashtag segmentation and identifier splitting datasets on this profile have the same basic fields: `hashtag` and `segmentation` or `identifier` and `segmentation`.
60
-
61
- - 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.
62
-
63
- - There is always whitespace between an alphanumeric character and a sequence of any special characters ( such as `_` , `:`, `~` ).
64
-
65
- - If there are any annotations for named entity recognition and other token classification tasks, they are given in a `spans` field.
66
-
67
- ## Additional Information
68
-
69
- ### Citation Information
70
-
71
- ```
72
- @article{celebi2018segmenting,
73
- title={Segmenting hashtags and analyzing their grammatical structure},
74
- author={Celebi, Arda and {\"O}zg{\"u}r, Arzucan},
75
- journal={Journal of the Association for Information Science and Technology},
76
- volume={69},
77
- number={5},
78
- pages={675--686},
79
- year={2018},
80
- publisher={Wiley Online Library}
81
- }
82
- ```
83
-
84
- ### Contributions
85
-
86
  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: 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
+ ## Dataset Creation
58
+
59
+ - All hashtag segmentation and identifier splitting datasets on this profile have the same basic fields: `hashtag` and `segmentation` or `identifier` and `segmentation`.
60
+
61
+ - 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.
62
+
63
+ - There is always whitespace between an alphanumeric character and a sequence of any special characters ( such as `_` , `:`, `~` ).
64
+
65
+ - If there are any annotations for named entity recognition and other token classification tasks, they are given in a `spans` field.
66
+
67
+ ## Additional Information
68
+
69
+ ### Citation Information
70
+
71
+ ```
72
+ @article{celebi2018segmenting,
73
+ title={Segmenting hashtags and analyzing their grammatical structure},
74
+ author={Celebi, Arda and {\"O}zg{\"u}r, Arzucan},
75
+ journal={Journal of the Association for Information Science and Technology},
76
+ volume={69},
77
+ number={5},
78
+ pages={675--686},
79
+ year={2018},
80
+ publisher={Wiley Online Library}
81
+ }
82
+ ```
83
+
84
+ ### Contributions
85
+
86
  This dataset was added by [@ruanchaves](https://github.com/ruanchaves) while developing the [hashformers](https://github.com/ruanchaves/hashformers) library.