Open ArlindKadra opened 4 years ago
Further note, preparing everything as a list of sequences works. If it helps, I can also add the necessary files for this case.
Hi @ArlindKadra I am also stuck at the inferencing part could you share the dimensions of the test_sequence variable. Im confused as to what format it requires for inferencing. Thank you
Hi @ArlindKadra, I face the same problem now, and I use the AMI corpus dataset. During the training, I concatenate all the training samples as a single numpy matrix, and I prepare the data as a list of sequences during the testing. However, it still can not predict anything, and there are no responses, and I would like to ask if the settings I mentioned above are the same as yours? Thank you!
Describe the bug
After training the UIS-RNN algorithm, I call the predict() method with the test_sequences. In this case, the test sequence is a 2-d numpy array, not a list. Somehow the method gets stuck and never finishes. I checked the input shape and according to the method doc it should work fine.
Maybe I am doing something wrong?
To Reproduce
Commands and arguments
Logs
Nothing printed.
Serialized models
https://drive.google.com/open?id=1N4JwQQv27Xap-UlvHCNARTiKGT3356AX
Data samples
Versions
Additional context
Debugging the code, I see that everything goes well until this point: https://github.com/google/uis-rnn/blob/cb3a9c6764b3ce40e1327d524eea5e1568e884b7/uisrnn/uisrnn.py#L549 The statement after the for loop is finished is not hit. Using this implementation to generate the embeddings:
https://github.com/HarryVolek/PyTorch_Speaker_Verification