Datasets:
Update dataset README usage
Browse files
README.md
CHANGED
|
@@ -28,14 +28,17 @@ instructions, reference constructions, and deterministic Python verifiers.
|
|
| 28 |
|
| 29 |
## Usage
|
| 30 |
|
|
|
|
|
|
|
|
|
|
| 31 |
```python
|
| 32 |
from datasets import load_dataset
|
| 33 |
|
| 34 |
-
dataset = load_dataset("
|
| 35 |
print(dataset)
|
| 36 |
```
|
| 37 |
|
| 38 |
-
The dataset can also be loaded from raw JSONL files:
|
| 39 |
|
| 40 |
```python
|
| 41 |
from datasets import load_dataset
|
|
|
|
| 28 |
|
| 29 |
## Usage
|
| 30 |
|
| 31 |
+
Install the Hugging Face `datasets` package and load ComBench directly from the
|
| 32 |
+
Hub:
|
| 33 |
+
|
| 34 |
```python
|
| 35 |
from datasets import load_dataset
|
| 36 |
|
| 37 |
+
dataset = load_dataset("Simplified-Reasoning/ComBench")
|
| 38 |
print(dataset)
|
| 39 |
```
|
| 40 |
|
| 41 |
+
The dataset can also be loaded from the raw JSONL files in this repository:
|
| 42 |
|
| 43 |
```python
|
| 44 |
from datasets import load_dataset
|