This is probably an extremely difficult question to answer, but here is my question anyway.

I am wondering what the best method is for determining the topic of a conversation. The conversation takes place over IRC. I have written chatbots in the past that have interpreted the topic pretty well, but not as accurately as I would like.

In the past I have had to make lists of common words such as "the" and "a" then filter them from the topic array. I don't know if this is the correct way to do it though.

I am wondering if there is a frequency algorithm of some sort that will allow me to work out what word is the current topic of conversation.

Any suggestions as to how this can be achieved will be greatly appreciated. Thanks.

link|improve this question

2  
If the chat topic happens to be the word "the", you'd be kinda screwed, wouldn't you? – cHao Dec 5 '11 at 21:57
@cHao Exactly. That's why I am looking for a solution that will return the actual topic. Maybe it turns out that the topic 60% of the time is the 8th most used word. So you should use that rather than the 1st most used one. I have no idea. Thats why I am asking ^^ – Wolfy87 Dec 5 '11 at 21:59
feedback

2 Answers

up vote 1 down vote accepted

There is something called Zipf's Law. It could only accurately be applied to text written by a human, and it would have to have some length to it.

The result of running a text through such an algorithm would be a set of keywords (5%-7% of the original text) which closely describe the topic of the text.

link|improve this answer
This may cause my brain to fall out of my head. But seems to the be the exact thing I am looking for. I am sure you know what IRC messages are like though. Short and usually not very coherent. Maybe I could combine the last 10 messages or so and run them through something like this... – Wolfy87 Dec 5 '11 at 22:01
Yes, combining is better for analyzing the topic of the whole conversation. I'm pretty sure it will be inaccurate though if there are multiple topics discussed. – Daniel Gabriel Dec 5 '11 at 22:05
I am sure it will. But any degree of accuracy is better than none. In the past it has been my bots vague accuracy that has made it hilarious. Thank you for this. You have put me on the right track with the idea for samples made of combined messages and using things such as Zipf's Law to interpret it. – Wolfy87 Dec 5 '11 at 22:17
feedback

Natural Language Processing can be very difficult, but you can still get some results with just fundamentals. Daniel Gabriel's suggestion to use Zipf's Law is a good one.

An overview book like Manning and Schütze's Foundations of Statistical Natural Language Processing may be helpful - it explains many common techniques, and will point you towards more specialized resources.

(Their Introduction to Information Retrieval is excellent, too, and has a free PDF on the site.)

link|improve this answer
Thanks for this, great answer! I have already implemented something that is similar to Zipf's Law in my bot but I am sure this will help people in the future. Thank you! – Wolfy87 Dec 19 '11 at 10:53
feedback

Your Answer

 
or
required, but never shown

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