iszhaoxin commited on
Commit
86ac736
·
1 Parent(s): 4a2ef9e
Files changed (2) hide show
  1. README.md +17 -0
  2. test.ipynb +4 -4
README.md CHANGED
@@ -1,4 +1,21 @@
1
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2
  annotations_creators:
3
  - no-annotation
4
  language_creators:
 
1
  ---
2
+ configs:
3
+ - config_name: customers
4
+ data_files:
5
+ - split: train
6
+ path: "customers/train.csv"
7
+ - split: validation
8
+ path: "customers/val.csv"
9
+ - split: test
10
+ path: "customers/test.csv"
11
+ - config_name: products
12
+ data_files:
13
+ - split: train
14
+ path: "products/train.csv"
15
+ - split: validation
16
+ path: "products/val.csv"
17
+ - split: test
18
+ path: "products/test.csv"
19
  annotations_creators:
20
  - no-annotation
21
  language_creators:
test.ipynb CHANGED
@@ -31,22 +31,22 @@
31
  },
32
  {
33
  "cell_type": "code",
34
- "execution_count": 4,
35
  "metadata": {},
36
  "outputs": [
37
  {
38
  "data": {
39
  "text/plain": [
40
- "['default']"
41
  ]
42
  },
43
- "execution_count": 4,
44
  "metadata": {},
45
  "output_type": "execute_result"
46
  }
47
  ],
48
  "source": [
49
- "get_dataset_config_names(\"iszhaoxin/test\")"
50
  ]
51
  },
52
  {
 
31
  },
32
  {
33
  "cell_type": "code",
34
+ "execution_count": 5,
35
  "metadata": {},
36
  "outputs": [
37
  {
38
  "data": {
39
  "text/plain": [
40
+ "['customers', 'products']"
41
  ]
42
  },
43
+ "execution_count": 5,
44
  "metadata": {},
45
  "output_type": "execute_result"
46
  }
47
  ],
48
  "source": [
49
+ "get_dataset_config_names(\"iszhaoxin/test\", trust_remote_code=True)"
50
  ]
51
  },
52
  {