我有一行文本要转换为 N3 格式,因此我最终可以将它们更改为 RDF。文本文件的每一行都有这样的条目:
09827177 18 n 03贵族0蓝色_blood 0 013 @ 09646208 N 0000 #M 08404938 N 0000 + 01594891 A 0306 A + 01594891 A 0102〜09860027 N 004440019898989898989898989898989898922年〜198989898989898989899224000000000000000号〜19898989898989898992922.98989898000000000000号〜198989898989899224.98989989899899922号n 0000 ~ 10493649 n 0000 ~ 10525325 n 0000 ~ 10526235 n 0000 | 贵族的一员
我试图从上面的语句中制作三元组,所以它们看起来如下表所示。
Subject Predicate Object
(synset_offset)
09807754 lex_filenum 18
09807754 ss_type n
09807754 lexical_entry aristocrat
09807754 lexical_entry blue_blood
09807754 lexical_entry patrician
09807754 has_pointer 09623038
09623038 ss_type n
09623038 source_target 0000
09807754 description a member of aristocracy
我已经能够使用以下方法从文本的每一行中读取大部分变量:
f = open("wordnetSample.txt", "r")
for line in f:
L = line.split()
L2 = line.split('|')
synset_offset = L[0]
lex_filenum = L[1]
ss_type = L[2]
word = (L[4:4 + 2 * int(L[3]):2])
gloss = (L2[1].split('\n')[0])
我遇到的问题是我不知道要使用什么命名空间或类似的东西。我对这种格式格式和一般的 python 都不熟悉。我一直在研究,觉得应该是这样的:
'''<http://example.org/#'''+synset_offset+'''> <http://xmlns.com/foaf/0.1/lex_filenum> '''+lex_filenum+''' .
我还被告知海龟符号可能是一个更好的选择,但我就是无法理解它。