Datasets:

Languages:
code
Multilinguality:
monolingual
Size Categories:
unknown
Language Creators:
machine-generated
Annotations Creators:
expert-generated
Source Datasets:
original
License:
ruanchaves julien-c HF staff commited on
Commit
8527247
1 Parent(s): 8d5fa6c

Fix `license` metadata (#1)

Browse files

- Fix `license` metadata (4b8f382efa9392badda6b73c6d7a6011a1d2c0cc)


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

Files changed (1) hide show
  1. README.md +116 -116
README.md CHANGED
@@ -1,117 +1,117 @@
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: Lynx
13
- size_categories:
14
- - unknown
15
- source_datasets:
16
- - original
17
- task_categories:
18
- - structure-prediction
19
- - code-generation
20
- - conditional-text-generation
21
- task_ids:
22
- - structure-prediction-other-word-segmentation
23
- ---
24
-
25
- # Dataset Card for Lynx
26
-
27
- ## Table of Contents
28
- - [Table of Contents](#table-of-contents)
29
- - [Dataset Description](#dataset-description)
30
- - [Dataset Summary](#dataset-summary)
31
- - [Languages](#languages)
32
- - [Dataset Structure](#dataset-structure)
33
- - [Data Instances](#data-instances)
34
- - [Data Fields](#data-fields)
35
- - [Dataset Creation](#dataset-creation)
36
- - [Additional Information](#additional-information)
37
- - [Citation Information](#citation-information)
38
- - [Contributions](#contributions)
39
-
40
- ## Dataset Description
41
-
42
- - **Paper:** [Helpful or Not? An investigation on the feasibility of identifier splitting via CNN-BiLSTM-CRF](https://ksiresearch.org/seke/seke18paper/seke18paper_167.pdf)
43
-
44
- ### Dataset Summary
45
-
46
- In programming languages, identifiers are tokens (also called symbols) which name language entities.
47
- Some of the kinds of entities an identifier might denote include variables, types, labels, subroutines, and packages.
48
-
49
- Lynx is a dataset for identifier segmentation, i.e. the task of adding spaces between the words on a identifier.
50
-
51
- Besides identifier segmentation, the gold labels for this dataset also include abbreviation expansion.
52
-
53
- ### Languages
54
-
55
- - C
56
-
57
- ## Dataset Structure
58
-
59
- ### Data Instances
60
-
61
- ```
62
- {
63
- "index": 3,
64
- "identifier": "abspath",
65
- "segmentation": "abs path",
66
- "expansion": "absolute path",
67
- "spans": {
68
- "text": [
69
- "abs"
70
- ],
71
- "expansion": [
72
- "absolute"
73
- ],
74
- "start": [
75
- 0
76
- ],
77
- "end": [
78
- 4
79
- ]
80
- }
81
- }
82
- ```
83
-
84
- ### Data Fields
85
-
86
- - `index`: a numerical index.
87
- - `identifier`: the original identifier.
88
- - `segmentation`: the gold segmentation for the identifier, without abbreviation expansion.
89
- - `expansion`: the gold segmentation for the identifier, with abbreviation expansion.
90
- - `spans`: the start and end index of each abbreviation, the text of the abbreviation and its corresponding expansion.
91
-
92
- ## Dataset Creation
93
-
94
- - All hashtag segmentation and identifier splitting datasets on this profile have the same basic fields: `hashtag` and `segmentation` or `identifier` and `segmentation`.
95
-
96
- - 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.
97
-
98
- - There is always whitespace between an alphanumeric character and a sequence of any special characters ( such as `_` , `:`, `~` ).
99
-
100
- - If there are any annotations for named entity recognition and other token classification tasks, they are given in a `spans` field.
101
-
102
- ### Citation Information
103
-
104
- ```
105
- @inproceedings{madani2010recognizing,
106
- title={Recognizing words from source code identifiers using speech recognition techniques},
107
- author={Madani, Nioosha and Guerrouj, Latifa and Di Penta, Massimiliano and Gueheneuc, Yann-Gael and Antoniol, Giuliano},
108
- booktitle={2010 14th European Conference on Software Maintenance and Reengineering},
109
- pages={68--77},
110
- year={2010},
111
- organization={IEEE}
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.
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: Lynx
13
+ size_categories:
14
+ - unknown
15
+ source_datasets:
16
+ - original
17
+ task_categories:
18
+ - structure-prediction
19
+ - code-generation
20
+ - conditional-text-generation
21
+ task_ids:
22
+ - structure-prediction-other-word-segmentation
23
+ ---
24
+
25
+ # Dataset Card for Lynx
26
+
27
+ ## Table of Contents
28
+ - [Table of Contents](#table-of-contents)
29
+ - [Dataset Description](#dataset-description)
30
+ - [Dataset Summary](#dataset-summary)
31
+ - [Languages](#languages)
32
+ - [Dataset Structure](#dataset-structure)
33
+ - [Data Instances](#data-instances)
34
+ - [Data Fields](#data-fields)
35
+ - [Dataset Creation](#dataset-creation)
36
+ - [Additional Information](#additional-information)
37
+ - [Citation Information](#citation-information)
38
+ - [Contributions](#contributions)
39
+
40
+ ## Dataset Description
41
+
42
+ - **Paper:** [Helpful or Not? An investigation on the feasibility of identifier splitting via CNN-BiLSTM-CRF](https://ksiresearch.org/seke/seke18paper/seke18paper_167.pdf)
43
+
44
+ ### Dataset Summary
45
+
46
+ In programming languages, identifiers are tokens (also called symbols) which name language entities.
47
+ Some of the kinds of entities an identifier might denote include variables, types, labels, subroutines, and packages.
48
+
49
+ Lynx is a dataset for identifier segmentation, i.e. the task of adding spaces between the words on a identifier.
50
+
51
+ Besides identifier segmentation, the gold labels for this dataset also include abbreviation expansion.
52
+
53
+ ### Languages
54
+
55
+ - C
56
+
57
+ ## Dataset Structure
58
+
59
+ ### Data Instances
60
+
61
+ ```
62
+ {
63
+ "index": 3,
64
+ "identifier": "abspath",
65
+ "segmentation": "abs path",
66
+ "expansion": "absolute path",
67
+ "spans": {
68
+ "text": [
69
+ "abs"
70
+ ],
71
+ "expansion": [
72
+ "absolute"
73
+ ],
74
+ "start": [
75
+ 0
76
+ ],
77
+ "end": [
78
+ 4
79
+ ]
80
+ }
81
+ }
82
+ ```
83
+
84
+ ### Data Fields
85
+
86
+ - `index`: a numerical index.
87
+ - `identifier`: the original identifier.
88
+ - `segmentation`: the gold segmentation for the identifier, without abbreviation expansion.
89
+ - `expansion`: the gold segmentation for the identifier, with abbreviation expansion.
90
+ - `spans`: the start and end index of each abbreviation, the text of the abbreviation and its corresponding expansion.
91
+
92
+ ## Dataset Creation
93
+
94
+ - All hashtag segmentation and identifier splitting datasets on this profile have the same basic fields: `hashtag` and `segmentation` or `identifier` and `segmentation`.
95
+
96
+ - 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.
97
+
98
+ - There is always whitespace between an alphanumeric character and a sequence of any special characters ( such as `_` , `:`, `~` ).
99
+
100
+ - If there are any annotations for named entity recognition and other token classification tasks, they are given in a `spans` field.
101
+
102
+ ### Citation Information
103
+
104
+ ```
105
+ @inproceedings{madani2010recognizing,
106
+ title={Recognizing words from source code identifiers using speech recognition techniques},
107
+ author={Madani, Nioosha and Guerrouj, Latifa and Di Penta, Massimiliano and Gueheneuc, Yann-Gael and Antoniol, Giuliano},
108
+ booktitle={2010 14th European Conference on Software Maintenance and Reengineering},
109
+ pages={68--77},
110
+ year={2010},
111
+ organization={IEEE}
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.