yyb1995
Results
2
comments of
yyb1995
Maybe you can look at the 45th line of cell.py.`y = Activation(self.activation)(W2(h))`. h is the lstm cell output. Then it goes through a dense layer W2. So you can set...
I think it's because there's a W2 dense layer after the normal lstm layer. 45th line of cell.py is `y = Activation(self.activation)(W2(h))`. actually h is the output of lstmcell. And...