guozq21 commited on
Commit
d0a4fc2
·
verified ·
1 Parent(s): 39e3023

Create dataset_infos.json

Browse files
Files changed (1) hide show
  1. dataset_infos.json +32 -0
dataset_infos.json ADDED
@@ -0,0 +1,32 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "your_dataset_name": {
3
+ "description": "A brief description of your dataset.",
4
+ "citation": "Your citation here.",
5
+ "homepage": "https://your-dataset-homepage.com",
6
+ "license": "MIT",
7
+ "features": {
8
+ "text": {
9
+ "dtype": "string",
10
+ "id": null,
11
+ "_type": "Value"
12
+ },
13
+ "label": {
14
+ "dtype": "int64",
15
+ "id": null,
16
+ "_type": "Value"
17
+ }
18
+ },
19
+ "splits": {
20
+ "train": {
21
+ "name": "train",
22
+ "num_bytes": 123456,
23
+ "num_examples": 1000
24
+ },
25
+ "test": {
26
+ "name": "test",
27
+ "num_bytes": 654321,
28
+ "num_examples": 200
29
+ }
30
+ }
31
+ }
32
+ }