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
Should be h_prime = add([Dense(output_dim)(multiply([r, h_tm1])), Dense(output_dim, use_bias=False)(x)]),
rather than h_prime = add([Dense(10)(multiply([r, h_tm1])), Dense(10, use_bias=False)(x)])
The text was updated successfully, but these errors were encountered:
recurrentshop/recurrentshop/basic_cells.py
Line 34 in 3a8ea08
Should be
h_prime = add([Dense(output_dim)(multiply([r, h_tm1])), Dense(output_dim, use_bias=False)(x)])
,rather than
h_prime = add([Dense(10)(multiply([r, h_tm1])), Dense(10, use_bias=False)(x)])
The text was updated successfully, but these errors were encountered: