https://github.com/htfy96/language-model-pytorch
(Abandoned) A simple char-CNN + LSTM + softmax language model
https://github.com/htfy96/language-model-pytorch
Last synced: 10 months ago
JSON representation
(Abandoned) A simple char-CNN + LSTM + softmax language model
- Host: GitHub
- URL: https://github.com/htfy96/language-model-pytorch
- Owner: htfy96
- Created: 2018-01-09T08:37:08.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2018-01-09T08:45:53.000Z (over 8 years ago)
- Last Synced: 2025-05-29T00:51:31.691Z (about 1 year ago)
- Language: Python
- Size: 8.79 KB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# language-model-pytorch

This repo aims to build a simple CharCNN encoder + LSTM + softmax decoder language model.
Due to the lack of time, this repo is currently abandoned.
The model is roughly based on *Exploring the Limits of Language Modeling, Rafal Jozefowicz, Oriol Vinyals, Mike Schuster, Noam Shazeer, Yonghui Wu*, though the Char-CNN is not implemented.
Our code is based on [PyTorch's official example](https://github.com/pytorch/examples/tree/master/word_language_model).