Summary
In the released dataset EmbodiedCity/iWorld-Bench-Dataset, 112 first-frame images under
dataset/all_pack/assets/Sim/Diff/first frame/ are 0-byte (empty) files. They are listed in
metadata.csv as the first_frame_path for 112 Sim/Diff samples, so any image-to-video
(I2V/TI2V) pipeline that conditions on the first frame fails on these samples.
Scope (verified)
- The directory
dataset/all_pack/assets/Sim/Diff/first frame/ contains 1200 files, of which 112 are 0 bytes.
- All other 24
.../first frame/ directories (TartanAir-V2, RealEstate-10K, DL3DV-10K, NCLT, 7-Scenes,
SpatialVid, Princeton365, Nuscene, KITTI, Waymo, TUM-RGB-D, TartanGround, …) contain 0 zero-byte files.
- Only the
Sim/Diff first frames are affected.
Examples (3 of 112)
EMCITYENV0_x6350.728_y-3636.378_z-17.000_3_6_4.jpg (0 bytes)
EMCITYENV0_x6350.728_y-3636.378_z-17.000_4_7_5.jpg (0 bytes)
EMCITYENV0_x6383.114_y-4189.384_z-17.000_1_8_0.jpg (0 bytes)
(Full list of 112 filenames can be attached.)
How to reproduce
from huggingface_hub import HfApi
api = HfApi()
sibs = api.repo_info("EmbodiedCity/iWorld-Bench-Dataset", repo_type="dataset",
files_metadata=True).siblings
zero = [s.rfilename for s in sibs
if "Sim/Diff/first frame" in s.rfilename and (s.size or 0) == 0]
print(len(zero)) # -> 112
Impact
These 112 samples cannot be run through any first-frame-conditioned (I2V/TI2V) generator; the request
has no usable conditioning image. In our run this surfaced as 112 hard failures
(task='ti2v' requires an image or first_frame), i.e. 112/4300 evaluation samples were lost.
Notes / questions
- The real Sim data is shipped as split archives under
sim/archives_split/dataset_env*/ (videos + cameras),
but there is no documented script that extracts/populates these Sim/Diff first-frame placeholders, and the
relevant archive (dataset_env0) is ~285 GB, so regenerating just 112 frames locally is impractical.
- Could you please either (a) re-upload the 112 missing first-frame JPGs to
dataset/all_pack/assets/Sim/Diff/first frame/, or (b) document the intended procedure to generate them
(e.g. frame-0 extraction from the corresponding source_video_filename in metadata.csv)?
Thanks for releasing iWorld-Bench!
Summary
In the released dataset
EmbodiedCity/iWorld-Bench-Dataset, 112 first-frame images underdataset/all_pack/assets/Sim/Diff/first frame/are 0-byte (empty) files. They are listed inmetadata.csvas thefirst_frame_pathfor 112Sim/Diffsamples, so any image-to-video(I2V/TI2V) pipeline that conditions on the first frame fails on these samples.
Scope (verified)
dataset/all_pack/assets/Sim/Diff/first frame/contains 1200 files, of which 112 are 0 bytes..../first frame/directories (TartanAir-V2, RealEstate-10K, DL3DV-10K, NCLT, 7-Scenes,SpatialVid, Princeton365, Nuscene, KITTI, Waymo, TUM-RGB-D, TartanGround, …) contain 0 zero-byte files.
Sim/Difffirst frames are affected.Examples (3 of 112)
(Full list of 112 filenames can be attached.)
How to reproduce
Impact
These 112 samples cannot be run through any first-frame-conditioned (I2V/TI2V) generator; the request
has no usable conditioning image. In our run this surfaced as 112 hard failures
(
task='ti2v' requires an image or first_frame), i.e. 112/4300 evaluation samples were lost.Notes / questions
sim/archives_split/dataset_env*/(videos + cameras),but there is no documented script that extracts/populates these
Sim/Difffirst-frame placeholders, and therelevant archive (
dataset_env0) is ~285 GB, so regenerating just 112 frames locally is impractical.dataset/all_pack/assets/Sim/Diff/first frame/, or (b) document the intended procedure to generate them(e.g. frame-0 extraction from the corresponding
source_video_filenameinmetadata.csv)?Thanks for releasing iWorld-Bench!