Tagged Questions
The markov tag has no wiki summary.
18
votes
4answers
797 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 ...
6
votes
4answers
164 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
1answer
327 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
1answer
100 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 ...
4
votes
2answers
277 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 ...
4
votes
1answer
633 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 ...
3
votes
3answers
245 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 ...
3
votes
2answers
1k 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
228 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 ...
1
vote
0answers
19 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 ...
1
vote
1answer
193 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 ...
1
vote
0answers
415 views
Programming With Markov Algorithms
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 ...
0
votes
1answer
155 views
Hidden Markov Model predicting next observation
I have a sequence of 500 observations. Observations are just the movements of bird. And i want to predict what would be the 501st movement of the bird? I searched the web and I guess this can be done ...
0
votes
1answer
75 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 ...
0
votes
1answer
258 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 ...
0
votes
2answers
361 views
Markov C++ read from file perfomance
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 file ...