Markov, or markov property refers to the memoryless property of a stochastic process.

learn more… | top users | synonyms

0
votes
1answer
39 views

Gillespie Stochastic Simulation in Discrete Time using R

I'm simulating a Stochastic Simulation for Epidemiology. How do I simulate it in a discrete time? I managed to obtain for continuous time using the coding below. library(GillespieSSA) parms <- ...
0
votes
0answers
47 views

Hidden Markov Model [closed]

I have a data set which contains an event location and timestamps as well as an ID The event is a nominal label, the location is a two letter code representing an Address and the ID is a 12 number ID. ...
2
votes
1answer
63 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
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
58 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
190 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
0answers
99 views

My text generator with Markov chains routine is incomplete how to approach a pos/word/freq data structure?

I want to create a simple text generator with markov chains. I don't understand how the java 'random' routines are used and what datastructures to use? For example, let's say I have a routine to ...
0
votes
1answer
121 views

Markov Chains and equilibrium probability [closed]

The fire danger during the summer in Mount Baker National Forest is classified into one of three danger levels. These are 1 =low, 2 =moderate, 3 =high. The probability of daily transitions between ...
0
votes
1answer
9 views

Can I make an unchordal MRF equivalent to a chordal MRF?

Here BY equivalence I mean, will the distribution(Entire table) be made equal in both cases???
1
vote
1answer
75 views

Generating random numbers for solar energy harvesting using Markov models

How do I generate random numbers using a Markov model in C#? I noticed here that almost all of the applications of the Markov algorithm is for randomly writing text. Is there a source code somewhere ...
0
votes
0answers
54 views

Framework of Cart Pole w/ Reinforcement Learning

I am working on a side project that is modelling a the inverted pendulum problem and solving it with a reinforcement learning algorithm, most notably Q-Learning. I have already engineered a simple MDP ...
0
votes
0answers
75 views

Given a two state markov chain, look for the probability density function of the number of one state in a temporal sequence

We know that if the state sequence isn't Markov process and the two states are independent with each other, the number of one state complies with Binomial distribution. I am wondering, is there an ...
0
votes
0answers
61 views

gmrf model for images

Can anyone explain how the parameters of the GMRF model can be estimated for an image using MATLAB? I have tried the toolboxes like UGM.(http://www.di.ens.fr/~mschmidt/Software/UGM/trainMRF.html)
6
votes
2answers
256 views

Data structure for Markov Decision Process

I have implemented the value iteration algorithm for simple Markov decision process Wikipedia in Python. In order to keep the structure (states, actions, transitions, rewards) of the particular Markov ...
-2
votes
1answer
99 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 ...
0
votes
1answer
184 views

How to randomly change the transition matrix using by Markov chain?

I'm using a 1st step Transition matrix to generate the DNA sequences. Now I need to give a probability to the transition matrix to change every 1000 steps. Let's say, every 1000 steps, there is 40% ...
1
vote
0answers
166 views

Markov Decision Process Clarification

I'm in the process of implementing Value Iteration for a homework assignment. It's coming along nicely but I'm confused about a certain part, specifically the line indicated below //(taken from ...
1
vote
2answers
463 views

Converting Pseudocode to C++ [closed]

I am trying to learn about Markov decision problems and I was given the algorithm for Value Iteration, but I am confused how to turn them into actual C++ code. Mainly the parts where summations and ...
2
votes
1answer
119 views

Java - Taking character frequencies, creating probabilities, and then generating pseudo-random characters

I'm creating a pseudo-random text generator using a Markov model. Basically, I use a hash table to store lists of substrings of order k(the order of the Markov model), then for each substring I have ...
1
vote
1answer
112 views

Markov Algorithm for Random Writing

I got a litte problem understanding conceptually the structure of a random writing program (that takes input in form of a text file) and uses the Markov algorithm to create a somewhat sensible output. ...
0
votes
0answers
132 views

Policy iteration on 4x3 grid world

I am supposed to come up with an mdp agent that uses policy iteration and value iteration for an assignment and compare its performance with the utility value of a state. So how does a mdp agent, ...
-2
votes
1answer
106 views

Markov expectation: How many stones will the hero cost? [closed]

In a game, a hero has 100% probability to go from level 0 to level 1. When at level 1, he has 1/3 probability to go to level 2, 1/3 probability to level 0, 1/3 probability to stay at level 1. When ...
0
votes
0answers
68 views

Converting Markov model to nth order finite context model

I am studying about Markov model and I got a question. Lets say.. we have the a finite n so that model of current state will be known after we generates string of length n or greater. Then, how can ...
1
vote
1answer
83 views

“programming pearls”: Strings of Pearls

In column 15.3, the author introduced how to generate text randomly from an input document. The author also gave the source code. qsort(word, nword, sizeof(word[0]), sortcmp); int sortcmp(char **p, ...
1
vote
1answer
247 views

Continuous Time Markov Process

What are the methods to solve a CT Markov process? I know that for known processes such as birth-death or some queues, problem can be solved analytically? However, how to solve if it is not ...
1
vote
1answer
120 views

Why am I getting an IndexError from a random choice function?

I am trying to run this code from the beginners' python book Think Python to do Markov Analysis on a text file. When I run the code provided as a solution, I get an IndexError: List index out of ...
-1
votes
1answer
408 views

DIfference between markov chain models and hidden markov model?

What is the difference between markov chain models and hidden markov model? I've read in Wikipedia, but couldn't understand the differences.
0
votes
2answers
112 views

Markov entropy when probabilities are uneven

I've been thinking about information entropy in terms of the Markov equation: H = -SUM(p(i)lg(p(i)), where lg is the base 2 logarithm. This assumes that all selections i have equal probability. But ...
0
votes
1answer
73 views

Which is faster? Casting and subtractions or dict look ups in Python

So for fun, I decided to revisit an old college assignment I had in which a ciphertext was given of about 75 characters, and a crib that the message was signed with three letters (initials of my ...
-1
votes
1answer
139 views

What does mean that P(λ) is the prior probability in a Hidden Markov Model?

Given the following parameters: λ = (A,B,π). A = the state transition matrix A = { a[i][j] } = { P(state q[i] at t | state q[j] at t+1) }, B = the observation matrix and π = the initial ...
7
votes
1answer
328 views

Python libraries for on-line machine learning MDP

I am trying to devise an iterative markov decision process (MDP) agent in Python with the following characteristics: observable state I handle potential 'unknown' state by reserving some state ...
2
votes
1answer
378 views

Markov decision process - how to use optimal policy formula?

I have a task, where I have to calculate optimal policy (Reinforcement Learning - Markov decision process) in the grid world (agent movies left,right,up,down). In left table, there are Optimal ...
5
votes
2answers
1k views

Markov Clustering Algorithm

I've been working through the following example of the details of the Markov Clustering algorithm: http://www.cs.ucsb.edu/~xyan/classes/CS595D-2009winter/MCL_Presentation2.pdf I feel like I have ...
6
votes
4answers
3k views

Markov Decision Process: value iteration, how does it work?

I've been reading a lot about Markov Decision Processes (using value iteration) lately but I simply can't get my head around them. I've found a lot of resources on the Internet / books, but they all ...
5
votes
3answers
1k views

Simple Markov Chain in R (visualization)

i'd like to do a simple first order markov chain in R. I know there are packages like MCMC, but couldn't found one to display it graphically. Is this even possible? It would be nice if given a ...
1
vote
1answer
1k views

Hidden Markov Model predicting next observation

I have a sequence of 500 observations of the movements of a bird. I want to predict what the 501st movement of the bird would be. I searched the web and I guess this can be done by using HMM, however ...
0
votes
1answer
154 views

list[-1] yields “list index out of range” error in python program

I'm trying to build a markov generator that takes an arbitrary length for the chain of words as a programming exercise, but I've found a bug I just can't quite seem to fix. When I run the markov ...
2
votes
1answer
649 views

Implementing a discrete Markov Chain simulation in c++ with a graphical interface

I just wanted to know if any one had any pointers for a library or libraries that support Markov modelling and graphical graph representation, as for a project i must simulate a transport model and be ...
5
votes
1answer
687 views

Building a more realistic random word generator?

I'm seen many examples of using Markov chains for generating random words based on source data, but they often seem a bit overly mechanical and abstract to me. I'm trying to develop a better one. I ...
4
votes
2answers
3k views

Explain markov-chain algorithm in layman's terms

I don't quite understand this Markov... it takes two words a prefix and suffix saves up a list of them and makes random word? /* Copyright (C) 1999 Lucent Technologies */ /* Excerpted from 'The ...
2
votes
2answers
340 views

Markov library/samples in F#

I am working on a personal project with F# and would like to experiment with F# and Markov models. Can anyone recommend a library/sample with source that supports Markov modeling? Since this is a ...
0
votes
1answer
559 views

Reinforcement learning with neural networks

I am working on a project with RL & NN I need to determine the action vector structure which will be fed to a neural network.. I have 3 different actions (A & B & Nothing) each with ...
19
votes
4answers
1k views

“Anagram solver” based on statistics rather than a dictionary/table?

My problem is conceptually similar to solving anagrams, except I can't just use a dictionary lookup. I am trying to find plausible words rather than real words. I have created an N-gram model (for ...
0
votes
2answers
524 views

Markov C++ read from file performance

I have my 2nd assignment for C++ class which includes Markov chains. The assignment is simple but I'm not able to figure out what is the best implementation when reading chars from files. I have a ...
6
votes
3answers
519 views

Markov decision process' questions

I'm a bit confused about some points here: What does it mean to say that it will be successful 70% of the time he tries a given action? Does it mean that every time he tries to perform an action ...
1
vote
1answer
703 views

Programming With Markov Algorithms [closed]

I Wonder if someone has used Markov Algorithm-based programming system or embedded facility in production or for scientific purpose. I know about 'REFAL' programming language invented a thousand ...
4
votes
1answer
858 views

Cleaning up this PHP Markov Chain output?

This is my first time working with Markov chains. I want to combine two sources of text and get a readable Markov Chain. The implementation I'm using is here - the sources of text are stripped of ...