diff --git a/scripts/diffusion/gen_smoke_data.py b/scripts/diffusion/gen_smoke_data.py index b107dea..b5e36b8 100644 --- a/scripts/diffusion/gen_smoke_data.py +++ b/scripts/diffusion/gen_smoke_data.py @@ -48,8 +48,13 @@ def main(): torch.save(torch.randn(CLIP_DIM), clip_path) rows.append({ + "id": i, "path": lat_path, # 占位(cached 模式不读原始视频) "text": f"smoke test sample {i}", + "num_frames": 1, # 单帧图像 + "height": 256, + "width": 256, + "fps": 24.0, "latents_path": lat_path, "text_t5_path": t5_path, "text_clip_path": clip_path,