gpt4 book ai didi

python - 使用 Python 中的 NLTK 条件频率分布计算语料库中的单词总数(新手)

转载 作者:行者123 更新时间:2023-12-01 06:22:31 25 4
gpt4 key购买 nike

我需要使用 NLTK 包计算某些语料库中的单词数(单词出现次数)。

这是我的语料库:

corpus = PlaintextCorpusReader('C:\DeCorpus', '.*')

以下是我尝试获取每个文档的总字数的方法:

cfd_appr = nltk.ConditionalFreqDist(
(textname, num_appr)
for textname in corpus.fileids()
for num_appr in [len(w) for w in corpus.raw(fileids=textname).replace("\r", " ").replace("\n", " ").split()])

(我手动将字符串拆分为单词,不知何故它比使用 corpus.words() 效果更好,但问题仍然相同,所以它无关紧要)。一般来说,这会完成相同(错误)的工作:

cfd_appr = nltk.ConditionalFreqDist(
(textname, num_appr)
for textname in corpus.fileids()
for num_appr in [len(w) for w in corpus.words(fileids=textname)])

这是我输入 cfd.appr.tabulate() 得到的结果:

                        1   2   3   4   5   6   7   8   9  10  11  12  13  14  15  16  17  18  19  20  21  
2022.12.06_Bild 2.txt 3 36 109 40 47 43 29 29 33 23 24 12 8 6 4 2 2 0 0 0 0
2022.12.06_Bild 3.txt 2 42 129 59 57 46 46 35 22 24 17 21 13 5 6 6 2 2 2 0 0
2022.12.06_Bild 4.txt 3 36 106 48 43 32 38 30 19 39 15 14 16 6 5 8 3 2 3 1 0
2022.12.06_Bild 5.txt 1 55 162 83 68 72 46 24 34 38 27 16 12 8 8 5 9 3 1 5 1
2022.12.06_Bild 6.txt 7 69 216 76 113 83 73 52 49 42 37 20 19 9 7 5 3 6 3 0 1
2022.12.06_Bild 8.txt 0 2 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0

但这些是不同长度的单词数。我需要的只是这个(只有一种类型的项目(文本)应该按字数计算):

2022.12.06_Bild 2.txt    451.0
2022.12.06_Bild 3.txt 538.0
2022.12.06_Bild 4.txt 471.0
2022.12.06_Bild 5.txt 679.0
2022.12.06_Bild 6.txt 890.0
2022.12.06_Bild 8.txt 3.0
dtype: float64

即不同长度的所有单词的总和(或使用 DataFrame(cfd_appr).transpose().sum(axis=1) 组成的列的总和。(顺便说一句,如果有某种方法为此列设置名称,这也是一个解决方案,但 .rename({None: 'W. appear.'}, axis='columns') 是不起作用,并且解决方案通常不够清晰。

所以,我需要的是:

                             1    
2022.12.06_Bild 2.txt 451.0
2022.12.06_Bild 3.txt 538.0
2022.12.06_Bild 4.txt 471.0
2022.12.06_Bild 5.txt 679.0
2022.12.06_Bild 6.txt 890.0
2022.12.06_Bild 8.txt 3.0

非常感谢您的帮助!

最佳答案

让我们首先尝试使用臭名昭著的 BookCorpus 复制您的表。 ,目录结构:

/books_in_sentences
books_large_p1.txt
books_large_p2.txt

在代码中:

from nltk.corpus import PlaintextCorpusReader
from nltk import ConditionalFreqDist
from nltk import word_tokenize

from collections import Counter

import pandas as pd

corpus = PlaintextCorpusReader('books_in_sentences/', '.*')

cfd_appr = ConditionalFreqDist(
(textname, num_appr)
for textname in corpus.fileids()
for num_appr in [len(w) for w in
word_tokenize(corpus.raw(fileids=textname))])

然后是 Pandas 咀嚼部分:

# Idiom to convert a FreqDist / ConditionalFreqDist into pd.DataFrame.
df = pd.DataFrame([dict(Counter(freqdist))
for freqdist in cfd_appr.values()],
index=cfd_appr.keys())
# Fill in the not-applicable with zeros.
df = df.fillna(0).astype(int)

# If necessary, sort order of columns and add accordingly.
df = df.sort_values(list(df))

# Sum all columns per row -> pd.Series
counts_per_row = df.sum(axis=1)

最后,访问索引系列,例如:

print('books_large_p1.txt', counts_per_row['books_large_p1.txt'])
<小时/>

或者

我鼓励使用上述解决方案,以便您可以使用 DataFrame 进一步操作数字,但如果您真正需要的只是每行的列数,那么请尝试以下操作。

如果需要避免 pandas 并直接使用 CFD 中的值,那么您必须使用 ConditionalFreqDist.values() 并仔细迭代它。

如果我们这样做:

>>> list(cfd_appr.values())
[FreqDist({3: 6, 6: 5, 1: 5, 9: 4, 4: 4, 2: 3, 8: 2, 10: 2, 7: 1, 14: 1}),
FreqDist({4: 10, 3: 9, 1: 5, 7: 4, 2: 4, 5: 3, 6: 3, 11: 1, 9: 1})]

我们将看到一个 FreqDist 列表,每个列表都对应于键(在本例中为文件名):

>>> list(cfd_appr.keys())
['books_large_p1.txt', 'books_large_p2.txt']

因为我们知道FreqDist is a subclass of collections.Counter object ,如果我们将每个 Counter 对象的值相加,我们将得到:

>>> [sum(fd.values()) for fd in cfd_appr.values()]
[33, 40]

其输出与上面的df.sum(axis=1)相同的值。

所以把它们放在一起:

>>> dict(zip(cfd_appr.keys(), [sum(fd.values()) for fd in cfd_appr.values()]))
{'books_large_p1.txt': 33, 'books_large_p2.txt': 40}

关于python - 使用 Python 中的 NLTK 条件频率分布计算语料库中的单词总数(新手),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60295233/

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