疾病诊断小型专家系统人工智能课程设计报告_第1页
疾病诊断小型专家系统人工智能课程设计报告_第2页
疾病诊断小型专家系统人工智能课程设计报告_第3页
疾病诊断小型专家系统人工智能课程设计报告_第4页
疾病诊断小型专家系统人工智能课程设计报告_第5页
已阅读5页,还剩17页未读 继续免费阅读

下载本文档

版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领

文档简介

1、疾病诊断小型专家系统 人工智能课程设计报告 智能1001班 傅宝林 0909101217 2013.6.181内容提要 此系统采用专家系统的规则库-推理机技术原理,以医学诊断为背景,旨在作出一个简单的辅助诊断专家系统。系统的框架及界面采用的是java语言,调用xml里保存的知识库和规则库。此小型的专家系统以肺结核、哮喘、食管癌、骨折等疾病的诊断为例,展示了一个小型专家系统是如何构建的。目录1内容提要22目的和意义43系统的主要内容和功能54设计流程及描述65课程设计体会216参考文献22 2目的和意义 (1)加深理解专家系统的结构及开发过程。(2)初步掌握知识获取的基本方法。(3)掌握产生式规

2、则知识表示方法及其编程实现方法。(4)初步掌握知识库的组建方法。3系统的主要内容和功能 系统主要以问答的形势询问病情症状,操作者只需要回答yes或no。当一趟询问完成后,系统会基于以上询问得出的事实推理出最终的诊断结果。 功能见以下截图1、2. 图1 问询界面 图2 诊断结果界面 4设计流程及描述1) 需求分析 本设计需要用高级语言编写框架及调用外部的规则库与知识库。方便起见,用java语言编写框架,用xml文件保存。2) 知识获取与知识表示知识获取通过医学临床专业的同学及医学诊断专业书籍,确保专家系统的专家性。知识的表示采用的是xml语言,把事实与规则一条条保存。3) 知识库的组建 知识库分

3、事实库和规则库组建。疾病诊断因为有的病有交叉的症状,所以逻辑上,从症状到诊断的过程是对一颗二叉树的搜索,当问题回答的是yes时,就进行深度优先搜索,当回答no时,就转到兄弟节点。对于无关的疾病,则回到根节点重新对下一颗子树进行搜索。得到一种疾病的确诊就是result,得到这个叶子节点前遍历过的节点组成了reasons.4) 推理机制选择/编制 采用的是问题引导式推理。在规则库里写的其实不是真正的规则。真正的规则蕴含在问题及前提里。为了不让“专家”问无用的问题,每个问题都是以某个问题的答案为前提的。这样组成了内部的因果关系,所以真正的推理规则只与某一趟提问的最后一个问题的答案得出的事实有关。5)

4、 程序清单package 专家系统_v2;import java.awt.borderlayout;import java.awt.color;import java.awt.dimension;import java.awt.font;import java.awt.event.actionevent;import java.awt.event.actionlistener;import java.util.arraylist;import javax.swing.jbutton;import javax.swing.jframe;import javax.swing.jlabel;impo

5、rt javax.swing.jpanel;import javax.swing.jscrollpane;import javax.swing.jtextarea;import javax.swing.border.lineborder;public class mainframe extends jframe/* * 主界面类 * param args */public static void main(string args) mainframe main = new mainframe();main.myshow();private void myshow() exe = new exe

6、cution();exe.init();this.settitle(exe.expert_name+专家系统);this.setsize(380, 250);this.setdefaultcloseoperation(3);this.setresizable(false);this.setlocationrelativeto(null);this.setlayout(new borderlayout();jpanel jp_center = new jpanel();jp_center.setbackground(color.white);jp_center.setpreferredsize(

7、new dimension(380,250);jp_center.setlayout(null);jl = new jlabel();jl.settext(请回答下列问题:);jl.setfont(new font(font.dialog,font.bold,25);jl.setforeground(color.blue);jl.setbounds(10, 10, 200, 30);jta=new jtextarea();jscrollpane js=new jscrollpane(jta);jta.seteditable(false);jta.setborder(new lineborder

8、(color.black);jta.setlinewrap(true);jta.setfont(new font(font.dialog,font.bold,20);js.setbounds(20, 50, 330, 100);jb1 = new jbutton(yes);jb1.setbounds(100, 170, 60, 30);jb1.addactionlistener(l);jb2 = new jbutton(no);jb2.setbounds(200, 170, 60, 30);jb2.addactionlistener(l);jp_center.add(jl);jp_center

9、.add(js);jp_center.add(jb1);jp_center.add(jb2);this.add(jp_center,borderlayout.center);problem=this.initproblem();this.setvisible(true);private problem initproblem()for(int i=0;blems.size();i+)problem problem = blems.get(i);if(problem.getpremise()=null|problem.getpremise().isistrue()i

10、f(problem.getpremise()!=null)problem.getpremise().setistrue(false);jta.settext(problem.getcontext();blems.remove(problem);return problem;jb1.setenabled(false);jb2.setenabled(false);return null;private execution exe;private jbutton jb1,jb2;private jtextarea jta ;private jlabel jl;private probl

11、em problem;private action l = new action();class action implements actionlistenerpublic void actionperformed(actionevent e) if(yes.equals(e.getactioncommand()if(null!=problem.getanswer_yes()problem.getanswer_yes().setistrue(true);else if(no.equals(e.getactioncommand()system.out.println(aaa);if(null!

12、=problem.getanswer_no()system.out.println(aaa);problem.getanswer_no().setistrue(true);exe.allreasoning();problem=initproblem();if(problem=null)arraylist facts=exe.start();string result=;for(int i=0,n=1;ifacts.size();i+)string des = facts.get(i).getdescribe();if(!null.equals(des)result+=i+1+.+des+n;n

13、+;jl.settext(推理结果如下:);jta.settext(result);jb1.setenabled(false);jb2.setenabled(false);return;package 专家系统_v2;import java.io.file;import java.io.ioexception;import java.io.unsupportedencodingexception;import .urldecoder;import java.util.arraylist;import java.util.hashmap;import javax.swing.joptionpan

14、e;import javax.xml.parsers.documentbuilder;import javax.xml.parsers.documentbuilderfactory;import javax.xml.parsers.parserconfigurationexception;import org.w3c.dom.document;import org.w3c.dom.element;import org.w3c.dom.nodelist;import org.xml.sax.saxexception;public class execution public boolean in

15、it()try this.initxml(this.getpath(); catch (parserconfigurationexception e) e.printstacktrace(); catch (saxexception e) this.exit(e.getmessage(); catch (ioexception e) e.printstacktrace(); catch (nullpointerexception e)this.exit(找不到相应的xml文件,请检查xml文件名是否符合规范);return false;private void initxml(string f

16、ile) throws parserconfigurationexception, saxexception, ioexceptiondocumentbuilderfactory dbf = documentbuilderfactory.newinstance();documentbuilder builder = dbf.newdocumentbuilder();document doc=null;trydoc = builder.parse(new file(file);catch(exception e)this.exit(e.getmessage();element root = do

17、c.getdocumentelement(); / 获取根元素expert_name=root.getattribute(name); /取得名字/获取事实factnodelist allfacts = root.getelementsbytagname(facts);nodelist onefacts = (element)allfacts.item(0).getelementsbytagname(fact);for(int i=0;ionefacts.getlength();i+)element onefact = (element)onefacts.item(i);fact fact =

18、 new fact();tryfact.setname(onefact.getelementsbytagname(name).item(0).getfirstchild().getnodevalue();fact.setdescribe(onefact.getelementsbytagname(describe).item(0).getfirstchild().getnodevalue();catch(nullpointerexception e)this.exit(fact中缺少相应标签);facts.put(fact.getname(), fact);/获取推理reasoningnodel

19、ist allreasonings = root.getelementsbytagname(reasonings);nodelist onereasonings = (element)allreasonings.item(0).getelementsbytagname(reasoning);for(int i=0;ionereasonings.getlength();i+)element onereasoning = (element)onereasonings.item(i);reasoning reasoning = new reasoning();nodelist reasons = o

20、nereasoning.getelementsbytagname(reason);if(reasons.getlength()=0)this.exit(reasoning中不可以缺少reason标签);for(int j=0;jreasons.getlength();j+)string name=reasons.item(j).getfirstchild().getnodevalue();if(facts.get(name)!=null)reasoning.getreason().add(facts.get(name);elsethis.exit(reason标签内容不正确,没有对应事实);n

21、odelist results = onereasoning.getelementsbytagname(result);if(results.getlength()=0)this.exit(reasoning中不可以缺少result标签);for(int j=0;jresults.getlength();j+)string name=results.item(j).getfirstchild().getnodevalue();if(facts.get(name)!=null)reasoning.getresult().add(facts.get(name);elsethis.exit(resu

22、lt标签内容不正确,没有对应事实);reasonings.add(reasoning);/获取问题problemnodelist allproblems = root.getelementsbytagname(problems);nodelist oneproblems = (element)allproblems.item(0).getelementsbytagname(problem);for(int i=0;ioneproblems.getlength();i+)element oneproblem = (element)oneproblems.item(i);problem probl

23、em = new problem();problem.setcontext(oneproblem.getelementsbytagname(context).item(0).getfirstchild().getnodevalue();tryproblem.setpremise(facts.get(oneproblem.getelementsbytagname(premise).item(0).getfirstchild().getnodevalue();catch(exception e)tryproblem.setanswer_yes(facts.get(oneproblem.getele

24、mentsbytagname(answer_yes).item(0).getfirstchild().getnodevalue();catch(exception e)tryproblem.setanswer_no(facts.get(oneproblem.getelementsbytagname(answer_no).item(0).getfirstchild().getnodevalue();catch(exception e)problems.add(problem);public void allreasoning()boolean proceed=true;while(proceed

25、)proceed=false;for(reasoning reasoning:reasonings)reasoning.startreasoning();if(reasoning.startreasoning()proceed=true;public arraylist start()/this.allreasoning();arraylist reallyfacts = new arraylist();for(fact fact:facts.values()if(fact.isistrue()reallyfacts.add(fact);return reallyfacts;private v

26、oid exit(string passage)joptionpane.showmessagedialog(null, passage);system.exit(0);/查找当前路径private string getpath()string mypath=null;try mypath=urldecoder.decode(execution.class.getprotectiondomain().getcodesource().getlocation().getfile(), utf-8); catch (unsupportedencodingexception e) e.printstac

27、ktrace();string path=mypath.substring(1,mypath.lastindexof(/)+1)+xml/配置文件.xml;return path;public hashmap facts = new hashmap ();public arraylist reasonings = new arraylist();public arraylist problems = new arraylist();public string expert_name;package 专家系统_v2;/* * 存放事实的类 * author liguanyi * */public

28、 class fact private string name; /名字private boolean istrue=false; /是否成立private string describe; /事实相应表述public string getname() return name;public void setname(string name) = name;public boolean isistrue() return istrue;public void setistrue(boolean istrue) this.istrue = istrue;public strin

29、g getdescribe() return describe;public void setdescribe(string describe) this.describe = describe;package 专家系统_v2;import java.util.arraylist;/表示推理public class reasoning private arraylist reason = new arraylist(); /前提事实private arraylist result = new arraylist(); /结果事实public arraylist getreason() retu

30、rn reason;public void setreason(arraylist reason) this.reason = reason;public arraylist getresult() return result;public void setresult(arraylist result) this.result = result;public boolean startreasoning()if(reason.size()=0)return false;for(fact fact:reason)if(!fact.isistrue()return false;for(fact

31、fact:reason)fact.setistrue(false);for(fact fact:result)fact.setistrue(true);return true;package 专家系统_v2;public class problem private fact premise;private string context;private fact answer_yes; /结果private fact answer_no; /结果public fact getpremise() return premise;public void setpremise(fact premise)

32、 this.premise = premise;public string getcontext() return context;public void setcontext(string context) this.context = context;public fact getanswer_yes() return answer_yes;public void setanswer_yes(fact answeryes) answer_yes = answeryes;public fact getanswer_no() return answer_no;public void setanswer_no(fact answerno) answer_no = answerno;以下是xml文件(保存事实库和规则库)中部分内容fact1咳嗽fact2胸痛fact3盗汗 fact4食欲不振 fact5消瘦 fa

温馨提示

  • 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
  • 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
  • 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
  • 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
  • 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
  • 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
  • 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。

评论

0/150

提交评论