Markov chains are systems which transition from one state to another based only upon their current state. They are used widely in various statistical domains to generate sequences based upon probabilities.

learn more… | top users | synonyms

1
vote
0answers
31 views

Simulating a Markov Chain with Neo4J

A Markov chain is composed of a set of states which can transition to other states with a certain probability. A Markov chain can be easily represented in Neo4J by creating a node for each state, a ...
0
votes
1answer
34 views

How to generate a sequence based on probabilities? [closed]

The problem I am confronted with is the following : I have a probability transition matrix. suppose there are 4 states (1, 2, 3 and 4) in my sequence, there is a probability of occurrence of 2 after ...
0
votes
1answer
41 views

Time series in Finite State Space Markov chain

I have state transition probability matrix for state K=8, trans = 0.9245 0.0755 0 0 0 0 0 0 0.0176 0.9399 0.0425 0 0 ...
-2
votes
0answers
34 views

How to find Probability densities from the transition matrix? [closed]

I have a 8x8 transition matrix, i need to calculate the probability densities from the transition matrix. I have used 'ksdensity' to the transition matrix to calculate the probability density ...
1
vote
2answers
60 views

Differences between Monte-Carlo and Markov Chains techniques?

I want to develop RISK board game which will include an AI for computer players. Moreoveor, i read two articles about it and realized that i must learn about Monte Carlo Simulation and Markov Chains ...
2
votes
3answers
61 views

Regarding the use of the Markov chain algorithm for generating text

I'm reading the book 'The Practice of Programming' by Brian W. Kernighan and Rob Pike. Chapter 3 provides the algorithm for a Markov chain approach that reads a source text and uses it to generate ...
-1
votes
1answer
130 views

How to find Finite State-Transition probability matrix of Markov chain (FSMC)

I have channel measurements which has values > 20,000, which has to be divided into discrete levels, as in my case K=8 and which has to be mapped to channel measurements with states. I have to find ...
0
votes
0answers
31 views

Forward-Backward and Viterbi Algorithm

I am referring to Jason Eisner's nifty "An interactive spreadsheet for teaching the forward-backward algorithm" (http://www.cs.jhu.edu/~jason/papers/#tnlp02). What does p(STOP|C) and p(STOP|H) ...
1
vote
0answers
29 views

forward-backward algorithm for secondary structure prediction

I want to use HMM (forward backward model) for protein secondary structure prediction. Basically, a three-state model is used: States = {H=alpha helix, B=beta sheet, C=coil} and each state has a ...
2
votes
1answer
60 views

Incorrect Number of probabilities simulating a Markov chain

my transition probability matrix is like this BP IP SP BPBP 0.4586757 0.3772354 0.1640889 IPBP 0.3489484 0.4746654 0.1763862 SPBP ...
0
votes
1answer
38 views

no 'dimnames' attribute for array in R

`function(trans,initprob,N)' { BrokerPosition <- c("BP", "IP", "SP") mysequence<-character() firstposition <- sample(BrokerPosition, 1, rep=TRUE, prob=initprob) mysequence[1] <- ...
0
votes
0answers
22 views

Degree of Freedom of Markov Chains

I have a set of 5000 strings of length 4, where each character in the string can be either A, B, C, or D. 0-order Markov Chain (no dependency), makes a 4*1 array of columns A, B, C, D. 1-order ...
0
votes
0answers
57 views

simulating a second order Markov chain from a non square matrix

My TP for second order MC is like this BPBP IPBP SPBP BPIP IPIP SPIP BPSP IPSP SPSP BP 0.458 0.348 0.375 0.364 0.26 0.305 0.412 ...
-1
votes
1answer
180 views

How to calculate the transition probability matrix of a second order Markov Chain

I have data like in form of this Broker.Position IP BP SP IP IP .. I would like to calculate the second order transition matrix like in this form BP IP SP BPBP SPSP IPIP BPSP ...
0
votes
1answer
60 views

Connection between coin flipping and discrete time Markov Chain

Consider the situation where the same operation is done multiple times with succes probability P and failure probability 1-P (i.e. coin flipping). I want to simulate this with a markov chain. The ...
0
votes
0answers
16 views

Invert Markov Chain

A Markov Chain's Sequence of State is fully characterized by it's birth rate l(t) (for lambda) and it's deathrate m(t) (for mu) and given an initial probability distribution P0 of the initial state. ...
0
votes
1answer
54 views

Hidden markov model next state only depends on previous one state? What about previous n states?

I am working on a prototype framework. Basically I need to generate a model or profile for each individual's lifestyle based on some sensor data about him/her, such as GPS, motions, heart rate, ...
0
votes
1answer
64 views

Extracting multiple elements of varied data types from list [closed]

I have large file from which i created a list of tuples (which holds only the information i need) which looks like this: ('>3D_o;136', 'N_terminal:in', ...
0
votes
3answers
103 views

Converting a matrix into a markov transition matrix in R

I have a matrix mat with values between 0 and 1 (so can be probabilities) as follows: > t <- c(22, 65, 37, 84, 36, 14, 9, 19, 5, 49) > x <- t/max(t) > mat <- x%*%t(x) I now want ...
2
votes
1answer
130 views

Convert text prediction script [Markov Chain] from javascript to python

i've been trying the last couple days to convert that js script to python code. My implementation (blindfull cp mostly, some minor fixes here and there) so far: import random class markov: ...
0
votes
1answer
51 views

Markov models with known states

I'm new to hidden-markov models and trying to figure out what is the best way to model the following problem: I have a random variable that can be in three different states. Similar to hidden markov ...
2
votes
1answer
102 views

Given 100,000 word-to-phonemes mappings, how can I split the original words on the phoneme boundaries?

I have a mapping of 100,000+ words to their phonemes (CMUdict), like: ABANDONED => [ 'AH', 'B', 'AE', 'N', 'D', 'AH', 'N', 'D' ] I want to split the original words' letters into a number of ...
0
votes
1answer
254 views

Markov chain transition matrix from vector of probabilities

The complete data.frame overview: 'data.frame': 29 obs. of 3 variables: $ FirmDatum : Date, format: "1982-12-31" "1983-03-31" "1983-06-30" ... $ fittedSurv: num 0.884 0.839 0.779 0.746 0.817 ... ...
-2
votes
1answer
97 views

what is the condition under which the markov chain converge? [closed]

I'm programming some program which calculates the limit of markov chain. if the markov matrix diverges, I should transform it into the form dA + (1-d)E, where both A and E are n * n matrix, and ...
-1
votes
2answers
83 views

index exceeding matrix dimentions

I was trying to get this low order recursive function in matlab. i want to calculate the probability of status of a site at next time step, given that I have the initial probability of that being a ...
2
votes
2answers
141 views

Markov Clean Function Trouble

I am trying to write a function to clean up the hash table that is generated by this code /* * Markov chain random text generator. */ #include <string.h> #include <stdlib.h> #include ...
2
votes
1answer
193 views

Is it possible to guide a Markov chain toward certain keywords?

I'm writing a chat bot for a software engineering course in C#. I'm using Markov chains to generate text, using Wikipedia articles as the corpus. I want it to respond to user input in an (at least ...
1
vote
1answer
176 views

Matlab: Markov chain for Pareto distribution

I am often using Markov chains to approximate first-order autoregressive processes AR(1). Now I would like to draw values from a Pareto distribution. Does anybody know how to construct a Markov chain ...
4
votes
2answers
287 views

How to create paragraphs from markov chain output?

I would like to modify the script below so that it creates paragraphs out of a random number of the sentences generated by the script. In other words, concatenate a random number (like 1-5) of ...
0
votes
1answer
64 views

Advanced video analysys - how to bite it?

I need to do an application that: captures video data from camcorder, do some processing (Monte Carlo methods, Markov's fields and chains, etc.), saves the data as video file, enriched with upper ...
0
votes
2answers
218 views

Count the number of times a string appears in a sequence

I have a matrix X which comprises of some sequences I have from a Markov Chain. I have 5 states 1,2,3,4,5. So for example row 1 is a sequence and row 2 an separate independent sequence. 4 4 4 ...
0
votes
1answer
80 views

Comparing and visualising groups of sequences

I have two groups A and B of strings of the letters "AGTE" and I'd like to find some way of comparing these to see whether they are statistically similar. The first group A are real world ...
0
votes
0answers
100 views

Q(lambda) learning for optimal time-out values

I am working on the power management of a computing board. The boards wakes up periodically and processes some requests and then sent to sleep mode. I have to find a suitable trade-off between the ...
1
vote
1answer
154 views

Calculating Markov chain probabilities with values too large to exponentiate

I use the formula exp(X) as the rate for a markov chain. So the ratio of selecting one link over another is exp(X1)/exp(X2). My problem is that sometimes X is very large, so exp(X) will exceed the ...
11
votes
3answers
268 views

Optimisation of recursive algorithm in Java

Background I have an ordered set of data points stored as a TreeSet<DataPoint>. Each data point has a position and a Set of Event objects (HashSet<Event>). There are 4 possible Event ...
7
votes
1answer
426 views

Best way to calculate the fundamental matrix of an absorbing Markov Chain?

I have a very large absorbing Markov chain (scales to problem size -- from 10 states to millions) that is very sparse (most states can react to only 4 or 5 other states). I need to calculate one row ...
2
votes
1answer
320 views

What is the proper way to shedule Celery tasks to maximize worker productivity?

I'm developing a system that will build a huge n-gram model for an AI project. My pipeline is the following: Resource input --> Fetch data --> Parsers --> Trainer The resource input (basically URLs ...
0
votes
2answers
326 views

Library for a Markov Decision Process in C#

I'm working on a project to create an AI engine, where a robot is exploring a 2D gridded world and has to decide what square to move to next. Are there existing Markov libraries that could be used ...
1
vote
1answer
118 views

R package VLMC dies if state space size exceeds 27

I am using VLMC to fit some Markov models and it dies as soon as the alphabet size reaches 28. I thought this was due to using a single letter in the alphabet by default, but it has the same behavior ...
5
votes
1answer
1k views

Constructing a multi-order Markov chain transition matrix in Matlab

A first-order transition matrix of 6 states can be constructed very elegantly as follows x = [1 6 1 6 4 4 4 3 1 2 2 3 4 5 4 5 2 6 2 6 2 6]; % the Markov chain tm = ...
1
vote
1answer
2k views

Hidden markov model in MATLAB

I have 11 states, and a transition probability matrix, but I don't have emissions as my model is not hidden. It consists only of states (1,2,3, ..., 11) I want to generate random states based on my ...
3
votes
1answer
63 views

Given measurements from a event series as input, how do I generate an infinite input series with the same profile?

I'm currently working with a system that makes scheduling decisions based on a series of requests and the state of the system. I would like to take the stream of real inputs, mock out some of the ...
0
votes
1answer
198 views

Gibbs Sampling Code

Does any one here have implemented Gibbs sampling using some test. I have to implement Gibbs sampling but i have problems in it in nailing it down to implementation level. ----How and from where to ...
3
votes
1answer
330 views

Left eigenvectors not giving correct (markov) stationary probability in scipy

Given the following Markov Matrix: import numpy, scipy.linalg A = numpy.array([[0.9, 0.1],[0.15, 0.85]]) The stationary probability exists and is equal to [.6, .4]. This is easy to verify by taking ...
1
vote
0answers
91 views

Java Library for Steady State Solution for DTMCs

I have been using jMarkov for analyzing CTMCs. This appears to be the most well defined Java library for this purpose. One of the part in my analysis also requires Steady State Solution of a DTMC. ...
0
votes
2answers
416 views

Generating a Markov model from a matrix

The definition may be wrong, so please correct me if that is so.. I need to generate a Markov model from a matrix of a following kind: four two "e" four two "e" three three ...
0
votes
0answers
888 views

More Natural Markov Chain

I have Python script that I wrote to make a Markov Chain that reads through a text file, makes a list of all the words, and makes a dictionary of all the words that come after all the words. Here is ...
0
votes
0answers
147 views

Can the odds of this dice game be determined in a reasonable amount of time/space?

I asked this question on Boardgame StackExchange, regarding which character has the better odds of winning a match of Button Men. That got me thinking about specific approaches to answering the ...
1
vote
2answers
258 views

Python dictionary with list keyword

I'm coding a N'th order markov chain. It goes something like this: class Chain: def __init__(self, order): self.order = order self.state_table = {} def train(self, next_state, *prev_states): ...
4
votes
2answers
599 views

Markov chain on letter scale and random text

I would like to generate a random text using letter frequencies from a book in a .txt file, so that each new character (string.lowercase + ' ') depends on the previous one. How do I use Markov chains ...

1 2