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
I get an error stating that the output_tensors and output_masks are not of equal length when using readout and return_states and nesting the RecurrentModel into a keras model.
I believe this is because RecurrentModel.compute_masks(..) does not take into account that the number of states is 1 more than the number of outputs when self.readout = True.
My error went away when I fixed this, but I am not sure how this will affect the remainder of the code/models/layers etc.
The text was updated successfully, but these errors were encountered:
I get an error stating that the output_tensors and output_masks are not of equal length when using readout and return_states and nesting the RecurrentModel into a keras model.
I believe this is because RecurrentModel.compute_masks(..) does not take into account that the number of states is 1 more than the number of outputs when self.readout = True.
My error went away when I fixed this, but I am not sure how this will affect the remainder of the code/models/layers etc.
The text was updated successfully, but these errors were encountered: