| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
The goal of this project is to generate text, accordingly to what our system has learned from its training, analyzing the text of certain datasets. Therefore the main idea is to predict the next characters given an input text. An example is presented below:
The architecture built is described by this figure:
Different models were tried for this task, which their differences lie in which RNN is implemented:
Here we present the implementation of the one layer LSTM model implemented with Keras:
model = Sequential()
model.add(LSTM(128, input_shape=(maxlen, len(chars))))
model.add(Dense(len(chars)))
model.add(Activation('softmax'))
The datasets used for this purpose are:
Slides for our project can be found here
Webpage for the project is here
| Back | FazBrowse Home | New Git URL |