You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Why there's no activation function (softmax) defined in the Dense layer? In the task it's said:
The final output of the LSTM is then fed into a fully connected Dense layer where we'll output a softmax over each character in the vocabulary, and then sample from this distribution to predict the next character.
According to the docs activation function is None if not explicitly declared.
The text was updated successfully, but these errors were encountered:
In the solution for this task the final RNN model is created as follows:
Why there's no activation function (softmax) defined in the
Dense
layer? In the task it's said:According to the docs activation function is
None
if not explicitly declared.The text was updated successfully, but these errors were encountered: