Update README.md
Browse files
README.md
CHANGED
@@ -1499,17 +1499,17 @@ Each explorative setting consists of:
|
|
1499 |
from datasets import load_dataset
|
1500 |
|
1501 |
# Load all explorative settings
|
1502 |
-
dataset = load_dataset("
|
1503 |
|
1504 |
# Load a specific explorative setting with all splits
|
1505 |
-
func_area_data = load_dataset("
|
1506 |
train_data = func_area_data["train"] # Low complexity training problems
|
1507 |
test_in_data = func_area_data["test_in"] # Similar complexity test problems
|
1508 |
test_out_data = func_area_data["test_out"] # Higher complexity test problems
|
1509 |
|
1510 |
# Load just specific splits
|
1511 |
-
train_only = load_dataset("
|
1512 |
-
test_out_only = load_dataset("
|
1513 |
```
|
1514 |
|
1515 |
## Dataset Description
|
|
|
1499 |
from datasets import load_dataset
|
1500 |
|
1501 |
# Load all explorative settings
|
1502 |
+
dataset = load_dataset("allenai/omega-explorative")
|
1503 |
|
1504 |
# Load a specific explorative setting with all splits
|
1505 |
+
func_area_data = load_dataset("allenai/omega-explorative", "algebra_func_area")
|
1506 |
train_data = func_area_data["train"] # Low complexity training problems
|
1507 |
test_in_data = func_area_data["test_in"] # Similar complexity test problems
|
1508 |
test_out_data = func_area_data["test_out"] # Higher complexity test problems
|
1509 |
|
1510 |
# Load just specific splits
|
1511 |
+
train_only = load_dataset("allenai/omega-explorative", "algebra_func_area", split="train")
|
1512 |
+
test_out_only = load_dataset("allenai/omega-explorative", "algebra_func_area", split="test_out")
|
1513 |
```
|
1514 |
|
1515 |
## Dataset Description
|