Datasets:

Languages:
code
Multilinguality:
monolingual
Size Categories:
unknown
Language Creators:
machine-generated
Annotations Creators:
expert-generated
Source Datasets:
original
Tags:
word-segmentation
License:
ruanchaves commited on
Commit
18eba7f
1 Parent(s): 403bcab

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +81 -1
README.md CHANGED
@@ -1,3 +1,83 @@
1
  ---
2
- license: other
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ ## Dataset Description
26
+
27
+ - **Repository:** [Loyola University of Delaware Identifier Splitting Oracle](http://www.cs.loyola.edu/~binkley/ludiso/)
28
+ - **Paper:** [An empirical study of identifier splitting techniques](https://dl.acm.org/doi/10.1007/s10664-013-9261-0)
29
+
30
+ ### Dataset Summary
31
+
32
+ In programming languages, identifiers are tokens (also called symbols) which name language entities.
33
+ Some of the kinds of entities an identifier might denote include variables, types, labels, subroutines, and packages.
34
+
35
+ The Loyola University of Delaware Identifier Splitting Oracle is a dataset for identifier segmentation,
36
+ i.e. the task of adding spaces between the words on a identifier.
37
+
38
+ ### Languages
39
+
40
+ - Java
41
+ - C
42
+ - C++
43
+
44
+ ## Dataset Structure
45
+
46
+ ### Data Instances
47
+
48
+ ```
49
+ {
50
+ "index": 0,
51
+ "identifier": "::CreateProcess",
52
+ "segmentation": "::Create Process",
53
+ "language": "cpp",
54
+ "source": "mozilla-source-1.1"
55
+ }
56
+ ```
57
+
58
+ ### Data Fields
59
+
60
+ - `index`: a numerical index.
61
+ - `identifier`: the original identifier.
62
+ - `segmentation`: the gold segmentation for the identifier.
63
+ - `language`: the programming language of the source.
64
+ - `source`: the source of the identifier.
65
+
66
+ ### Citation Information
67
+
68
+ ```
69
+ @article{hill2014empirical,
70
+ title={An empirical study of identifier splitting techniques},
71
+ author={Hill, Emily and Binkley, David and Lawrie, Dawn and Pollock, Lori and Vijay-Shanker, K},
72
+ journal={Empirical Software Engineering},
73
+ volume={19},
74
+ number={6},
75
+ pages={1754--1780},
76
+ year={2014},
77
+ publisher={Springer}
78
+ }
79
+ ```
80
+
81
+ ### Contributions
82
+
83
+ This dataset was added by [@ruanchaves](https://github.com/ruanchaves) while developing the [hashformers](https://github..com/ruanchaves/hashformers) library.