Markov Chain

By DeepAI - 2019-05-17

Description

Markov chains are used to model probabilities using information that can be encoded in the current state. Something transitions from one state to another semi-randomly, or stochastically.

Summary

  • What is a Markov Chain?
  • To determine the transition probabilities, you have to "train" your Markov Chain on some input corpus.
  • Observations can be made, but these observations are not usually sufficient to uniquely determine the state of the model.
  • Applications in Artificial Intelligence There are quite a few applications of Markov Chains to AI -- Markov Chains are useful basically when you want to model something that's in discrete states, but you don't understand how it works.

 

Topics

  1. NLP (0.22)
  2. Machine_Learning (0.15)
  3. Backend (0.08)

Similar Articles

React Hooks Cheatsheet: The 7 Hooks You Need To Know

By freeCodeCamp.org - 2021-02-08

This new tutorial will show you everything you need to know about React Hooks from scratch. I've put this cheatsheet together to help you become knowledgeable and effective with React Hooks as quickly ...