本文整理汇总了Python中dictionary.Dictionary.getIDF方法的典型用法代码示例。如果您正苦于以下问题:Python Dictionary.getIDF方法的具体用法?Python Dictionary.getIDF怎么用?Python Dictionary.getIDF使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类dictionary.Dictionary
的用法示例。
在下文中一共展示了Dictionary.getIDF方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: cluster
# 需要导入模块: from dictionary import Dictionary [as 别名]
# 或者: from dictionary.Dictionary import getIDF [as 别名]
def cluster(p_def_file, p_clusters_file, nbCLusters):
dico = Dictionary()
#Building the dictionary
def_file = open(p_def_file,'r',encoding='latin-1')
for l in def_file:
if l != "\n":
splitted = l.split('; ')
word = splitted[0]
dText = ' '.join(splitted[1:])
tmpDef = Definition(word,dText)
dico.insert(tmpDef)
def_file.close()
#compute
for d in dico.getDefs().values():
d.computeTFIDFV(dico.getIDF())
clusters = skmean.skmean(dico.getAllTFIDFV(),nbCLusters)
f = open(p_clusters_file,'w')
for i in range(len(clusters)):
f.write(str(i))
for w in clusters[i]:
f.write(';'+w)
f.write(',\n')
f.close()