Update README with arXiv bibtex

Reviewed By: jayleicn

Differential Revision:
D87813153

Privacy Context Container: L1256182

fbshipit-source-id: 9361ff55ebdb1ee78f694cb9c41b8bc83bf600fb
This commit is contained in:
Haitham Khedr
2025-11-24 13:30:21 -08:00
committed by meta-codesync[bot]
parent d0b1b9d5aa
commit 1daff5eb92
3 changed files with 20 additions and 12 deletions

View File

@@ -97,8 +97,8 @@ def load_video_frames(
video_path,
image_size,
offload_video_to_cpu,
img_mean=(0.485, 0.456, 0.406),
img_std=(0.229, 0.224, 0.225),
img_mean=(0.5, 0.5, 0.5),
img_std=(0.5, 0.5, 0.5),
async_loading_frames=False,
compute_device=torch.device("cuda"),
):
@@ -138,8 +138,8 @@ def load_video_frames_from_jpg_images(
video_path,
image_size,
offload_video_to_cpu,
img_mean=(0.485, 0.456, 0.406),
img_std=(0.229, 0.224, 0.225),
img_mean=(0.5, 0.5, 0.5),
img_std=(0.5, 0.5, 0.5),
async_loading_frames=False,
compute_device=torch.device("cuda"),
):
@@ -205,8 +205,8 @@ def load_video_frames_from_video_file(
video_path,
image_size,
offload_video_to_cpu,
img_mean=(0.485, 0.456, 0.406),
img_std=(0.229, 0.224, 0.225),
img_mean=(0.5, 0.5, 0.5),
img_std=(0.5, 0.5, 0.5),
compute_device=torch.device("cuda"),
):
"""Load the video frames from a video file."""