WENGSYX / VPTSL

Apache License 2.0
3 stars 1 forks source link

Bug of 'sequences index out of range' #1

Open nkldy22 opened 3 months ago

nkldy22 commented 3 months ago

image The datasets is MedVidQA, model is deberta-v3-base, When I bash run.sh ,it turn out that: the index of sequence is out of range ,then I print the value of the 'sequences',it turn out to be "[]"(nothing in it!).So what is the bug of it ?

WENGSYX commented 3 months ago

Hi! Can you check if the 'visual' list in VPTSL/main.py at main · WENGSYX/VPTSL (github.com) is empty? If it's empty, it indicates that the I3D video features were not successfully read. In that case, you should check if you've accurately entered the path to the I3D video features.

WENGSYX commented 3 months ago

https://github.com/WENGSYX/VPTSL/blob/main/main.py#L332

nkldy22 commented 3 months ago

Hi! Can you check if the 'visual' list in VPTSL/main.py at main · WENGSYX/VPTSL (github.com) is empty? If it's empty, it indicates that the I3D video features were not successfully read. In that case, you should check if you've accurately entered the path to the I3D video features.

thank you ,I checked the path of the features data, and recorrect it . Now it works!