fix: add num_frames/height/width/fps/id columns to smoke test CSV

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
hailin 2026-03-06 03:05:01 -08:00
parent ae3e448c8a
commit 2cb9a1f29e
1 changed files with 5 additions and 0 deletions

View File

@ -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,