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:
parent
ae3e448c8a
commit
2cb9a1f29e
|
|
@ -48,8 +48,13 @@ def main():
|
||||||
torch.save(torch.randn(CLIP_DIM), clip_path)
|
torch.save(torch.randn(CLIP_DIM), clip_path)
|
||||||
|
|
||||||
rows.append({
|
rows.append({
|
||||||
|
"id": i,
|
||||||
"path": lat_path, # 占位(cached 模式不读原始视频)
|
"path": lat_path, # 占位(cached 模式不读原始视频)
|
||||||
"text": f"smoke test sample {i}",
|
"text": f"smoke test sample {i}",
|
||||||
|
"num_frames": 1, # 单帧图像
|
||||||
|
"height": 256,
|
||||||
|
"width": 256,
|
||||||
|
"fps": 24.0,
|
||||||
"latents_path": lat_path,
|
"latents_path": lat_path,
|
||||||
"text_t5_path": t5_path,
|
"text_t5_path": t5_path,
|
||||||
"text_clip_path": clip_path,
|
"text_clip_path": clip_path,
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue