Guest User

Untitled

a guest
Oct 17th, 2018
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. model = Sequential()
  2. model.add(Masking(mask_value=0, input_shape=(4,2)))
  3. model.add(LSTM(2, return_sequences=True))
  4.  
  5. [[-0.3524502 0.15424669],
  6. [-0.7842049 0.4746589],
  7. [-0.7842049 0.4746589],
  8. [-0.7842049 0.4746589]].
  9.  
  10. [[-0.3524502 0.15424669],
  11. [-0.7842049 0.4746589],
  12. [0 0],
  13. [0 0]].
Add Comment
Please, Sign In to add comment