Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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 then words which follow. Is it possible to attach any sort of probability or counter while training the bot? Is that even a good idea?

The second part of the problem is with keywords. Assuming I can already identify keywords from user input, how do I generate a sentence which uses that keyword? I don't always want to start the sentence with the keyword, so how do I seed the markov chain?

Sorry if my ramblings don't make much sense, I'm a bit confused at the moment. Any suggestions or clarifications would be greatly appreciated.

Thanks!

share|improve this question
Tabular 2D data is not really useful for Artifical Intelligence, a graph would be much more beneficial. To get the words which follow, Bayesian Network is the best solution. To form sentences, Language Processing is required and you can't do it with basic logic (such as Markov Chains) – AbiusX Mar 15 '11 at 2:12
You can't do it with Markov Chains? Some bots exist which do use Markov Chains, although it really just puts sentences together, they don't always make sense I suppose. – Jordan Mar 15 '11 at 3:08
You can, but not language processing. Just figuring out the most probable sentence. – AbiusX Mar 15 '11 at 3:13
@AbiusX: What do you mean "just figuring out the most probably sentence"? What would something like a bayesian network give me that markov chains wouldn't? What would I process? Aren't Markov Chains somewhat like Bayesian networks? I mean, you're still dealing with probabilities and something like a directed graph, it's just stored in a table instead.At each word you're still choosing the next word to follow with a given probability, aren't you? What's the difference? And could I start out with Markov Chains and add additional logic? Any suggestions? Thanks! – Jordan Mar 16 '11 at 3:27
Markov Chains are some sort of one dimensional Bayesian Nets, BNs are more general. You could use markov chains but they are not really useful in a language processing application. – AbiusX Mar 16 '11 at 3:34
show 7 more comments

1 Answer

up vote 21 down vote accepted

I made a markov chain chatbot for IRC in Python a few years back and can shed some light how i did it. The text generated does not necessarily make any sense, but it can be really fun to read. Lets break it down in steps. Assuming you have a fixed input, a text file, (you can use input from chat text or lyrics or just use your imagination)

Loop through the text and make a Dictionary, meaning key - value container. And put all pair of words as keys and the word following as a value. For example: if you have a text: "a b c a b k" you start with "a b" as key and "c" as value, then "b c" and "a" as value... the value should be a list or any collection holding 0..many 'items' as you can have more than one value for a given pair of words. In the example above you will have "a b" two times followed fist by "c" then in the end by "k". So in the end you will have a dictionary/hash looking like this: {'a b': ['c','k'], 'b c': ['a'], 'c a': ['b']}

Now you have the needed structure for building your funky text. You can choose to start with a random key or a fixed place! So given the structure we have we can start by saving "a b" then randomly taking a following word from the value, c or k, so the first save in the loop, "a b k" (if "k" was the random value chosen) then you continue by moving one step to the right which in our case is "b k" and save a random value for that pair if you have, in our case no, so you break out of the loop (or you can decide other stuff like start over again) When to loop is done you print your saved text string.

The bigger the input, the more values you will have for you keys (pair of words) and will then have a "smarter bot" so you can "train" your bot by adding more text (perhaps chat input?). If you have a book as input, you can construct some nice random sentences. Please note that you dont have to take only one word that follows a pair as a value, you can take 2 or 10. The difference is that your text will appear more accurate if you use "longer" building blocks. Start with a pair as a key and the following word as a value.

So you see that you basically can have two steps, first make a structure where you randomly choose a key to start with then take that key and print a random value of that key and continue till you do not have a value or some other condition. If you want you can "seed" a pair of words from a chat input from your key-value structure to have a start. Its up to your imagination how to start your chain.

Example with real words:

"hi my name is Al and i live in a box that i like very much and i can live in there as long as i want"

"hi my" -> ["name"]

"my name" -> ["is"]

"name is" -> ["Al"]

"is Al" -> ["and"]

........

"and i" -> ["live", "can"]

........

"i can" -> ["live"]

......

Now construct a loop: Pick a random key, say "hi my" and randomly choose a value, only one here so its "name" (SAVING "hi my name") Now move one step to the right taking "my name" as the next key and pick a random value... "is" (SAVING "hi my name is") Now move and take "name is" ... "Al" (SAVING"hi my name is AL") Now take "is Al" ... "and" (SAVING "hi my name is Al and") .......... When you come to "and i" you will randomly choose a value, lets say "can", then the word "i can" is made etc... when you come to your stop condition or that you have no values print the constructed string in our case:

"hi my name is Al and i can live in there as long as i want"

If you have more values you can jump to any keys. The more values the more combinations you have and the more random and fun the text will be.

Hope this helps

Cheers

share|improve this answer
2  
+1 I wish all SO answers were this detailed. Thanks for a great read! – templatetypedef Mar 15 '11 at 19:28
Yep, thanks mate! That was pretty helpful :) If I might ask, how did you choose the best response? – Jordan Mar 16 '11 at 3:26
If you use chat text as input, you have to have a lot to make the bot "smart" When a person mention the botname a response was triggered. I took the whole string written and checked first who wrote it and started my response with that name, like "Jordan: bla bla" then i chose a pair of words from that string and started there. I could also make up two sentences with the second start with "and (random word)" I also randomly chose how long my response was, maybe 5-50 words. I also had more than one 'brain' with more structures i could play with. A brain is basically just a textfile. – Nocker Mar 16 '11 at 13:35
Forgot to say that if you use chat input it can be hard as people tend to make a lot of spelling mistakes and shortcuts, then your bot will be like that. You can also look into natural language processing if you have time, here is something in Python link – Nocker Mar 16 '11 at 13:51

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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