jefflai108 / Contrastive-Predictive-Coding-PyTorch

Contrastive Predictive Coding for Automatic Speaker Verification

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Code question in src/model/model.py#L113

joeyy5588 opened this issue · comments

In model.py line 113 : output2, hidden1 = self.gru2(forward_seq, hidden1)
perhaps it should be : output2, hidden2 = self.gru2(forward_seq, hidden1) ?

hi, you are correct. my bad.

it should have been output2, hidden2 = self.gru2(forward_seq, hidden2)