Tagged Questions
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.
18
votes
13answers
2k views
Any business examples of using Markov chains?
What business cases are there for using Markov chains? I've seen the sort of play area of a markov chain applied to someone's blog to write a fake post. I'd like some practical examples though? E.g. ...
9
votes
3answers
337 views
Using Markov chains (or something similar) to produce an IRC-bot
I tried google and found little that I could understand.
I understand Markov chains to a very basic level: It's a mathematical model that only depends on previous input to change states..so sort of a ...
8
votes
2answers
460 views
How to test if a string contains gibberish in PHP?
I am making a registering form for a website and because I'm sure everyone
is going to enter some gibberish in the Secret Answer's input (I do that myself),
I would like to programmatically test that ...
5
votes
1answer
167 views
Reconstructing now-famous 17-year-old's Markov-chain-based information-retrieval algorithm “Apodora”
While we were all twiddling our thumbs, a 17-year-old Canadian boy has apparently found an information retrieval algorithm that:
a) performs with twice the precision of the current, and widely-used ...
5
votes
1answer
106 views
Converting First order logic to CNF
Is there a existing implementation in C/c++/java to convert first order logic to CNF ?
5
votes
1answer
684 views
How do Markov Chain Chatbots work?
I was thinking of creating a chatbot using something like markov chains, but I'm not entirely sure how to get it to work. From what I understand, you create a table from data with a given word and ...
5
votes
2answers
293 views
Can an author's unique “literary style” be used to identify him/her as the author of a text?
Let's imagine, I have two English language texts written by the same person.
Is it possible to apply some Markov chain algorithm to analyse each: create some kind of fingerprint based on statistical ...
5
votes
4answers
6k views
Simple random english sentence generator
I need a simple random English sentence generator. I need to populate it with my own words, but it needs to be capable of making longer sentences that at least follow the rules of English, even if ...
4
votes
3answers
167 views
Algorithm for computing the plausibility of a function / Monte Carlo Method
I am writing a program that attempts to duplicate the algorithm discussed at the beginning of this article,
http://www-stat.stanford.edu/~cgates/PERSI/papers/MCMCRev.pdf
F is a function from char to ...
4
votes
3answers
284 views
Simplifying for-if messes with better structure?
Please, move this question to Code Review -area. It is better suited there because I know the code below is junk and I want critical feedback to complete rewrite. I am pretty much reinventing the ...
3
votes
2answers
112 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 ...
3
votes
3answers
121 views
How many combinations of k neighboring pixels are there in an image?
I suck at math, so I can't figure this out: how many combinations of k neighboring pixels are there in an image? Combinations of k pixels out of n * n total pixels in the image, but with the ...
2
votes
2answers
64 views
R: How to generate a series of exponential deviates that sum to some number
I am trying to generate a series of wait times for a Markov chain where the wait times are exponentially distributed numbers with rate equal to one. However, I don't know the number of transitions of ...
2
votes
1answer
107 views
Graphical markov chain in javascript
I have a Markov chain that I would like to represent graphically in javascript. I need to represent the nodes, links, and transition probabilities. Perhaps something like one of these two diagrams:
...
2
votes
1answer
152 views
Generate a infinite line with the help of markov chain theory [closed]
So let me explain my problem a little better now (please reopen this question). I heard of markov chain theory when thinking about a method to generate procedural lines to build terrain.
The main ...
2
votes
1answer
233 views
Matlab - Sparse Matrix system resolution
I'm involved in the resolution of a system of the type Ax = b, where A is a square sparse matrix, x is the vector of the unknows (I have to compute it) and b is a vector of all zeros excpet for the ...
2
votes
3answers
192 views
Generating a pseudo-natural phrase from a big integer in a reversible way
I have a large and "unique" integer (actually a SHA1 hash).
Note: While I'm talking here about SHA1 hashes, this is not a cryptography / security question! I'm not trying to break SHA1. Imagine a ...
2
votes
1answer
781 views
How to vectorize a random walk simulation in Matlab
I am rewriting a monte carlo simulation model in Matlab with an emphasis on readability. The model involves many particles (represented as (x,y,z)) following a random walk over a small set of states ...
2
votes
2answers
3k views
R library for discrete Markov chain simulation
I am looking for something like the 'msm' package, but for discrete Markov chains. For example, if I had a transition matrix defined as such
Pi <- matrix(c(1/3,1/3,1/3,
0,2/3,1/6,
2/3,0,1/2))
...
2
votes
1answer
182 views
R: MCMClogit confusion
Could anybody explain to me why
simulatedCase <- rbinom(100,1,0.5)
simDf <- data.frame(CASE = simulatedCase)
posterior_m0 <<- MCMClogit(CASE ~ 1, data = simDf, b0 = 0, B0 = 1)
always ...
2
votes
2answers
127 views
Avoiding Determinism with Markovian Logic
I just began reading more about Markov Chain Generators today, and am really intrigued by the whole process of building one. From my understanding, the future state is dependent upon the statistical ...
2
votes
1answer
405 views
Good *free* markov modeling tools?
I would like to use Markov models for some architecture simulations, but don't have a budget to buy anything like, eg, SHARPE. Does anyone know of a freeware tool, either platform-independent or ...
1
vote
2answers
67 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):
...
1
vote
1answer
255 views
conditional random fields package for R
I'm quite new to R (I want to switch from Matlab to an open source tool and love R plots ;)
For my new side project, I need a Conditional Random Fields package for R, that is general purpose and can ...
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
130 views
Looking for synonymizer, text generation, hiddentmarkov chains [closed]
I am looking for free/open source synonymizer, or text generation(with hidden markov chains or another method).
1
vote
1answer
234 views
What's the octave equivalent of eig(X, 'nobalance')
I'm trying to find the equilibrium distribution of a markov chain, which means finding the eigenvalues of the transition matrix representing it, however, the eig function automatically normalises the ...
1
vote
1answer
132 views
Is there something like automatic writing or surrealist automatism in programming?
Is there something like automatic writing or surrealist automatism in programming?
1
vote
1answer
1k views
Creating a smart text generator
I'm doing this for fun (or as 4chan says "for teh lolz") and if I learn something on the way all the better. I took an AI course almost 2 years ago now and I really enjoyed it but I managed to forget ...
1
vote
3answers
239 views
Libraries or tools for generating random but realistic text
I'm looking for tools for generating random but realistic text. I've implemented a Markov Chain text generator myself and while the results were promising, my attempts at improving them haven't ...
0
votes
1answer
49 views
bayes net open source [closed]
Can anyone recommend a good opensource or free bayes net software program?
I have been using baysealab with a class, but my account will expire and I'd like to continue building and using bns.
0
votes
0answers
60 views
Markovian chains with Redis
For self-education purposes, I want to implement a Markov chain generator, using as much Redis, and as little application-level logic as possible.
Let's say I want to build a word generator, based on ...
0
votes
2answers
96 views
Converting Markov Chain Python Script to PHP. Not sure of what some of the equivalent functions are in PHP
I've seen this Markov Chain gibberish detector written in response to another question on Stackoverflow and I would like to convert it to PHP, I'm not looking for someone to do this for me, but I am ...
0
votes
0answers
24 views
I need your opinions (Implementing Mean Field Method on Rumor Routing)
I'm doing my research about implementing mean field method on flat routing wireless sensor networks.
I've implemented mean field method on Random Walk Routing. Now, I'm going to implementing the ...
0
votes
1answer
157 views
Markov Chain: SQL Database and Java Representation
Now this question is a bit obscure. I have a text-based markov chain that I've generated by parsing user-typed text. It is used to generate an almost-coherent string of gibberish and works by storing ...
0
votes
2answers
66 views
Getting an ArrayIndexOutOfBoundsException when working with markov chains
I have an array to store a set of coordinates for painting a piece of line. So here are some example coordinates
double[][] plotMatrix = {{10,20},{55,80},
{120,40},{225,30},
...
0
votes
1answer
428 views
Using Hidden Markov Model for designing AI mp3 player
Im working on an assignment, where I want to design an AI for a mp3 player. The AI must be trained and designed with the use of a HMM method.
The mp3 player shall have the functionality of adapting ...
0
votes
2answers
145 views
Track text cursor, to display menu above
I want to build predictive sentence advisor, like (Onion News) Apple Introduces Revolutionary New .... Sentences can probably be generated by stylized pseudo-random text generating algorithm like ...