[fix] time list

This commit is contained in:
zhengzangw 2024-06-21 19:21:00 +00:00
parent 7aa940f20d
commit ba65d369db

View file

@ -248,6 +248,7 @@ def main():
with Timer("move data") as move_data_t:
x = batch.pop("video").to(device, dtype) # [B, C, T, H, W]
y = batch.pop("text")
timer_list.append(move_data_t)
# == visual and text encoding ==
with Timer("encode") as encode_t: