oddcrap Posted October 12, 2005 Share Posted October 12, 2005 Awesome guide :) Little to much for me though. If you did it in PHPbb (bb code), why can't you just copy the BB code directly into IPB (neowin)? Link to comment https://www.neowin.net/forum/topic/383885-guide-how-to-build-your-chat-bot/#findComment-586659020 Share on other sites More sharing options...
sachleen Posted October 12, 2005 Share Posted October 12, 2005 a bit long for me tho... seems good from the figure x pictures... Link to comment https://www.neowin.net/forum/topic/383885-guide-how-to-build-your-chat-bot/#findComment-586659039 Share on other sites More sharing options...
TheBrotherhood313 Posted October 12, 2005 Share Posted October 12, 2005 Really nice looking guide. Didnt read hardly any yet though. Will this guide help to create an IRC chat bot? Or is this for something else? Link to comment https://www.neowin.net/forum/topic/383885-guide-how-to-build-your-chat-bot/#findComment-586659369 Share on other sites More sharing options...
Elagizy Posted October 12, 2005 Author Share Posted October 12, 2005 Awesome guide :) Little to much for me though.If you did it in PHPbb (bb code), why can't you just copy the BB code directly into IPB (neowin)? 586659020[/snapback] Thanks, I thought it wouldn't work by copying BB code :pinch: Really nice looking guide. Didnt read hardly any yet though.Will this guide help to create an IRC chat bot? Or is this for something else? 586659369[/snapback] As I said this guide is discussing the logics to build your chatbot, so yes you can use it to build your IRC bot or downloadable bot or whatever. :) Link to comment https://www.neowin.net/forum/topic/383885-guide-how-to-build-your-chat-bot/#findComment-586659980 Share on other sites More sharing options...
Civilian Posted October 16, 2005 Share Posted October 16, 2005 nice guide ! have been interesting in creating chat bot A.I.'s and have made a few different types, this is just what i'm after for my next bot :D thanx Link to comment https://www.neowin.net/forum/topic/383885-guide-how-to-build-your-chat-bot/#findComment-586679091 Share on other sites More sharing options...
jimbo12141 Posted October 16, 2005 Share Posted October 16, 2005 awsome guide! Link to comment https://www.neowin.net/forum/topic/383885-guide-how-to-build-your-chat-bot/#findComment-586679503 Share on other sites More sharing options...
macmesias Posted March 21, 2009 Share Posted March 21, 2009 just wanna ask... Think of this case... You operate your chatbot by looking for keywords found in the user's input. And if keywords were found, it will be looking for responses found in your database. For example, you created a table named 'RESPONSES' which contains the responses of the chatbot... Should the table for 'RESPONSES' contain exact and complete responses of the chatbot? For example, in a business oriented bot, the INPUT is: "Where can i start a Fishing business" and the keyword is 'Fishing' should the table for responses be like this: RESPONSES responseID aaaaaa response 1aaaaaaaaaaaaaaaNavotas is a good place for starting a fishing business and of course, if it matched, the OUTPUT of the chatbot will be: "Navotas is a good place for starting a fishing business" Just wanted to ask because my instructor criticized this type of chatbot we made, wherein the exact responses were found in the database. By the way, chatbot ELIZA was my pattern in making this type of chatbot. If my instructor is right in criticizing our work, can you please give me pieces of your advice? or suggestions? I'm looking forward to your reply. Thank you. Link to comment https://www.neowin.net/forum/topic/383885-guide-how-to-build-your-chat-bot/#findComment-590738534 Share on other sites More sharing options...
Dance. Posted March 21, 2009 Share Posted March 21, 2009 That was interesting.. I think :/ Link to comment https://www.neowin.net/forum/topic/383885-guide-how-to-build-your-chat-bot/#findComment-590738542 Share on other sites More sharing options...
Elagizy Posted April 19, 2009 Author Share Posted April 19, 2009 just wanna ask...Think of this case... You operate your chatbot by looking for keywords found in the user's input. And if keywords were found, it will be looking for responses found in your database. For example, you created a table named 'RESPONSES' which contains the responses of the chatbot... Should the table for 'RESPONSES' contain exact and complete responses of the chatbot? For example, in a business oriented bot, the INPUT is: "Where can i start a Fishing business" and the keyword is 'Fishing' should the table for responses be like this: RESPONSES responseID aaaaaa response 1aaaaaaaaaaaaaaaNavotas is a good place for starting a fishing business and of course, if it matched, the OUTPUT of the chatbot will be: "Navotas is a good place for starting a fishing business" Just wanted to ask because my instructor criticized this type of chatbot we made, wherein the exact responses were found in the database. By the way, chatbot ELIZA was my pattern in making this type of chatbot. If my instructor is right in criticizing our work, can you please give me pieces of your advice? or suggestions? I'm looking forward to your reply. Thank you. Based on user input, there is a possibility that chatbot could combine between more than 1 record to give a mixed output. For example: User: What's your favorite color? <chatbot found the keyword which is "color" and found it in "Colors table", he can just simply answer with the color from "Colors table" and that will be an exact response, or he can complicate it to get the output from different tables> Responses 1 (thoughts table): - I believe <R2> - I think <R2> - I bet <R2> - I'm pretty sure <R2> - <R2>, I guess. <by random selection, chatbot chosen "I think <R2>"> Responses 2 (Colors table): - Red - White - Green - Blue ...etc <by random selection, chatbot chosen "Blue"> <chatbot converts "What's" in user input to be "It's", then combine all the outputs to be "It's Blue" and then replace "<R2>" with "It's Blue" > Output: I think It's Blue. -------------- There could be also more complication you can add to the output engine. Also I'd recommend to see a physical examples that just happened in CBC 2009 Contest (An annual contest to benchmark chatbots intelligence). Here is the results of the 1st round of the contest: http://www.chatterboxchallenge.com/result.php you can click any chatbot to see chat transcripts and the results for each one. Sorry for my late reply. Thanks :) Link to comment https://www.neowin.net/forum/topic/383885-guide-how-to-build-your-chat-bot/#findComment-590874160 Share on other sites More sharing options...
Recommended Posts