AIML自己的学习笔记
生活随笔
收集整理的這篇文章主要介紹了
AIML自己的学习笔记
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
最近在學習aiml,我把自己在網上找的資料整合在這里,方便查找使用。
語言:python
1.簡單的一問一答(<pattern><template>)
<?xml version="1.0" encoding="GB2312"?> #必須聲明,中文用GB2312,英文用UTF-8 <aiml> <category> <pattern>你好</pattern> #問題,正則表達式,支持模糊匹配<template>你好</template> #回答 </category> </aiml>?
2.一問對多答(<random>)
<category> #問pattern中問題會隨機回答下面答案<pattern>今天天氣真好</pattern><template><random> <li>處處好風光,完美!</li><li>是呀,小美也想出門呢</li><li>那你還在這調戲我,快出去玩呀</li></random></template> </category>?
3.多問對一答(<srai>)
#提問你叫什么或者你的名字是什么都會回答我叫小美 <category> <pattern>名字</pattern> <template>我叫小美</template> </category><category> <pattern>你叫什么</pattern> <template><srai>名字</srai></template> </category><category> <pattern>你的名字是什么</pattern> <template><srai>名字</srai></template> </category>??
?
總結
以上是生活随笔為你收集整理的AIML自己的学习笔记的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 密码生成器c语言程序,C++全密码生成的
- 下一篇: Linux抓包命令