We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi there, wehen i am trying to predict there is this error going on:
line 41 in speech_separation/model/model_v2/AV_model_eval.py /
face_embs[1, :, :, :, i] = np.load(face_path + single_idxs[i] + "_face_emb.npy")
IndexError: index 1 is out of bounds for axis 0 with size 1
face_embs shape is (1,75,1,1972,2) i can be in my case 0 or 1 np.load**(face_path + single_idxs[i] + "_face_emb.npy")** shape is (75,1,1972)
Whats wrong here? Do we need to change line 41 from face_embs[1, :, :, :, i] to from face_embs[0, :, :, :, i]
Greetings:)
The text was updated successfully, but these errors were encountered:
Did you solve it ? @DunkinDonat
Sorry, something went wrong.
No branches or pull requests
Hi there,
wehen i am trying to predict there is this error going on:
line 41 in speech_separation/model/model_v2/AV_model_eval.py /
face_embs[1, :, :, :, i] = np.load(face_path + single_idxs[i] + "_face_emb.npy")
IndexError: index 1 is out of bounds for axis 0 with size 1
face_embs shape is (1,75,1,1972,2)
i can be in my case 0 or 1
np.load**(face_path + single_idxs[i] + "_face_emb.npy")** shape is (75,1,1972)
Whats wrong here? Do we need to change line 41 from face_embs[1, :, :, :, i] to from face_embs[0, :, :, :, i]
Greetings:)
The text was updated successfully, but these errors were encountered: