本文整理汇总了Python中document.Document.setFeatures方法的典型用法代码示例。如果您正苦于以下问题:Python Document.setFeatures方法的具体用法?Python Document.setFeatures怎么用?Python Document.setFeatures使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类document.Document
的用法示例。
在下文中一共展示了Document.setFeatures方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: __init__
# 需要导入模块: from document import Document [as 别名]
# 或者: from document.Document import setFeatures [as 别名]
class Reader:
"""Returns object to read files stored on specified path"""
def __init__(self, path):
self.__document = Document()
self.__path = path
self.__parser = Parser()
def read(self, textFile, mentionsFile):
"""Read files containing the text and mentions, returning an object of them having 'text' and 'cluster list' as attributes"""
ls = []
text = ""
mentions = ""
tuples = []
mentionClustersList = []
clusterCount = 0
mentionToClusterMap = {}
with open(self.__path + textFile) as f_text:
text = f_text.read()
temp = text.splitlines()
if len(temp[-1]) == 0:
temp.pop()
text = " ".join(temp)
self.__parser.process(text)
dependenciesList = self.__parser.getDependencies()
print "Index Map to be used when creating mentions file:"
for i, j in enumerate(text):
print i, j
raw_input("\nPlease enter the indices of the mentions in the mentions file: <Press enter to continue process>")
with open(self.__path + mentionsFile) as f_mention:
mentions = f_mention.read()
ls = mentions.splitlines()
if len(ls[-1]) == 0:
ls.pop()
for line in ls:
line = line.split()
new_tuple = int(line[0]), int(line[1])
tuples.append(new_tuple)
for element in tuples:
left = element[0]
right = element[1]
mentions = text[left:right]
mentionClustersList.append(Cluster(mentions, element))
mentionToClusterMap[element] = mentionClustersList[-1]
clusterCount = clusterCount + 1
n = NER()
print"\nThis may take some time. Please wait...\n"
n.process(self.__path + textFile)
NERMap = n.getNERRelations()
NESet = set(NERMap.keys())
feature = Features(dependenciesList)
self.__document.setText(text)
self.__document.setTextPath(self.__path + textFile)
self.__document.setMentionClustersList(mentionClustersList)
self.__document.setFeatures(feature.getAppositiveRelations(), feature.getCopulativeRelations())
self.__document.setMentionToClusterMap(mentionToClusterMap)
self.__document.setParserObject(self.__parser)
self.__document.setNERMap(NERMap)
self.__document.setNESet(NESet)
return self.__document