Skip to content

Instantly share code, notes, and snippets.

@WashingtonGold
Created September 8, 2020 17:40
Show Gist options
  • Save WashingtonGold/f95e0d1fa96f1b095ec5148c64410287 to your computer and use it in GitHub Desktop.
Save WashingtonGold/f95e0d1fa96f1b095ec5148c64410287 to your computer and use it in GitHub Desktop.
from keras.layers import Embedding, LSTM
text_1 = Embedding(10_000, 64)(text_input)
text_2 = LSTM(128)(text_1)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment