|
|
--- |
|
|
license: cc-by-4.0 |
|
|
configs: |
|
|
- config_name: DIY |
|
|
data_files: "ACE-DIY.csv" |
|
|
- config_name: Food |
|
|
data_files: "ACE-Food.csv" |
|
|
- config_name: Shopping |
|
|
data_files: "ACE-Shopping.csv" |
|
|
- config_name: Gaming |
|
|
data_files: "ACE-Gaming.csv" |
|
|
--- |
|
|
|
|
|
# ACE Dataset |
|
|
|
|
|
This dataset contains evaluation criteria across four domains: DIY, Food, Shopping, and Gaming. |
|
|
|
|
|
## Configurations |
|
|
|
|
|
- **diy**: DIY and home improvement criteria |
|
|
- **food**: Food and recipe criteria |
|
|
- **shopping**: Shopping and product criteria |
|
|
- **gaming**: Gaming design criteria |
|
|
|
|
|
## Usage |
|
|
|
|
|
from datasets import load_dataset |
|
|
|
|
|
# Load a specific domain |
|
|
diy_data = load_dataset("mercor/ACE", "diy") |
|
|
food_data = load_dataset("mercor/ACE", "food") |
|
|
shopping_data = load_dataset("mercor/ACE", "shopping") |
|
|
gaming_data = load_dataset("mercor/ACE", "gaming") |
|
|
|
|
|
# Or load the default (diy) |
|
|
dataset = load_dataset("mercor/ACE")## Domain-Specific Columns |
|
|
|
|
|
Each domain has its own specific criterion type column: |
|
|
- DIY: `Criterion Type (DIY)` |
|
|
- Food: `Criterion Type (Food)` |
|
|
- Shopping: `Criterion Type (Shopping)` + `Shop vs. Product` |
|
|
- Gaming |