/explore

Click through on any links that interest you or select the planets on the right to continue exploring the Outer Web.
You are here

deejaygraham.github.io
| | blog.ephorie.de
4.9 parsecs away

Travel
| | [AI summary] This blog post explains how Markov chain algorithms generate text and relates it to the workings of large language models like ChatGPT, emphasizing statistical prediction and natural language processing.
| | sookocheff.com
7.3 parsecs away

Travel
| | A common method of reducing the complexity of n-gram modeling is using the Markov Property. The Markov Property states that the probability of future states depends only on the present state, not on the sequence of events that preceded it. This concept can be elegantly implemented using a Markov Chain storing the probabilities of transitioning to a next state.
| | healeycodes.com
1.4 parsecs away

Travel
| | Generating random but familiar text by building Markov chains from scratch.
| | fa.bianp.net
33.9 parsecs away

Travel
| The Langevin algorithm is a simple and powerful method to sample from a probability distribution. It's a key ingredient of some machine learning methods such as diffusion models and differentially private learning. In this post, I'll derive a simple convergence analysis of this method in the special case when the ...