File size: 620 Bytes
e61c9c0 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | # Loading MANUS Subsets
This landing repository does not host data shards. Load each source-specific subset from its own payload repository.
## MANUS-HaGRID
```python
from datasets import load_dataset
hagrid_v1_train = load_dataset("QFun/MANUS-HaGRID", "hagrid_v1", split="train", streaming=True)
hagrid_v2_test = load_dataset("QFun/MANUS-HaGRID", "hagrid_v2", split="test", streaming=True)
```
## MANUS-DexYCB
```python
from datasets import load_dataset
dexycb_test = load_dataset("QFun/MANUS-DexYCB", "dexycb", split="test", streaming=True)
```
The official Hugging Face organization/user namespace is `QFun`.
|