阅读具有依赖关系的 Jena OntModel
我对本体论和 Jena 的概念很陌生,所以我不确定我的措辞是否正确。
我需要将一系列连接的 owl 文件(通过命名空间依赖项?)读取到内存中的 Jena 模型(OntModel ?)这样就可以运行推理了。 我该怎么做呢? 文件的顺序重要吗? 我需要调用特定方法来“运行推理引擎”吗?
I'm new to the concept of ontology and Jena, so I'm not sure I'm phrasing this correctly..
I need to read a series of connected owl files (by namespace dependencies?) into an in memory Jena model (OntModel?) so inference can be run. How do I do this? Does the order of the files matter? Do I need to call a specific method to "run the inference engine"?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这就是我所做的。 它似乎可以工作
OwlFile
对象包含本体文件的 URI 及其命名空间。referencedOntologyList
包含引用的OwlFile
的列表ontology
是包含主本体的OwlFile
。This is what I did. It seems to work
The
OwlFile
object contains the URI to the ontology file as well as its namespace.referencedOntologyList
contains a list of referencedOwlFile
sontology
is theOwlFile
containing the main ontology.