--- license: other task_categories: - image-to-image tags: - novel-view-synthesis - autonomous-driving - lidar - multi-view size_categories: - 10K.jpg`, `t1..jpg` | 6 camera views per timestamp | | `lidar.npz` | dense world-frame point cloud (xyz, intensity) | | `target..jpg` | ground-truth target image (train only) | ## Streaming usage ```python import webdataset as wds url = "https://huggingface.co/datasets/MHDCSM/cv_ds_all/resolve/main/train-{000000..NNNNNN}.tar" ds = wds.WebDataset(url).decode() for sample in ds: meta = sample["meta.json"] img = sample["t0.front.jpg"] ```