File size: 1,895 Bytes
faf6261
 
5072e48
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
faf6261
4901225
 
 
 
 
 
 
 
 
 
 
 
fba266a
 
 
4901225
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
fba266a
 
4901225
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
---
license: mit
dataset_info:
  features:
  - name: url
    dtype: string
  - name: edition
    dtype: int64
  - name: authors
    sequence: string
  - name: champions
    sequence: string
  - name: description
    dtype: string
  - name: id
    dtype: string
  - name: rationale
    dtype: string
  - name: name
    dtype: string
  - name: has-specification
    dtype: bool
  - name: notes
    list:
    - name: date
      dtype: string
    - name: url
      dtype: string
  - name: pushed_at
    dtype: string
  - name: stage
    dtype: int64
  - name: tags
    sequence: string
  splits:
  - name: train
    num_bytes: 117768.0
    num_examples: 201
  - name: test
    num_bytes: 39256.0
    num_examples: 67
  download_size: 66630
  dataset_size: 157024.0
configs:
- config_name: default
  data_files:
  - split: train
    path: data/train-*
  - split: test
    path: data/test-*
---


# Usage:

```python
from datasets import load_dataset
proposals = load_dataset("gnumanth/tc39", split="train")
```

```python
print(proposals[0])


{
 'url': 'https://github.com/tc39/proposal-array-is-template-object',
 'edition': None,
 'authors': ['Mike Samuel', 'Krzysztof Kotowicz'],
 'champions': ['Krzysztof Kotowicz'],
 'description': 'TC39 proposal to identify template strings',
 'id': 'proposal-array-is-template-object',
 'rationale': None,
 'name': 'Array.isTemplateObject',
 'has-specification': True,
 'notes': [{'date': '2019-12-04T00:00:00.000Z',
   'url': 'https://github.com/tc39/notes/blob/HEAD/meetings/2019-12/december-4.md#arrayistemplateobject-update'},
  {'date': '2019-12-04T00:00:00.000Z',
   'url': 'https://github.com/tc39/notes/blob/HEAD/meetings/2019-12/december-4.md'},
  {'date': '2021-01-25T00:00:00.000Z',
   'url': 'https://github.com/tc39/notes/blob/HEAD/meetings/2021-01/jan-25.md'}],
 'pushed_at': '2021-01-25T20:25:40.000Z',
 'stage': 2,
 'tags': ['ECMA-262']
}
```