scope-camera-video / scope /data /__init__.py
iggy101's picture
Upload folder using huggingface_hub
0c9f968 verified
Raw
History Blame Contribute Delete
512 Bytes
"""Native multi-dataset loaders for SCoPE RDPO high-only training."""
from scope.data.dl3dv import DL3DVDataset
from scope.data.factory import build_dataset, build_training_dataset
from scope.data.omniworld import OmniWorldDataset
from scope.data.panshot import PanShotDataset
from scope.data.realestate10k import RealEstate10KDataset
__all__ = [
"RealEstate10KDataset",
"DL3DVDataset",
"PanShotDataset",
"OmniWorldDataset",
"build_dataset",
"build_training_dataset",
]