Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/shashwath94/recurrent-language-model

Pytorch implementation of a simple GRU word-level language model trained on Donald Trump's tweets.
https://github.com/shashwath94/recurrent-language-model

deep-learning neural-language-model nlp pytorch

Last synced: 9 days ago
JSON representation

Pytorch implementation of a simple GRU word-level language model trained on Donald Trump's tweets.

Awesome Lists containing this project

README

        

# Neural-Language-Model (WIP)
Pytorch implementation of a simple GRU language model trained on Donald Trump's tweets.

Dataset - 30649 Trump's tweets from @realDonaldTrump obtained from [here](http://trumptwitterarchive.com/)

Model - A simple GRU based language model. Improvements to be made.

Train the model - `python3 train.py`

To do :
* Improve the word level language model
* Build character level model
* modularize the code