You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, I'm trying to use your Infer for a single MP4 video cmd. However, no matter which model I chose, e.g., FasterVQA, Fast-VQA-M, it raises error: Segmentation fault (core dumped). I tried to debug it. It seems the problem happened when I tried to put model onto device. However, if I use CPU to run it, the bash will not respond anymore.
My torch version is 2.2.0+cu118. System: Ubuntu. GPU: V100 32GB
The text was updated successfully, but these errors were encountered:
Also happens to me. After testing, I found that the error is related to a conflict between decord and torch.
To resolve this problem, you just need to place all
importtorch
before
importdecord
You can see the files that need to be modified using the git grep decord command. I modified the following files:
Hi, I'm trying to use your Infer for a single MP4 video cmd. However, no matter which model I chose, e.g., FasterVQA, Fast-VQA-M, it raises error:
Segmentation fault (core dumped)
. I tried to debug it. It seems the problem happened when I tried to put model onto device. However, if I use CPU to run it, the bash will not respond anymore.My torch version is 2.2.0+cu118. System: Ubuntu. GPU: V100 32GB
The text was updated successfully, but these errors were encountered: