在网页中显示 OWL 文件
目前,我正在使用 Protege 软件开发与疾病相关的本体。当我保存文件时,它保存在以 XML 形式显示的 OWL 文件中。现在,我想知道如何调用我的网站中的OWL文件。我有兴趣做一个网站,允许用户提出与疾病相关的问题,答案来自我创建的本体。有没有人可以启发我关于这个问题?
Currently, I'm developing an ontology related to diseases using the software Protege. When I save the file, it's saved in OWL file displaying in XML. Now, I would like to know the method to call the OWL file in my website. I am interested to do a website which allows user to ask questions related to diseases and the answer comes from the ontology that I've created. Is there anybody who can enlighten me regarding this matter?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我正在开发类似的东西 - 现在我正在考虑使用 java 和 OWLAPI - (http://owlapi.sourceforge.net/index.html)。
我还将研究一个 PHP 工具 -- (http://arc.semsol.org/)。
您始终可以在 freebase.com 上发布本体,并使用他们的 SPARQL 端点。
开始测试 SPARQL 的一个好地方是 http://dbpedia.org/snorql/
I am developing something similar -- right now I am looking at using java and OWLAPI -- (http://owlapi.sourceforge.net/index.html).
There is a PHP tool that I will look into as well -- (http://arc.semsol.org/).
You could always publish your ontology on freebase.com, and use their SPARQL endpoint.
A good place to get started on testing SPARQL out is http://dbpedia.org/snorql/
本质上,您正在寻找一种可以让您的用户查询您的本体的工具。 SPARQL 是一种 RDF 查询语言,可以实现您想要的目标,但我不能推荐任何可用的 SPARQL 查询构建器,因为我没有使用它们的经验。
Essentially you're looking for a tool that will let your users query your ontology. SPARQL is an RDF query language that can achieve what you desire but I cannot recommend any of the available SPARQL query builders as I have no experience with them.