chore: usage + metadata
Browse files
README.md
CHANGED
@@ -2,7 +2,51 @@
|
|
2 |
license: mit
|
3 |
language:
|
4 |
- en
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5 |
---
|
6 |
|
7 |
# TC39 Proposals
|
8 |
-
> Dataset of the latest proposals
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2 |
license: mit
|
3 |
language:
|
4 |
- en
|
5 |
+
configs:
|
6 |
+
- config_name: default
|
7 |
+
data_files:
|
8 |
+
- split: train
|
9 |
+
path: data/train*
|
10 |
+
- split: test
|
11 |
+
path: data/test*
|
12 |
+
dataset_info:
|
13 |
+
features:
|
14 |
+
- name: url
|
15 |
+
dtype: string
|
16 |
+
- name: edition
|
17 |
+
dtype: string
|
18 |
+
- name: authors
|
19 |
+
dtype: list
|
20 |
+
- name: champions
|
21 |
+
dtype: list
|
22 |
+
- name: description
|
23 |
+
dtype: string
|
24 |
+
- name: edition
|
25 |
+
dtype: string
|
26 |
+
- name: id
|
27 |
+
dtype: string
|
28 |
+
- name: rationale
|
29 |
+
dtype: string
|
30 |
+
- name: name
|
31 |
+
dtype: string
|
32 |
+
- name: has-specification
|
33 |
+
dtype: string
|
34 |
+
- name: notes
|
35 |
+
dtype: string
|
36 |
+
- name: pushed_at
|
37 |
+
dtype: string
|
38 |
+
- name: stage
|
39 |
+
dtype: string
|
40 |
+
- name: tags
|
41 |
+
dtype: string
|
42 |
---
|
43 |
|
44 |
# TC39 Proposals
|
45 |
+
> Dataset of the latest proposals
|
46 |
+
|
47 |
+
# Usage:
|
48 |
+
|
49 |
+
```python
|
50 |
+
from datasets import load_dataset
|
51 |
+
proposals = load_dataset("gnumanth/tc39", split="train")
|
52 |
+
```
|