【发布时间】:2015-10-08 23:08:37
【问题描述】:
我有两份文件。 Doc1 格式如下:
TOPIC: 0 5892.0
site 0.0371690427699
Internet 0.0261371350984
online 0.0229124236253
web 0.0218940936864
say 0.0159538357094
TOPIC: 1 12366.0
web 0.150331554262
site 0.0517548115801
say 0.0451237263464
Internet 0.0153647096879
online 0.0135856380398
...依此类推,直到主题 99 以相同的模式。
而Doc2的格式是:
0 0.566667 0 0.0333333 0 0 0 0.133333 ..........
等等...每个主题的每个值总共有 100 个值。
现在,我要找到每个单词的加权平均概率,即:
P(w) = alpha.P(w1)+ alpha.P(w2)+...... +alpha.P(wn)
where alpha = value in the nth position corresponding to the nth topic.
也就是说对于“说”这个词,概率应该是
P(say) = 0*0.0159 + 0.5666*0.045+.......
同样,对于每个单词,我都必须计算概率。
For multiplication, if the word is taken from topic 0, then the 0th value from the doc2 must be considered and so on.
我只使用以下代码对单词的出现次数进行了计数,但从未计算过它们的值。所以,我很困惑。
with open(doc2, "r") as f:
with open(doc3, "w") as f1:
words = " ".join(line.strip() for line in f)
d = defaultdict(int)
for word in words.split():
d[word] += 1
for key, value in d.iteritems() :
f1.write(key+ ' ' + str(value) + ' ')
print '\n'
我的输出应该是这样的:
say = "prob of this word calculated by above formula"
site = "
internet = "
等等。
我做错了什么?
【问题讨论】:
标签: python linux probability