then there is an error Traceback to FILE "modules/dvector.py"
"""Forward a batch through network."""
lstmouts, = self.lstm(inputs) # (batch, seg_len, dim_cell)
embeds = torch.tanh(self.embedding(lstm_outs)) # (batch, seg_len, dim_emb)
RuntimeError: CUDA error: CUBLAS_STATUS_INVALID_VALUE when calling `cublasSgemm( handle, opa, opb, m, n, k, &alpha, a, lda, b, ldb, &beta, c, ldc)`
I wanna get a 601 dim dvector,and follow the step "Train from scratch"
then there is an error Traceback to FILE "modules/dvector.py" """Forward a batch through network.""" lstmouts, = self.lstm(inputs) # (batch, seg_len, dim_cell) embeds = torch.tanh(self.embedding(lstm_outs)) # (batch, seg_len, dim_emb)