gpt4 book ai didi

python - 我可以使用 BigramCollocationFinder (nltk) 来遵守文档边界吗?

转载 作者:太空宇宙 更新时间:2023-11-03 18:48:00 25 4
gpt4 key购买 nike

我正在使用 NLTK 对许多不同的文档进行一些分析。这些文档的内容意味着它们都倾向于以相同的标记结束和开始。

我将文档标记为列表列表,然后使用 BigramCollocationFinder.from_documents 创建查找器。当我按原始频率对 ngram 进行评分时,我注意到最常见的情况是结束字符/开始字符。这表明它将所有文档运行到一个文档中,并在整个文档中查找我不想要的 ngram。

代码示例:

line_tokenizer = nltk.RegexpTokenizer('\{|\}|[^,"}]+')
seqs = ["{B,C}", "{B,A}", "{A,B,C}"]
documents = [line_tokenizer.tokenize(s) for s in seqs]
finder = BigramCollocationFinder.from_documents(documents)
bigram_measures = nltk.collocations.BigramAssocMeasures()
print(finder.score_ngrams(bigram_measures.raw_freq))

这会产生以下输出:

[(('B', 'C'), 0.15384615384615385), 
(('C', '}'), 0.15384615384615385),
(('{', 'B'), 0.15384615384615385),
(('}', '{'), 0.15384615384615385),
(('A', 'B'), 0.07692307692307693),
(('A', '}'), 0.07692307692307693),
(('B', 'A'), 0.07692307692307693),
(('{', 'A'), 0.07692307692307693)]

ngram }{ 出现在列表中,但它不应该出现在列表中,因为 }{ 永远不会彼此相邻出现。

是否有其他方法可以解决此问题以避免 }{ 出现在列表中?

最佳答案

我相信您想要保留像 {AC} 这样的二元组,因为有时知道某些单词总是出现在句子的末尾或开头是件好事。所以黑客:

bigram_measure 中删除 }{ 二元组,然后使用 1-prob('}{') 重新计算其他二元组的概率.

import nltk
line_tokenizer = nltk.RegexpTokenizer('\{|\}|[^,"}]+')
seqs = ["{B,C}", "{B,A}", "{A,B,C}"]
documents = [line_tokenizer.tokenize(s) for s in seqs]
finder = nltk.collocations.BigramCollocationFinder.from_documents(documents)
bigram_measures = nltk.collocations.BigramAssocMeasures()
# Put bigram measures into a dict for easy access
x = dict(finder.score_ngrams(bigram_measures.raw_freq))

# Re-adjust such that the score of
# each bigram is divided by 1-prob('}{')
newmax = 1- x[('}','{')]

# Remove "}{" from bigrams.
del x[('}','{')]

# Recalcuate prob for each bigram with newmax
y =[(i,j/float(newmax)) for i,j in x.iteritems()]
print y

[(('B', 'C'), 0.18181818181818182), (('C', '}'), 0.18181818181818182), (('B', 'A'), 0.09090909090909091), (('{', 'A'), 0.09090909090909091), (('{', 'B'), 0.18181818181818182), (('A', 'B'), 0.09090909090909091), (('A', '}'), 0.09090909090909091)]

关于python - 我可以使用 BigramCollocationFinder (nltk) 来遵守文档边界吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19049270/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com