iit-cs585 / assignments

Assignments for IIT CS585
3 stars 7 forks source link

Using logistics function as activation in each RNN cell #30

Closed prateekagrawal06 closed 7 years ago

prateekagrawal06 commented 7 years ago

Hi Professor,

The Assignment 4 bonus part tells that we need to use logistic as the activation function for each cell in the hidden layer. Does this mean that we need to change the tanh activation to sigmoid in the BASICRnnCell implementation of tensorflow?

aronwc commented 7 years ago

That would be one way to do it.

On Apr 10, 2017, at 6:51 PM, prateekagrawal06 notifications@github.com wrote:

BASICRnnCell

prateekagrawal06 commented 7 years ago

Thanks, professor