drndr commited on
Commit
d63087b
·
verified ·
1 Parent(s): 0d48d9b

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +22 -90
README.md CHANGED
@@ -9,118 +9,50 @@ size_categories:
9
  - 1K<n<10K
10
  pretty_name: statcodesearch
11
  ---
12
- # Dataset Card for Dataset Name
13
 
14
  <!-- Provide a quick summary of the dataset. -->
15
 
16
- The StatCodeSearch dataset is a benchmark test set consisting of code comment pairs extracted from R programming language scripts authored mostly by researchers. The dataset is sourced from the Open Science Framework (OSF). It includes text and code samples from R projects that pertain to the fields of social science and psychology with a focus on the statistical analysis of research data
17
 
18
  ## Dataset Details
19
 
20
- ### Dataset Description
21
-
22
- <!-- Provide a longer summary of what this dataset is. -->
23
-
24
-
25
-
26
- - **Curated by:** [More Information Needed]
27
- - **Funded by [optional]:** [More Information Needed]
28
- - **Shared by [optional]:** [More Information Needed]
29
- - **Language(s) (NLP):** [More Information Needed]
30
- - **License:** [More Information Needed]
31
 
32
  ### Dataset Sources [optional]
33
 
34
  <!-- Provide the basic links for the dataset. -->
35
 
36
- - **Repository:** [More Information Needed]
37
- - **Paper [optional]:** [More Information Needed]
38
- - **Demo [optional]:** [More Information Needed]
39
-
40
  ## Uses
41
 
42
- <!-- Address questions around how the dataset is intended to be used. -->
43
 
44
- ### Direct Use
45
 
46
- <!-- This section describes suitable use cases for the dataset. -->
47
-
48
- [More Information Needed]
49
-
50
- ### Out-of-Scope Use
51
-
52
- <!-- This section addresses misuse, malicious use, and uses that the dataset will not work well for. -->
53
-
54
- [More Information Needed]
55
 
56
  ## Dataset Structure
57
 
58
- <!-- This section provides a description of the dataset fields, and additional information about the dataset structure such as criteria used to create the splits, relationships between data points, etc. -->
59
-
60
- [More Information Needed]
61
-
62
- ## Dataset Creation
63
-
64
- ### Curation Rationale
65
-
66
- <!-- Motivation for the creation of this dataset. -->
67
-
68
- [More Information Needed]
69
-
70
- ### Source Data
71
-
72
- <!-- This section describes the source data (e.g. news text and headlines, social media posts, translated sentences, ...). -->
73
-
74
- #### Data Collection and Processing
75
-
76
- <!-- This section describes the data collection and processing process such as data selection criteria, filtering and normalization methods, tools and libraries used, etc. -->
77
-
78
- [More Information Needed]
79
-
80
- #### Who are the source data producers?
81
 
82
- <!-- This section describes the people or systems who originally created the data. It should also include self-reported demographic or identity information for the source data creators if this information is available. -->
83
-
84
- [More Information Needed]
85
-
86
- ### Annotations [optional]
87
-
88
- <!-- If the dataset contains annotations which are not part of the initial data collection, use this section to describe them. -->
89
-
90
- #### Annotation process
91
-
92
- <!-- This section describes the annotation process such as annotation tools used in the process, the amount of data annotated, annotation guidelines provided to the annotators, interannotator statistics, annotation validation, etc. -->
93
-
94
- [More Information Needed]
95
-
96
- #### Who are the annotators?
97
-
98
- <!-- This section describes the people or systems who created the annotations. -->
99
-
100
- [More Information Needed]
101
-
102
- #### Personal and Sensitive Information
103
-
104
- <!-- State whether the dataset contains data that might be considered personal, sensitive, or private (e.g., data that reveals addresses, uniquely identifiable names or aliases, racial or ethnic origins, sexual orientations, religious beliefs, political opinions, financial or health data, etc.). If efforts were made to anonymize the data, describe the anonymization process. -->
105
-
106
- [More Information Needed]
107
-
108
- ## Bias, Risks, and Limitations
109
-
110
- <!-- This section is meant to convey both technical and sociotechnical limitations. -->
111
-
112
- [More Information Needed]
113
-
114
- ### Recommendations
115
-
116
- <!-- This section is meant to convey recommendations with respect to the bias, risk, and technical limitations. -->
117
-
118
- Users should be made aware of the risks, biases and limitations of the dataset. More information needed for further recommendations.
119
 
120
  ## Citation [optional]
121
 
122
  <!-- If there is a paper or blog post introducing the dataset, the APA and Bibtex information for that should go in this section. -->
123
 
124
  **BibTeX:**
125
-
126
- [More Information Needed]
 
 
 
 
 
 
 
 
9
  - 1K<n<10K
10
  pretty_name: statcodesearch
11
  ---
12
+ # Dataset Card for statcodesearch
13
 
14
  <!-- Provide a quick summary of the dataset. -->
15
 
16
+ The StatCodeSearch dataset is a benchmark test set consisting of code comment pairs extracted from R programming language scripts authored mostly by researchers. The dataset is sourced from the Open Science Framework (OSF). It includes text and code samples from R projects that pertain to the fields of social science and psychology with a focus on the statistical analysis of research data. As part of the GenCodeSearchNet test suite, this dataset can be used to test programming language understanding on a low resource programming language.
17
 
18
  ## Dataset Details
19
 
 
 
 
 
 
 
 
 
 
 
 
20
 
21
  ### Dataset Sources [optional]
22
 
23
  <!-- Provide the basic links for the dataset. -->
24
 
25
+ - **Repository:** https://github.com/drndr/gencodesearchnet
26
+ - **Paper [optional]:** https://arxiv.org/abs/2311.09707
27
+ -
 
28
  ## Uses
29
 
30
+ - **Semantic Code Search:** using the comments as querries, return the matching code snippets from the set.
31
 
32
+ - **Code Classification:** using the labels, classify the code snippets in to four categories: Data Variable, Visualization, Statistical Modeling, Statistical Test
33
 
 
 
 
 
 
 
 
 
 
34
 
35
  ## Dataset Structure
36
 
37
+ - **Id**: unique identifier for each item
38
+ - **Comment**: full string of a comment describing a code snippet
39
+ - **Code**: full string of a code snippet
40
+ - **Label**: class of a code snippet
41
+ - **Source**: the OSF repository of the extracted code-comment pair
42
+ - **File**: the name of the R file of the extracted code-comment pair from the OSF repository
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
43
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
44
 
45
  ## Citation [optional]
46
 
47
  <!-- If there is a paper or blog post introducing the dataset, the APA and Bibtex information for that should go in this section. -->
48
 
49
  **BibTeX:**
50
+ ```
51
+ @inproceedings{diera2023gencodesearchnet,
52
+ title={GenCodeSearchNet: A Benchmark Test Suite for Evaluating Generalization in Programming Language Understanding},
53
+ author={Diera, Andor and Dahou, Abdelhalim and Galke, Lukas and Karl, Fabian and Sihler, Florian and Scherp, Ansgar},
54
+ booktitle={Proceedings of the 1st GenBench Workshop on (Benchmarking) Generalisation in NLP},
55
+ pages={12--24},
56
+ year={2023}
57
+ }
58
+ ```