vote up 3 vote down star

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 markup, etc.

I was first exposed to Markov Chains with the Ruby Rbot IRC bot. Their Markov plugin source is here.

I'm finding my use of the PHP markov algorithm's output is messy. One thing I am able to see is that the rbot implementation chains two words together to start. Is there a clear way to make this happen with the PHP implementation I've linked? If not, is there a PHP implementation that can do this?

flag

71% accept rate
1 or 3 makes more sense than 2 according to network. markovs are 1 or nothing, more like nature is 1,2 and between. Don't believe, check strong functions where decision has value, markov 0 could mean value dropped. – LarsOn Sep 20 at 10:59

2 Answers

vote up 2 vote down

Do you want to do word chaining or letter chaining? The PHP implementation you have above does letter chaning, which will tend towards gibberish, not just words seemingly out of place, at low order values. It looks like the rbot does word chaining, which implicitly generates more 'readable' text.

Markov chaining is pretty simple to implement. I don't think it would be too hard to adapt the PHP source to split and chain by word instead of letter. I've been thinking of making a pure sql stored procedure which can take a table and generate a string.

link|flag
I would like letter chaining. Can you point me to some examples so I can figure out how to do that with the PHP source? – bofe Sep 11 at 13:13
vote up 0 vote down

Interesting...I never knew Markov chains until now. How is can that be applied to the web?

link|flag

Your Answer

Get an OpenID
or
never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.