MANUS / docs /loading_all_subsets.md
QFun's picture
Initial MANUS landing release
e61c9c0 verified
# 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`.