iit-cs585 / assignments

Assignments for IIT CS585
3 stars 7 forks source link

activation function #36

Closed ranjeetkumar closed 7 years ago

ranjeetkumar commented 7 years ago

In tensorflow, we have sigmoid activation function which is the standard form of logistic function. https://www.tensorflow.org/versions/r0.10/api_docs/python/nn/activation_functions_ Can use this tf.sigmoid as a logistic function in part 2 of the assignment? I am not seeing any other logistic function. Also we can use any cell of rnn such as BasicLSTMCell in the assignment?

aronwc commented 7 years ago

Yes, and yes.

On Fri, Apr 21, 2017 at 11:11 AM, Ranjeet kumar notifications@github.com wrote:

In tensorflow, we have sigmoid activation function which is the standard form of logistic function. https://www.tensorflow.org/versions/r0.10/api_docs/ python/nn/activationfunctions Can use this tf.sigmoid as a logistic function in part 2 of the assignment? I am not seeing any other logistic function. Also we can use any cell of rnn such as BasicLSTMCell in the assignment?

— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub https://github.com/iit-cs585/assignments/issues/36, or mute the thread https://github.com/notifications/unsubscribe-auth/ADv-hSZLbM0j5vTF0Wew-s9kbFipzHFNks5ryNUpgaJpZM4NEf-W .

ranjeetkumar commented 7 years ago

Thanks