语义网中的个体和属性
我目前正在从事一个语义网络电子学习项目。 我已经制作了本体和类。 但是,在填充 RDF 文件时,我创建一个个体(例如课程)并将其放入 RDF 中。 之后,如果我需要通过对象属性将另一个个体与此个体相关联(例如,学生-> StudyMemberOf-> 课程),我会将课程 Uri 放入学生个体中。 这意味着(课程个人 Uri:crs000021):
<Ontologyowl:Student rdf:about="ehsanm">
<Ontologyowl:studyMemberOf>
<Ontologyowl:Project rdf:about="crs000021"/>
</Ontologyowl:studyMemberOf>
我这里有 2 个问题:
将每个类别的个体放入单独的 RDF 文件中是否正确?
当关联这两个人时,我是否在学生档案中创建了另一个“课程(crs000021)”节点? 这种方法(制作不同的rdfs)不正确吗?
感谢您的关注
I'm currently working on a semantic web e-learning project. I've made an ontology and classes. However, when populating RDF files, I create an individual (for example a course) and place it in a RDF. Afterwards if I it is needed to relate another individual to this one by an object property (e.g. student-> studyMemberOf-> course), I put course Uri in student individual. This means (course individual Uri: crs000021):
<Ontologyowl:Student rdf:about="ehsanm">
<Ontologyowl:studyMemberOf>
<Ontologyowl:Project rdf:about="crs000021"/>
</Ontologyowl:studyMemberOf>
I have 2 Questions here:
Is it right to put individuals of each class, in a separate RDF file?
When relating these two individuals, am I making another node of 'course (crs000021)' in student file? is this method (making different rdfs) incorrect?
Thank you for your attention
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
没有关于如何以及在何处编写 RDF 语句的规范。 您可以将所有语句写入同一个文件中,也可以将每个语句写入一个文件中。
此外,RDF 存储应该忽略每个重复的语句,因此
相同
与“注意:我不确定 rdf:about=”ehsanm” 是一个有效的 URI 。 我想你应该在这里使用 rdf:ID
There is no specification about how and where you should write your RDF statement. You can write all the statements in the same file or each statement in one file.
Moreover a RDF store should ignore every duplicated statements, so
is the same as
Note: I'm not sure rdf:about="ehsanm" is a valid URI. I guess you should use rdf:ID here