|
In order to follow the examples in this tutorial you will need to login using the panel to the left. If you don't have a Pandorabots account you can sign-up for an account here.
A Tutorial For Adding Knowledge to Your RobotHow about <that>?Using <that> the robot is capable of remembering what it said in the previous interaction. And conversations can become more meaningful. <that> was named and arose from analyzing a conversational exchanges like: Empty: Today I love you.First we need a category that is useful for working with <that> expressions. Enter this category into Empty like this: Human: say *Click on Advanced Alter Response. Notice the contents of the box in the pattern column are the beginning of a new category: "SAY *" (there is a space between SAY and *) In the box labeled template add: <star/>...and Submit the new AIML. (Recall that <star/> is a shorter way of writing <star></star> - see [2].) The effect of this change is to match anything. So now, "Say something" will always set <that> to "something." For example: Human: say I love youWe are going to use this category to test our categories that use <that>. Example 1 - Who are you?At some point your robot might want to know who it is talking to. Here is how to do this: Human: *Click on Advanced Alter Response. Check the box labeled "new category depends on that" and replace the text box's contents with: WHAT IS YOUR NAMENotice the box in the pattern column contains "*" meaning that any response will be matched. In the box labeled template add: Nice to meet you <set name="name"><person/></set>.This last bit of AIML code grabs the person's name. Now ask the robot, "Say what is your name," to generate the state in which the next input will activate the <that> category. Human: say what is your name Example 2 - YES and NO QuestionsUse <that> for categories that seek yes and no responses. Here is an example for "yes" questions: Human: yes Empty: I have no answer for thatClick on Advanced Alter Response. Check the box labeled "new category depends on that" and replace the text box's contents with: ARE YOU LOOKING FOR LOVENotice the box in the pattern column contains "YES". In the box labeled template add four random responses: Now, the robot should be able to recognize the "yes" response:<random> <li>Aren't we all looking for love?</li> <li>Well you've come to the right place!</li> <li>And what kind of love are we looking for today?</li> <li>Well I am overflowing with Love for you today </li> </random> Human: say are you looking for love? Example 3 - Discovering what knowledge to add to a RobotThe AIML tag <that> refers to whatever Empty last said. Use <that/> and a default template to add new knowledge: Human: WhyEnter as the alternative response: "<that/>"? Why?and click on Say Instead. This category enables the following dialogue fragment: Empty: Do not ask me any more questions please.The botmaster notices the fragment and creates the new AIML category: Now the next client who asks "Why?" to the robot's request will active the new <that> category:<category> <pattern>WHY</pattern> <that>DO NOT ASK ME ANY MORE QUESTIONS PLEASE</that> <template>Because I would rather talk about you.</template> </category> Empty: Do not ask me any more questions please.This style of conversational analysis does not presuppose that we know when the client will say "Why?"; rather it looks backward to identify cases where the "Why?" appeared following one of the robot's statements. Having identified the conversation point, the botmaster creates the new category. Example 4 - Context Sensitive PatternsLet's look at a slightly convoluted example. Following on from an earlier example in the previous section, click on Ask Again enough times to get the response in the first exchange below: Human: You do love me don't youClick on Advanced Alter Response Check the box labeled: "new category depends on that" which should contain "YES BUT YOU HAVE TO REALLY TRY TO MAKE ME HAPPIER" Notice the box in the pattern column contains: "BUT I TRY SO HARD TO PLEASE YOU" In the box labeled template add: And sometimes you succeed, it's just that you could do so much better.So only when the robot's random response matches the interaction in the next exchange: Human: you do love me don't you?You can type in: Human: But I try so hard to please you ...Except for the case mentioned above, the robot's response to: Human: But I try so hard to please you ...will be: Empty: I have no answer for thatPicture 1.5 shows the situation. ![]() So, <that> modifies a category - meaning match the category only if the robot said what follows the <that> in the previous utterance. Continuing with this example: Human: You just don't appreciate me, - you take me for granted and walk all over me...Click on Advanced Alter Response Check the box labeled: "new category depends on that" (which now contains the contents of last Response Template): "AND SOMETIMES YOU SUCCEED IT IS JUST THAT YOU COULD DO SO MUCH BETTER" Notice the contents of the box in the pattern column are the beginning of a new category "YOU JUST DO NOT APPRECIATE ME YOU TAKE ME FOR GRANTED AND WALK ALL OVER ME" In the box labeled template add: If you worked harder it will help me to develop more enthusiasm for appreciating you - what do you want me to do? Fake my appreciation or really feel it?With these changes the following interchanges are possible (click on Ask Again enough times to generate Empty's (random) response in the first exchange below): Human: you do love me don't you?Picture 1.6 shows the current state of knowledge. ![]() The contents of the file update.aiml now include: <category> <pattern>YOU DO LOVE ME DO NOT YOU</pattern> <template> <random> <li>I don't know, what have you done for me lately?</li> <li>Yes, but you have to really try to make me happier...</li> <li>Stop your whining!</li> <li>Yes, but only when you are good to me</li> </random> </template> </category> <category> <pattern>BUT I TRY SO HARD TO PLEASE YOU</pattern> <that>YES BUT YOU HAVE TO REALLY TRY TO MAKE ME HAPPIER</that> <template> And sometimes you succeed, it's just that you could do so much better </template> </category> <category> <pattern> YOU JUST DO NOT APPRECIATE ME YOU TAKE ME FOR GRANTED AND WALK ALL OVER ME </pattern> <that> AND SOMETIMES YOU SUCCEED IT IS JUST THAT YOU COULD DO SO MUCH BETTER </that> <template> If you worked harder it will help me to develop more enthusiasm for appreciating you - what do you want me to do? Fake my appreciation or really feel it? </template> </category> Copyright © 2002 - 2004 Doubly Aimless
|