ruanchaves julien-c HF staff commited on
Commit
8a2a975
1 Parent(s): 71d6521

Fix `license` metadata (#1)

Browse files

- Fix `license` metadata (5b3b29d06358c87d75f37623977a7e68fa051328)


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

Files changed (1) hide show
  1. README.md +105 -105
README.md CHANGED
@@ -1,106 +1,106 @@
1
- ---
2
- annotations_creators:
3
- - expert-generated
4
- language_creators:
5
- - machine-generated
6
- languages:
7
- - code
8
- licenses:
9
- - unknown
10
- multilinguality:
11
- - monolingual
12
- pretty_name: The Loyola University of Delaware Identifier Splitting Oracle
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 The Loyola University of Delaware Identifier Splitting Oracle
24
-
25
- ## Table of Contents
26
- - [Table of Contents](#table-of-contents)
27
- - [Dataset Description](#dataset-description)
28
- - [Dataset Summary](#dataset-summary)
29
- - [Languages](#languages)
30
- - [Dataset Structure](#dataset-structure)
31
- - [Data Instances](#data-instances)
32
- - [Data Fields](#data-fields)
33
- - [Dataset Creation](#dataset-creation)
34
- - [Additional Information](#additional-information)
35
- - [Citation Information](#citation-information)
36
- - [Contributions](#contributions)
37
-
38
- ## Dataset Description
39
-
40
- - **Repository:** [Loyola University of Delaware Identifier Splitting Oracle](http://www.cs.loyola.edu/~binkley/ludiso/)
41
- - **Paper:** [An empirical study of identifier splitting techniques](https://dl.acm.org/doi/10.1007/s10664-013-9261-0)
42
-
43
- ### Dataset Summary
44
-
45
- In programming languages, identifiers are tokens (also called symbols) which name language entities.
46
- Some of the kinds of entities an identifier might denote include variables, types, labels, subroutines, and packages.
47
-
48
- The Loyola University of Delaware Identifier Splitting Oracle is a dataset for identifier segmentation,
49
- i.e. the task of adding spaces between the words on a identifier.
50
-
51
- ### Languages
52
-
53
- - Java
54
- - C
55
- - C++
56
-
57
- ## Dataset Structure
58
-
59
- ### Data Instances
60
-
61
- ```
62
- {
63
- "index": 0,
64
- "identifier": "::CreateProcess",
65
- "segmentation": ":: Create Process",
66
- "language": "cpp",
67
- "source": "mozilla-source-1.1"
68
- }
69
- ```
70
-
71
- ### Data Fields
72
-
73
- - `index`: a numerical index.
74
- - `identifier`: the original identifier.
75
- - `segmentation`: the gold segmentation for the identifier.
76
- - `language`: the programming language of the source.
77
- - `source`: the source of the identifier.
78
-
79
- ## Dataset Creation
80
-
81
- - All hashtag segmentation and identifier splitting datasets on this profile have the same basic fields: `hashtag` and `segmentation` or `identifier` and `segmentation`.
82
-
83
- - 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.
84
-
85
- - There is always whitespace between an alphanumeric character and a sequence of any special characters ( such as `_` , `:`, `~` ).
86
-
87
- - If there are any annotations for named entity recognition and other token classification tasks, they are given in a `spans` field.
88
-
89
- ### Citation Information
90
-
91
- ```
92
- @article{hill2014empirical,
93
- title={An empirical study of identifier splitting techniques},
94
- author={Hill, Emily and Binkley, David and Lawrie, Dawn and Pollock, Lori and Vijay-Shanker, K},
95
- journal={Empirical Software Engineering},
96
- volume={19},
97
- number={6},
98
- pages={1754--1780},
99
- year={2014},
100
- publisher={Springer}
101
- }
102
- ```
103
-
104
- ### Contributions
105
-
106
  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
+ - code
8
+ license:
9
+ - unknown
10
+ multilinguality:
11
+ - monolingual
12
+ pretty_name: The Loyola University of Delaware Identifier Splitting Oracle
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 The Loyola University of Delaware Identifier Splitting Oracle
24
+
25
+ ## Table of Contents
26
+ - [Table of Contents](#table-of-contents)
27
+ - [Dataset Description](#dataset-description)
28
+ - [Dataset Summary](#dataset-summary)
29
+ - [Languages](#languages)
30
+ - [Dataset Structure](#dataset-structure)
31
+ - [Data Instances](#data-instances)
32
+ - [Data Fields](#data-fields)
33
+ - [Dataset Creation](#dataset-creation)
34
+ - [Additional Information](#additional-information)
35
+ - [Citation Information](#citation-information)
36
+ - [Contributions](#contributions)
37
+
38
+ ## Dataset Description
39
+
40
+ - **Repository:** [Loyola University of Delaware Identifier Splitting Oracle](http://www.cs.loyola.edu/~binkley/ludiso/)
41
+ - **Paper:** [An empirical study of identifier splitting techniques](https://dl.acm.org/doi/10.1007/s10664-013-9261-0)
42
+
43
+ ### Dataset Summary
44
+
45
+ In programming languages, identifiers are tokens (also called symbols) which name language entities.
46
+ Some of the kinds of entities an identifier might denote include variables, types, labels, subroutines, and packages.
47
+
48
+ The Loyola University of Delaware Identifier Splitting Oracle is a dataset for identifier segmentation,
49
+ i.e. the task of adding spaces between the words on a identifier.
50
+
51
+ ### Languages
52
+
53
+ - Java
54
+ - C
55
+ - C++
56
+
57
+ ## Dataset Structure
58
+
59
+ ### Data Instances
60
+
61
+ ```
62
+ {
63
+ "index": 0,
64
+ "identifier": "::CreateProcess",
65
+ "segmentation": ":: Create Process",
66
+ "language": "cpp",
67
+ "source": "mozilla-source-1.1"
68
+ }
69
+ ```
70
+
71
+ ### Data Fields
72
+
73
+ - `index`: a numerical index.
74
+ - `identifier`: the original identifier.
75
+ - `segmentation`: the gold segmentation for the identifier.
76
+ - `language`: the programming language of the source.
77
+ - `source`: the source of the identifier.
78
+
79
+ ## Dataset Creation
80
+
81
+ - All hashtag segmentation and identifier splitting datasets on this profile have the same basic fields: `hashtag` and `segmentation` or `identifier` and `segmentation`.
82
+
83
+ - 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.
84
+
85
+ - There is always whitespace between an alphanumeric character and a sequence of any special characters ( such as `_` , `:`, `~` ).
86
+
87
+ - If there are any annotations for named entity recognition and other token classification tasks, they are given in a `spans` field.
88
+
89
+ ### Citation Information
90
+
91
+ ```
92
+ @article{hill2014empirical,
93
+ title={An empirical study of identifier splitting techniques},
94
+ author={Hill, Emily and Binkley, David and Lawrie, Dawn and Pollock, Lori and Vijay-Shanker, K},
95
+ journal={Empirical Software Engineering},
96
+ volume={19},
97
+ number={6},
98
+ pages={1754--1780},
99
+ year={2014},
100
+ publisher={Springer}
101
+ }
102
+ ```
103
+
104
+ ### Contributions
105
+
106
  This dataset was added by [@ruanchaves](https://github.com/ruanchaves) while developing the [hashformers](https://github.com/ruanchaves/hashformers) library.