AIML - that Tag وسم هذا في لغة نمذجة الذكاء الاصطناعي
AIML - <that> Tag وسم هذا في لغة نمذجة الذكاء الاصطناعي
<that> تُستخدم العلامة في AIML للرد بناءً على السياق.
بناء الجملة
<that> template </that>
على سبيل المثال ، ضع في اعتبارك المحادثة التالية.
Human: Hi Alice! What about movies? Robot: Do you like comedy movies? Human: No Robot: Ok! But I like comedy movies.
مثال
أنشئ that.aiml داخل C> ab> bots> test> aiml and that.aiml.csv داخل C> ab> bots> test> aimlif directory.
ذلك
<?xml version = "1.0" encoding = "UTF-8"?> <aiml version = "1.0.1" encoding = "UTF-8"?> <category> <pattern>WHAT ABOUT MOVIES</pattern> <template>Do you like comedy movies</template> </category> <category> <pattern>YES</pattern> <that>Do you like comedy movies</that> <template>Nice, I like comedy movies too.</template> </category> <category> <pattern>NO</pattern> <that>Do you like comedy movies</that> <template>Ok! But I like comedy movies.</template> </category> </aiml>
that.aiml.csv
0,WHAT ABOUT MOVIES,*,*,Do you like comedy movies,that.aiml 0,YES,Do you like comedy movies,*,Nice! I like comedy movies too.,that.aiml 0,NO,Do you like comedy movies,*,Ok! But I like comedy movies.,that.aiml
تنفيذ البرنامج
افتح موجه الأوامر. انتقل إلى C> ab> واكتب الأمر التالي -
java -cp lib/Ab.jar Main bot = test action = chat trace = false
تحقق من النتيجة
سترى الناتج التالي -
Human: What about movies? Robot: Do you like comedy movies? Human: No Robot: Ok! But I like comedy movies.
التسميات: AIML Artificial Intelligence Modelling نمذجة الذكاء الاصطناعي
<< الصفحة الرئيسية