Update README.md
Browse files
README.md
CHANGED
|
@@ -73,10 +73,10 @@ Each JSON sample (one file per scene) contains the following core fields:
|
|
| 73 |
from datasets import load_dataset
|
| 74 |
|
| 75 |
# Load full dataset
|
| 76 |
-
ds = load_dataset("
|
| 77 |
|
| 78 |
# Or load a specific task category index
|
| 79 |
import json, requests
|
| 80 |
-
url = "https://huggingface.co/datasets/
|
| 81 |
data = requests.get(url).json()
|
| 82 |
```
|
|
|
|
| 73 |
from datasets import load_dataset
|
| 74 |
|
| 75 |
# Load full dataset
|
| 76 |
+
ds = load_dataset("ESI-Bench/esi-bench")
|
| 77 |
|
| 78 |
# Or load a specific task category index
|
| 79 |
import json, requests
|
| 80 |
+
url = "https://huggingface.co/datasets/ESI-Bench/esi-bench/resolve/main/data/Action Sequencing.json"
|
| 81 |
data = requests.get(url).json()
|
| 82 |
```
|