Python-based Character-Level Language Model (LM) Training System
(Redirected from Python-based Character-Level Language Modeling System)
Jump to navigation
Jump to search
A Python-based Character-Level Language Model (LM) Training System is a Python-based LM training system that implements a character-level LM algorithm to solve a Python-based character-level LM task.
- Context:
- Example(s):
- Counter-Example(s):
- a Python-based Word-Level Language Modeling System.
- a Lua-based one, such as the one used in (Karpathy, 2015).
- See: Character/Word-Level Hybrid Language Modeling System.
References
2015
- (Goldberg, 2015) ⇒ Yoav Goldberg. (2015). “The Unreasonable Effectiveness of Character-level Language Models (and Why RNNs Are Still Cool).” In: Blog Post.
- QUOTE: … In what follows I will briefly describe these character-level maximum-likelihood language models, which are much less magical than RNNs and LSTMs, and show that they too can produce a rather convincing Shakespearean prose. I will also show about 30 lines of python code that take care of both training the model and generating the output. Compared to this baseline, the RNNs may seem somewhat less impressive. ...