File size: 1,593 Bytes
9a02dd2
 
8657c6f
38df428
 
9a02dd2
38df428
9a02dd2
 
 
 
 
 
 
 
 
 
 
12e0e3c
 
9a02dd2
 
 
38df428
9a02dd2
 
 
 
 
 
 
 
 
 
599fc78
 
9a02dd2
 
599fc78
 
9a02dd2
 
 
 
 
 
 
 
 
 
38df428
 
9a02dd2
 
 
 
 
38df428
9a02dd2
 
 
 
c83ca9a
dac1c56
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
---
task_categories:
- Code Generation
- Translation
- Text2Text generation
---
# CoNaLa Dataset for Code Generation

## Table of content
- [Dataset Description](#dataset-description)
    - [Languages](#languages)
- [Dataset Structure](#dataset-structure)
  - [Data Instances](#data-instances)
  - [Data Fields](#data-fields)
  - [Data Splits](#data-splits)

## Dataset Descritpion

This dataset has been processed for Code Generation. CMU CoNaLa, the Code/Natural Language Challenge is a joint project of the Carnegie Mellon University NeuLab and STRUDEL Lab. This dataset was designed to test systems for generating program snippets from natural language. It is avilable at https://conala-corpus.github.io/ , and this is about 13k records from the full corpus of about 600k examples.


### Languages

English

## Dataset Structure

### Data Instances

A sample from this dataset looks as follows:

```json
[
  {
    "intent": "convert a list to a dictionary in python",
    "snippet": "b = dict(zip(a[0::2], a[1::2]))"
  },
  {
    "intent": "python - sort a list of nested lists",
    "snippet": "l.sort(key=sum_nested)"
  }
]
```

### Dataset Fields

The dataset has the following fields (also called "features"):

```json
{
  "intent": "Value(dtype='string', id=None)",
  "snippet": "Value(dtype='string', id=None)"
}
```

### Dataset Splits

This dataset is split into a train, validation and test split. The split sizes are as follow:

| Split name   | Num samples         |
| ------------ | ------------------- |
| train        | 11125 |
| valid        | 1237 |
| test         | 500 |