# 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`.