以文本方式查看主题 - W3CHINA.ORG讨论区 - 语义网·描述逻辑·本体·RDF·OWL (http://bbs.xml.org.cn/index.asp) -- 『 Semantic Web(语义Web)/描述逻辑/本体 』 (http://bbs.xml.org.cn/list.asp?boardid=2) ---- 关于protege使用的问题 (http://bbs.xml.org.cn/dispbbs.asp?boardid=2&rootid=&id=70114) |
-- 作者:fengweihuan -- 发布时间:12/4/2008 11:23:00 PM -- 关于protege使用的问题 在OWLVIZ查看全图的时候,不知道为什么各项之间并没有关系箭头相连,就是将所有的元素都摆在那里,没有任何箭头,不知道为什么 |
-- 作者:Patty -- 发布时间:12/17/2008 4:36:00 PM -- 左上角有两个tab,一个是Asserted Model ,一个是Inferred Model 选择第一个看看,不晓得是不是这个原因 |
-- 作者:rhine小妖精 -- 发布时间:1/18/2009 3:15:00 PM -- 同问同问啊,我也被这个问题困扰了好久了.... ![]() |
-- 作者:admin -- 发布时间:1/20/2009 12:57:00 PM --
同意 |
-- 作者:淡如菊 -- 发布时间:4/8/2009 10:45:00 AM -- 我也遇到同样的问题,生成的图就是没箭头,我改了,可还是不行,请大家帮忙啊,同学你知道了吗? |
-- 作者:淡如菊 -- 发布时间:4/9/2009 9:56:00 AM -- 怎么没有回答啊?请各位高手指点一下,谢谢! |
-- 作者:淡如菊 -- 发布时间:4/9/2009 9:57:00 AM -- (左上角有两个tab,一个是Asserted Model ,一个是Inferred Model 选择第一个看看,不晓得是不是这个原因 ) 生成图没有箭头,可是我改 了一下还是不行,麻烦您帮忙解决一下啊?困扰好长时间了。谢谢! |
-- 作者:admin -- 发布时间:4/9/2009 10:09:00 AM -- Asserted model 和 Inferred model上面有一排按钮,点击其中第四个(就是一个蓝色方框,里面有四个实心圆的)图标。如果还不行的话。请贴出你的OWL文件。 |
-- 作者:Humphrey -- 发布时间:4/9/2009 10:47:00 AM -- 又是一个有关Protege关系图的问题,可惜楼主未提供自己使用的本体片段,问题的缘由还有待进一步研究. |
-- 作者:淡如菊 -- 发布时间:4/9/2009 4:23:00 PM -- ![]() ![]() |
-- 作者:淡如菊 -- 发布时间:4/9/2009 4:24:00 PM -- 图片就是 上边这样的 麻烦大家给看看 谢谢哦,尽快啊!一直解决不了 |
-- 作者:tonny_c -- 发布时间:4/9/2009 9:45:00 PM -- 我也是这个问题,有没有高手知道怎么解决啊? |
-- 作者:Humphrey -- 发布时间:4/10/2009 7:43:00 AM -- 您能否提供该本体文件,很可能问题出在本体文件的关系设置上。因为图中实质上已显示箭头,但是没有明确指向。 |
-- 作者:淡如菊 -- 发布时间:4/10/2009 9:36:00 AM -- 我刚开始学习,用的都是现有的典型例子,不是自己做的,全都是这样啊 |
-- 作者:淡如菊 -- 发布时间:4/10/2009 9:41:00 AM -- 我把文件传上去了 怎么看不到啊 |
-- 作者:shoutfish -- 发布时间:4/10/2009 2:47:00 PM -- 直接贴代码吧 |
-- 作者:淡如菊 -- 发布时间:4/10/2009 10:30:00 PM -- <?xml version="1.0"?> <rdf:RDF xmlns:xsp="http://www.owl-ontologies.com/2005/08/07/xsp.owl#" xmlns:swrlb="http://www.w3.org/2003/11/swrlb#" xmlns:swrl="http://www.w3.org/2003/11/swrl#" xmlns:protege="http://protege.stanford.edu/plugins/owl/protege#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:xsd="http://www.w3.org/2001/XMLSchema#" xmlns="http://www.owl-ontologies.com/Ontology1239089896.owl#" xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#" xmlns:owl="http://www.w3.org/2002/07/owl#" xml:base="http://www.owl-ontologies.com/Ontology1239089896.owl"> <owl:Ontology rdf:about=""/> <owl:Class rdf:ID="Branch"> <rdfs:subClassOf> <owl:Class rdf:ID="Plant"/> </rdfs:subClassOf> <rdfs:subClassOf> <owl:Restriction> <owl:allValuesFrom> <owl:Class rdf:ID="Tree"/> </owl:allValuesFrom> <owl:onProperty> <owl:ObjectProperty rdf:ID="is_part_of"/> </owl:onProperty> </owl:Restriction> </rdfs:subClassOf> </owl:Class> <owl:Class rdf:about="#Plant"> <owl:disjointWith> <owl:Class rdf:ID="Animal"/> </owl:disjointWith> </owl:Class> <owl:Class rdf:about="#Animal"> <owl:disjointWith rdf:resource="#Plant"/> </owl:Class> <owl:Class rdf:about="#Tree"> <rdfs:subClassOf rdf:resource="#Plant"/> </owl:Class> <owl:Class rdf:ID="Carnivore"> <owl:equivalentClass> <owl:Class> <owl:intersectionOf rdf:parseType="Collection"> <owl:Class rdf:about="#Animal"/> <owl:Restriction> <owl:allValuesFrom rdf:resource="#Animal"/> <owl:onProperty> <owl:ObjectProperty rdf:ID="maineat"/> </owl:onProperty> </owl:Restriction> </owl:intersectionOf> </owl:Class> </owl:equivalentClass> </owl:Class> <owl:Class rdf:ID="Giraffe"> <rdfs:subClassOf> <owl:Class rdf:ID="Herbivore"/> </rdfs:subClassOf> <rdfs:subClassOf> <owl:Restriction> <owl:onProperty> <owl:ObjectProperty rdf:ID="eat"/> </owl:onProperty> <owl:allValuesFrom> <owl:Class rdf:ID="Leaf"/> </owl:allValuesFrom> </owl:Restriction> </rdfs:subClassOf> </owl:Class> <owl:Class rdf:about="#Leaf"> <rdfs:subClassOf rdf:resource="#Plant"/> <rdfs:subClassOf> <owl:Restriction> <owl:onProperty> <owl:ObjectProperty rdf:about="#is_part_of"/> </owl:onProperty> <owl:allValuesFrom rdf:resource="#Branch"/> </owl:Restriction> </rdfs:subClassOf> </owl:Class> <owl:Class rdf:ID="Lion"> <rdfs:subClassOf rdf:resource="#Animal"/> <rdfs:subClassOf> <owl:Restriction> <owl:allValuesFrom> <owl:Class rdf:about="#Herbivore"/> </owl:allValuesFrom> <owl:onProperty> <owl:ObjectProperty rdf:about="#eat"/> </owl:onProperty> </owl:Restriction> </rdfs:subClassOf> </owl:Class> <owl:Class rdf:about="#Herbivore"> <rdfs:subClassOf rdf:resource="#Animal"/> <rdfs:subClassOf> <owl:Restriction> <owl:allValuesFrom rdf:resource="#Plant"/> <owl:onProperty> <owl:ObjectProperty rdf:about="#eat"/> </owl:onProperty> </owl:Restriction> </rdfs:subClassOf> </owl:Class> <owl:ObjectProperty rdf:about="#is_part_of"> <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#TransitiveProperty"/> </owl:ObjectProperty> <owl:ObjectProperty rdf:ID="inverse_of_maineat"> <rdfs:subPropertyOf> <owl:ObjectProperty rdf:ID="eated"/> </rdfs:subPropertyOf> </owl:ObjectProperty> <owl:ObjectProperty rdf:about="#eat"> <owl:inverseOf> <owl:ObjectProperty rdf:about="#eated"/> </owl:inverseOf> <rdfs:domain rdf:resource="#Animal"/> </owl:ObjectProperty> <owl:ObjectProperty rdf:about="#maineat"> <rdfs:subPropertyOf rdf:resource="#eat"/> </owl:ObjectProperty> <owl:ObjectProperty rdf:ID="inverse_of_eat_14"> <rdfs:subPropertyOf> <owl:ObjectProperty rdf:about="#eated"/> </rdfs:subPropertyOf> </owl:ObjectProperty> <owl:ObjectProperty rdf:about="#eated"> <owl:inverseOf rdf:resource="#eat"/> </owl:ObjectProperty> </rdf:RDF> <!-- Created with Protege (with OWL Plugin 3.4, Build 533) http://protege.stanford.edu --> |
-- 作者:shoutfish -- 发布时间:4/12/2009 6:45:00 PM -- 我在3.3.1版本上测试没有问题。我用的是graphviz 2.21。 文档本身应该没有问题。建议重装一遍试试。 |
-- 作者:xlheng -- 发布时间:4/12/2009 7:51:00 PM -- 我也想知道这个问题的答案。 |
-- 作者:Humphrey -- 发布时间:4/13/2009 8:22:00 AM -- 此外您也可以用Protege自带的TGViztab试试,想必该系统内置插件应该不会有什么问题. |
-- 作者:shoutfish -- 发布时间:4/13/2009 9:44:00 AM -- 3.4beta版测试通过,继续建议重装protege和graphviz。 TGViztab我刚才试了一下,发现它还支持中文;) 除了图像不如树形结构那么清晰好看,网络状的结构也有它本身的优点。 |
-- 作者:fsfhappy -- 发布时间:3/5/2010 4:19:00 PM -- 我也遇到了这个问题,大家赶快群策群力解决下 |
-- 作者:yahua8023 -- 发布时间:3/29/2010 10:26:00 AM -- 可能是版本的问题,用protege3..1的话,就要用graphviz 2.12 用protege3.4的话,就要用graphviz 2.21 |
-- 作者:PaddyQi -- 发布时间:9/23/2010 8:28:00 PM -- 俺也碰到这个问题呢,有没有哪位高手能解答下吗?急。。。。 |
W 3 C h i n a ( since 2003 ) 旗 下 站 点 苏ICP备05006046号《全国人大常委会关于维护互联网安全的决定》《计算机信息网络国际联网安全保护管理办法》 |
171.875ms |