TS-LSTM icon indicating copy to clipboard operation
TS-LSTM copied to clipboard

Question about runtime

Open qiuqicao77 opened this issue 5 years ago • 1 comments

There is not runtime info in the paper. Do you remember the fps for the action recognition model?

qiuqicao77 avatar Aug 14 '19 08:08 qiuqicao77

I'm very sorry to reply this too late. Unfortunately, I didn't check the fps at that time. You can check the inference time like the following code.

import torch
import time
torch.cuda.synchronize()
t = time.time()

Inference_Function()

FPS_Action = 1/(time.time() - t)
torch.cuda.synchronize()

InwoongLee avatar Mar 19 '21 01:03 InwoongLee