Fix `license` metadata
#1
by
julien-c
HF staff
- opened
README.md
CHANGED
@@ -1,85 +1,85 @@
|
|
1 |
-
---
|
2 |
-
annotations_creators:
|
3 |
-
- expert-generated
|
4 |
-
language_creators:
|
5 |
-
- machine-generated
|
6 |
-
|
7 |
-
- code
|
8 |
-
|
9 |
-
- unknown
|
10 |
-
multilinguality:
|
11 |
-
- monolingual
|
12 |
-
pretty_name: Jhotdraw
|
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 Jhotdraw
|
24 |
-
|
25 |
-
## Dataset Description
|
26 |
-
|
27 |
-
- **Paper:** [Helpful or Not? An investigation on the feasibility of identifier splitting via CNN-BiLSTM-CRF](https://ksiresearch.org/seke/seke18paper/seke18paper_167.pdf)
|
28 |
-
|
29 |
-
### Dataset Summary
|
30 |
-
|
31 |
-
In programming languages, identifiers are tokens (also called symbols) which name language entities.
|
32 |
-
Some of the kinds of entities an identifier might denote include variables, types, labels, subroutines, and packages.
|
33 |
-
|
34 |
-
Jhotdraw is a dataset for identifier segmentation, i.e. the task of adding spaces between the words on a identifier.
|
35 |
-
|
36 |
-
### Languages
|
37 |
-
|
38 |
-
- Java
|
39 |
-
|
40 |
-
## Dataset Structure
|
41 |
-
|
42 |
-
### Data Instances
|
43 |
-
|
44 |
-
```
|
45 |
-
{
|
46 |
-
"index": 0,
|
47 |
-
"identifier": "abstractconnectorserializeddataversion",
|
48 |
-
"segmentation": "abstract connector serialized data version"
|
49 |
-
}
|
50 |
-
```
|
51 |
-
|
52 |
-
### Data Fields
|
53 |
-
|
54 |
-
- `index`: a numerical index.
|
55 |
-
- `identifier`: the original identifier.
|
56 |
-
- `segmentation`: the gold segmentation for the identifier.
|
57 |
-
|
58 |
-
## Dataset Creation
|
59 |
-
|
60 |
-
- All hashtag segmentation and identifier splitting datasets on this profile have the same basic fields: `hashtag` and `segmentation` or `identifier` and `segmentation`.
|
61 |
-
|
62 |
-
- 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.
|
63 |
-
|
64 |
-
- There is always whitespace between an alphanumeric character and a sequence of any special characters ( such as `_` , `:`, `~` ).
|
65 |
-
|
66 |
-
- If there are any annotations for named entity recognition and other token classification tasks, they are given in a `spans` field.
|
67 |
-
|
68 |
-
## Additional Information
|
69 |
-
|
70 |
-
### Citation Information
|
71 |
-
|
72 |
-
```
|
73 |
-
@inproceedings{madani2010recognizing,
|
74 |
-
title={Recognizing words from source code identifiers using speech recognition techniques},
|
75 |
-
author={Madani, Nioosha and Guerrouj, Latifa and Di Penta, Massimiliano and Gueheneuc, Yann-Gael and Antoniol, Giuliano},
|
76 |
-
booktitle={2010 14th European Conference on Software Maintenance and Reengineering},
|
77 |
-
pages={68--77},
|
78 |
-
year={2010},
|
79 |
-
organization={IEEE}
|
80 |
-
}
|
81 |
-
```
|
82 |
-
|
83 |
-
### Contributions
|
84 |
-
|
85 |
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: Jhotdraw
|
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 Jhotdraw
|
24 |
+
|
25 |
+
## Dataset Description
|
26 |
+
|
27 |
+
- **Paper:** [Helpful or Not? An investigation on the feasibility of identifier splitting via CNN-BiLSTM-CRF](https://ksiresearch.org/seke/seke18paper/seke18paper_167.pdf)
|
28 |
+
|
29 |
+
### Dataset Summary
|
30 |
+
|
31 |
+
In programming languages, identifiers are tokens (also called symbols) which name language entities.
|
32 |
+
Some of the kinds of entities an identifier might denote include variables, types, labels, subroutines, and packages.
|
33 |
+
|
34 |
+
Jhotdraw is a dataset for identifier segmentation, i.e. the task of adding spaces between the words on a identifier.
|
35 |
+
|
36 |
+
### Languages
|
37 |
+
|
38 |
+
- Java
|
39 |
+
|
40 |
+
## Dataset Structure
|
41 |
+
|
42 |
+
### Data Instances
|
43 |
+
|
44 |
+
```
|
45 |
+
{
|
46 |
+
"index": 0,
|
47 |
+
"identifier": "abstractconnectorserializeddataversion",
|
48 |
+
"segmentation": "abstract connector serialized data version"
|
49 |
+
}
|
50 |
+
```
|
51 |
+
|
52 |
+
### Data Fields
|
53 |
+
|
54 |
+
- `index`: a numerical index.
|
55 |
+
- `identifier`: the original identifier.
|
56 |
+
- `segmentation`: the gold segmentation for the identifier.
|
57 |
+
|
58 |
+
## Dataset Creation
|
59 |
+
|
60 |
+
- All hashtag segmentation and identifier splitting datasets on this profile have the same basic fields: `hashtag` and `segmentation` or `identifier` and `segmentation`.
|
61 |
+
|
62 |
+
- 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.
|
63 |
+
|
64 |
+
- There is always whitespace between an alphanumeric character and a sequence of any special characters ( such as `_` , `:`, `~` ).
|
65 |
+
|
66 |
+
- If there are any annotations for named entity recognition and other token classification tasks, they are given in a `spans` field.
|
67 |
+
|
68 |
+
## Additional Information
|
69 |
+
|
70 |
+
### Citation Information
|
71 |
+
|
72 |
+
```
|
73 |
+
@inproceedings{madani2010recognizing,
|
74 |
+
title={Recognizing words from source code identifiers using speech recognition techniques},
|
75 |
+
author={Madani, Nioosha and Guerrouj, Latifa and Di Penta, Massimiliano and Gueheneuc, Yann-Gael and Antoniol, Giuliano},
|
76 |
+
booktitle={2010 14th European Conference on Software Maintenance and Reengineering},
|
77 |
+
pages={68--77},
|
78 |
+
year={2010},
|
79 |
+
organization={IEEE}
|
80 |
+
}
|
81 |
+
```
|
82 |
+
|
83 |
+
### Contributions
|
84 |
+
|
85 |
This dataset was added by [@ruanchaves](https://github.com/ruanchaves) while developing the [hashformers](https://github.com/ruanchaves/hashformers) library.
|