在不知道python中的单词的情况下,计算一个单词在数组的数组中出现的次数



我是一个python编程的新手,希望你们中有人能帮助我。

我必须以这种形式打印语料库的前十个字节:

((token),(POS_tag),(token),(POS_tag))

其中每个令牌的出现次数必须大于2。

所以我已经做了一个pos标记令牌列表,并将它们与bigrams()配对。

我如何检查每个单词(对应于每对标记)的出现次数是否>2?

由于种种原因,你的问题很模糊。首先,标题真的可以写得更好。你没有很好地解释你想做什么。你说的"前十个字母"是指文本中的第一个字母,还是十个最常见的字母?我假设是后者,但如果不是,只需删除排序并将文本限制为前11个单词。

from nltk.util import bigrams
from nltk import tokenize, pos_tag
from collections import defaultdict
counts = defaultdict(int)
counts_pos = defaultdict(int)
with open('twocities.txt') as f:
    txt = f.read().lower()
    txt = tokenize.word_tokenize(txt)
    # Generate the lexical bigrams
    bg = bigrams(txt)
    # Do part-of-speech tagging and generate 
    # lexical+pos bigrams
    pos = pos_tag(txt)
    bg_pos = bigrams(pos)
    # Count the number of occurences of each unique bigram
    for bigram in bg:
        counts[bigram] += 1
    for bigram in bg_pos:
        counts_pos[bigram] += 1
# Make a list of bigrams sorted on number of occurrences
sortedbigrams = sorted(counts, key = lambda x: counts[x], reverse=True)
sortedbigrams_pos = sorted(counts_pos, key = lambda x: counts_pos[x],
                           reverse=True)
# Remove bigrams that occur less than the given threshold
print 'Number of bigrams before thresholding: %i, %i' % 
       (len(sortedbigrams), len(sortedbigrams_pos))
min_occurence = 2
sortedbigrams = [x for x in sortedbigrams if counts[x] > min_occurence]
sortedbigrams_pos = [x for x in sortedbigrams_pos if
            counts_pos[x] > min_occurence]
print 'Number of bigrams after thresholding: %i, %in' % 
       (len(sortedbigrams), len(sortedbigrams_pos))
# print results
print 'Top 10 lexical bigrams:'
for i in range(10):
    print sortedbigrams[i], counts[sortedbigrams[i]]
print 'nTop 10 lexical+pos bigrams:'
for i in range(10):
    print sortedbigrams_pos[i], counts_pos[sortedbigrams_pos[i]]

我的nltk安装只适用于Python 2.6,如果我在2.7上安装它,我会使用Counter而不是defaultdict。

在《双城记》的第一页上使用这个脚本,我得到以下输出:

Top 10 lexical bigrams:
(',', 'and') 17
('it', 'was') 12
('of', 'the') 11
('in', 'the') 11
('was', 'the') 11
(',', 'it') 9
('and', 'the') 6
('with', 'a') 6
('on', 'the') 5
(',', 'we') 4
Top 10 lexical+pos bigrams:
((',', ','), ('and', 'CC')) 17
(('it', 'PRP'), ('was', 'VBD')) 12
(('in', 'IN'), ('the', 'DT')) 11
(('was', 'VBD'), ('the', 'DT')) 11
(('of', 'IN'), ('the', 'DT')) 11
((',', ','), ('it', 'PRP')) 9
(('and', 'CC'), ('the', 'DT')) 6
(('with', 'IN'), ('a', 'DT')) 6
(('on', 'IN'), ('the', 'DT')) 5
(('and', 'CC'), ('a', 'DT')) 4

我假定您指的是前十个双引号,我排除了其中一个符号是标点符号的双引号。

import nltk, collections, string
import nltk.book
def bigrams_by_word_freq(tokens, min_freq=3):
    def unique(seq): # http://www.peterbe.com/plog/uniqifiers-benchmark
        seen = set()
        seen_add = seen.add
        return [x for x in seq if x not in seen and not seen_add(x)]
    punct = set(string.punctuation)
    bigrams = unique(nltk.bigrams(tokens))
    pos = dict(nltk.pos_tag(tokens))
    count = collections.Counter(tokens)
    bigrams = filter(lambda (a,b): not punct.intersection({a,b}) and count[a] >= min_freq and count[b] >= min_freq, bigrams)
    return tuple((a,pos[a],b,pos[b]) for a,b in bigrams)

text = """Humpty Dumpty sat on a wall,
Humpty Dumpty had a great fall.
All the king's horses and all the king's men
Couldn't put Humpty together again."""
print bigrams_by_word_freq(nltk.wordpunct_tokenize(text), min_freq=2)
print bigrams_by_word_freq(nltk.book.text6)[:10]
输出:

(('Humpty', 'NNP', 'Dumpty', 'NNP'), ('the', 'DT', 'king', 'NN'))
(('SCENE', 'NNP', '1', 'CD'), ('clop', 'NN', 'clop', 'NN'), ('It', 'PRP', 'is', 'VBZ'), ('is', 'VBZ', 'I', 'PRP'), ('son', 'NN', 'of', 'IN'), ('from', 'IN', 'the', 'DT'), ('the', 'DT', 'castle', 'NN'), ('castle', 'NN', 'of', 'IN'), ('of', 'IN', 'Camelot', 'NNP'), ('King', 'NNP', 'of', 'IN'))

最新更新