rohitshetty03 commited on
Commit
bb121fd
·
verified ·
1 Parent(s): 1b6faa0

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +43 -3
README.md CHANGED
@@ -1,3 +1,43 @@
1
- ---
2
- license: cc-by-4.0
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: cc-by-4.0
3
+ configs:
4
+ - config_name: diy
5
+ data_files: "ACE-DIY.csv"
6
+ default: true
7
+ - config_name: food
8
+ data_files: "ACE-Food.csv"
9
+ - config_name: shopping
10
+ data_files: "ACE-Shopping.csv"
11
+ - config_name: gaming
12
+ data_files: "ACE-Gaming.csv"
13
+ ---
14
+
15
+ # ACE Dataset
16
+
17
+ This dataset contains evaluation criteria across four domains: DIY, Food, Shopping, and Gaming.
18
+
19
+ ## Configurations
20
+
21
+ - **diy**: DIY and home improvement criteria
22
+ - **food**: Food and recipe criteria
23
+ - **shopping**: Shopping and product criteria
24
+ - **gaming**: Gaming design criteria
25
+
26
+ ## Usage
27
+
28
+ from datasets import load_dataset
29
+
30
+ # Load a specific domain
31
+ diy_data = load_dataset("mercor/ACE", "diy")
32
+ food_data = load_dataset("mercor/ACE", "food")
33
+ shopping_data = load_dataset("mercor/ACE", "shopping")
34
+ gaming_data = load_dataset("mercor/ACE", "gaming")
35
+
36
+ # Or load the default (diy)
37
+ dataset = load_dataset("mercor/ACE")## Domain-Specific Columns
38
+
39
+ Each domain has its own specific criterion type column:
40
+ - DIY: `Criterion Type (DIY)`
41
+ - Food: `Criterion Type (Food)`
42
+ - Shopping: `Criterion Type (Shopping)` + `Shop vs. Product`
43
+ - Gaming