Date: October 10, 2025

Topic: Language Models

Recall

Language models depend on words coming before to predict the next words (generative models). They can be used in predictive typing, automatic speech recognition and basic grammar correction.

Notes

Language Models

Probabilities

image.png

Applications for Language Models

Predictive Typing

Automatic Speech Recognition

Basic Grammar Correction


We can introduce a context $c$ into the language model. This lets us modify the probability of generating words based on the given context.

Conditional Language Modeling

image.png

Applications of Conditional Language Modeling

Outside of Language Modeling


<aside> 📌 SUMMARY: Language models are generative models where next word predictions depend on previous words. When given context, we can modify the distributions to further suit the context.

</aside>


Date: October 10, 2025

Topic: Recurrent Neural Networks