Skip to content

madrugado/keras-tutorial

Repository files navigation

Keras tutorial for text classification

There are two solutions of simple text classification problem: baseline and CNN.

Your task is to build RNN solution. Use the following code:

model.add(Embedding(...))
model.add(LSTM(hidden_size, return_sequences=True))
model.add(TimeDistributed(Dense(...)))
model.add(Activation('softmax'))

About

Keras tutorial for text classification

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published