Steven Liu
commited on
Commit
•
180ddad
1
Parent(s):
2c9e50e
create Dataset card
Browse files
README.md
ADDED
@@ -0,0 +1,84 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
type: demo
|
3 |
+
---
|
4 |
+
# Dataset Card for Demo1
|
5 |
+
## Table of Contents
|
6 |
+
- [Table of Contents](#table-of-contents)
|
7 |
+
- [Dataset Description](#dataset-description)
|
8 |
+
- [Dataset Summary](#dataset-summary)
|
9 |
+
- [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards)
|
10 |
+
- [Languages](#languages)
|
11 |
+
- [Dataset Structure](#dataset-structure)
|
12 |
+
- [Data Instances](#data-instances)
|
13 |
+
- [Data Fields](#data-fields)
|
14 |
+
- [Data Splits](#data-splits)
|
15 |
+
- [Dataset Creation](#dataset-creation)
|
16 |
+
- [Curation Rationale](#curation-rationale)
|
17 |
+
- [Source Data](#source-data)
|
18 |
+
- [Annotations](#annotations)
|
19 |
+
- [Personal and Sensitive Information](#personal-and-sensitive-information)
|
20 |
+
- [Considerations for Using the Data](#considerations-for-using-the-data)
|
21 |
+
- [Social Impact of Dataset](#social-impact-of-dataset)
|
22 |
+
- [Discussion of Biases](#discussion-of-biases)
|
23 |
+
- [Other Known Limitations](#other-known-limitations)
|
24 |
+
- [Additional Information](#additional-information)
|
25 |
+
- [Dataset Curators](#dataset-curators)
|
26 |
+
- [Licensing Information](#licensing-information)
|
27 |
+
- [Citation Information](#citation-information)
|
28 |
+
- [Contributions](#contributions)
|
29 |
+
## Dataset Description
|
30 |
+
- **Homepage:**
|
31 |
+
- **Repository:**
|
32 |
+
- **Paper:**
|
33 |
+
- **Leaderboard:**
|
34 |
+
- **Point of Contact:**
|
35 |
+
### Dataset Summary
|
36 |
+
This is a demo dataset. It consists in two files `data/train.csv` and `data/test.csv`
|
37 |
+
You can load it with
|
38 |
+
```python
|
39 |
+
from datasets import load_dataset
|
40 |
+
data_files = {"train": "data/train.csv", "test": "test.csv"}
|
41 |
+
demo1 = load_dataset("lhoestq/demo1", data_files=data_files)
|
42 |
+
```
|
43 |
+
### Supported Tasks and Leaderboards
|
44 |
+
[More Information Needed]
|
45 |
+
### Languages
|
46 |
+
[More Information Needed]
|
47 |
+
## Dataset Structure
|
48 |
+
### Data Instances
|
49 |
+
[More Information Needed]
|
50 |
+
### Data Fields
|
51 |
+
[More Information Needed]
|
52 |
+
### Data Splits
|
53 |
+
[More Information Needed]
|
54 |
+
## Dataset Creation
|
55 |
+
### Curation Rationale
|
56 |
+
[More Information Needed]
|
57 |
+
### Source Data
|
58 |
+
#### Initial Data Collection and Normalization
|
59 |
+
[More Information Needed]
|
60 |
+
#### Who are the source language producers?
|
61 |
+
[More Information Needed]
|
62 |
+
### Annotations
|
63 |
+
#### Annotation process
|
64 |
+
[More Information Needed]
|
65 |
+
#### Who are the annotators?
|
66 |
+
[More Information Needed]
|
67 |
+
### Personal and Sensitive Information
|
68 |
+
[More Information Needed]
|
69 |
+
## Considerations for Using the Data
|
70 |
+
### Social Impact of Dataset
|
71 |
+
[More Information Needed]
|
72 |
+
### Discussion of Biases
|
73 |
+
[More Information Needed]
|
74 |
+
### Other Known Limitations
|
75 |
+
[More Information Needed]
|
76 |
+
## Additional Information
|
77 |
+
### Dataset Curators
|
78 |
+
[More Information Needed]
|
79 |
+
### Licensing Information
|
80 |
+
[More Information Needed]
|
81 |
+
### Citation Information
|
82 |
+
[More Information Needed]
|
83 |
+
### Contributions
|
84 |
+
Thanks to [@github-username](https://github.com/<github-username>) for adding this dataset.
|