当前位置:   article > 正文

基于贝叶斯的简单的英文单词纠错_argmaxcp()

argmaxcp()

原理介绍:

简单的介绍一下它的工作原理. 给定一个单词, 我们的任务是选择和它最相似的拼写正确的单词. (如果这个单词本身拼写就是正确的, 那么最相近的就是它自己啦). 当然, 不可能绝对的找到相近的单词, 比如说给定 lates 这个单词, 它应该别更正为 late 呢 还是 latest 呢? 这些困难指示我们, 需要使用概率论, 而不是基于规则的判断. 我们说, 给定一个词 w, 在所有正确的拼写词中, 我们想要找一个正确的词 c, 使得对于 w 的条件概率最大, 也就是说:

argmaxcP(c|w)
  • 1

按照 贝叶斯理论 上面的式子等价于:

argmaxc P(w|c) P(c) / P(w)
  • 1
  • 2

因为用户可以输错任何词, 因此对于任何 c 来讲, 出现 w 的概率 P(w) 都是一样的, 从而我们在上式中忽略它, 写成:

argmaxc P(w|c) P(c)
  • 1
  • 2

这个式子有三个部分, 从右到左, 分别是:

  1. 1. P(c), 文章中出现一个正确拼写词 c 的概率, 也就是说, 在英语文章中, c 出现的概率有多大呢? 因为这个概率完全由英语这种语言决定, 我们称之为做语言模型. 好比说, 英语中出现 the 的概率 P('the') 就相对高, 而出现 P('zxzxzxzyy') 的概率接近0(假设后者也是一个词的话).
  2. 2. P(w|c), 在用户想键入 c 的情况下敲成 w 的概率. 因为这个是代表用户会以多大的概率把 c 敲错成 w, 因此这个被称为误 差模型.
  3. 3. argmaxc, 用来枚举所有可能的 c 并且选取概率最大的, 因为我们有理由相信, 一个(正确的)单词出现的频率高, 用户又容易把它敲成另一个错误的单词, 那么, 那个敲错的单词应该被更正为这个正确的.
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6

为什么把最简单的一个 P(c|w) 变成两项复杂的式子来计算? 答案是本质上 P(c|w) 就是和这两项同时相关的, 因此拆成两项反而容易处理. 举个例子, 比如一个单词 thew 拼错了. 看上去 thaw 应该是正确的, 因为就是把 a 打成 e 了. 然而, 也有可能用户想要的是 the, 因为 the 是英语中常见的一个词, 并且很有可能打字时候手不小心从 e 滑到 w 了. 因此, 在这种情况下, 我们想要计算 P(c|w), 就必须同时考虑 c 出现的概率和从 c 到 w 的概率. 把一项拆成两项反而让这个问题更加容易更加清晰.

现在, 让我们看看程序究竟是怎么一回事. 首先是计算 P(c), 我们可以读入一个巨大的文本文件, big.txt, 这个里面大约有几百万个词(相当于是语料库了). 这个文件是由Gutenberg 计划中可以获取的一些书, Wiktionary 和 British National Corpus语料库构成。

然后, 我们利用一个叫 words 的函数把语料中的单词全部抽取出来, 转成小写, 并且去除单词中间的特殊符号. 这样, 单词就会成为字母序列, don’t 就变成 don 和 t 了.1 接着我们训练一个概率模型, 别被这个术语吓倒, 实际上就是数一数每个单词出现几次. 在 train 函数中, 我们就做这个事情。

  1. def words(text): return re.findall('[a-z]+', text.lower())
  2. def train(features):
  3. model = collections.defaultdict(lambda: 1)
  4. for f in features:
  5. model[f] += 1
  6. return model
  7. NWORDS = train(words(file('big.txt').read()))
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9

实际上, NWORDS[w] 存储了单词 w 在语料中出现了多少次. 不过一个问题是要是遇到我们从来没有过见过的新词怎么办. 假如说一个词拼写完全正确, 但是语料库中没有包含这个词, 从而这个词也永远不会出现在训练集中. 于是, 我们就要返回出现这个词的概率是0. 这个情况不太妙, 因为概率为0这个代表了这个事件绝对不可能发生, 而在我们的概率模型中, 我们期望用一个很小的概率来代表这种情况. 实际上处理这个问题有很多成型的标准方法, 我们选取一个最简单的方法: 从来没有过见过的新词一律假设出现过一次. 这个过程一般成为”平滑化”, 因为我们把概率分布为0的设置为一个小的概率值. 在语言实现上, 我们可以使用Python collention 包中的 defaultdict 类, 这个类和 python 标准的 dict (其他语言中可能称之为 hash 表) 一样, 唯一的不同就是可以给任意的键设置一个默认值, 在我们的例子中, 我们使用一个匿名的 lambda:1 函数, 设置默认值为 1.

然后的问题是: 给定一个单词 w, 怎么能够枚举所有可能的正确的拼写呢? 实际上前人已经研究得很充分了, 这个就是一个编辑距离的概 念. 这两个词之间的编辑距离 
定义为使用了几次插入(在词中插入一个单字母), 删除(删除一个单字母), 交换(交换相邻两个字母), 替换(把一个字母换成另一个)的操作从一个词变到另一个词. 
下面这个函数可以返回所有与单词 w 编辑距离为 1 的集合.

  1. def edits1(word):
  2. n = len(word)
  3. return set([word[0:i]+word[i+1:] for i in range(n)] + # deletion
  4. [word[0:i]+word[i+1]+word[i]+word[i+2:] for i in range(n-1)] + # transposition
  5. [word[0:i]+c+word[i+1:] for i in range(n) for c in alphabet] + # alteration
  6. [word[0:i]+c+word[i:] for i in range(n+1) for c in alphabet]) # insertion
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6

显然, 这个集合很大. 对于一个长度为 n 的单词, 可能有n种删除, n-1中对换, 26n 种 (译注: 实际上是 25n 种)替换 和 26(n+1) 种插入 (译注: 实际上比这个小, 因为在一个字母前后再插入这个字母构成的词是等价的). 这样的话, 一共就是 54n + 25 中情况 (当中还有一点重复). 比如说, 和 something 这个单词的编辑距离为1 的词按照这个算来是 511 个, 而实际上是 494 个.

一般讲拼写检查的文献宣称大约80-95%的拼写错误都是介于编译距离 1 以内. 然而下面我们看到, 当我对于一个有270个拼写错误的语料做实验的时候, 我发现只有76%的拼写错误是属于编辑距离为1的集合. 或许是我选取的例子比典型的例子难处理一点吧. 不管怎样, 我觉得这个结果不够好, 因此我开始考虑编辑距离为 2 的那些单词了. 这个事情很简单, 递归的来看, 就是把 edit1 函数再作用在 edit1 函数的返回集合的每一个元素上就行了. 因此, 我们定义函数 edit2:

  1. def edits2(word):
  2. return set(e2 for e1 in edits1(word) for e2 in edits1(e1))
  • 1
  • 2

这个语句写起来很简单, 实际上背后是很庞大的计算量: 与 something 编辑距离为2的单词居然达到了 114,324 个. 不过编辑距离放宽到2以后, 我们基本上就能覆盖所有的情况了, 在270个样例中, 只有3个的编辑距离大于2. 当然我们可以做一些小小的优化: 在这些编辑距离小于2的词中间, 只把那些正确的词作为候选词. 我们仍然考虑所有的可能性, 但是不需要构建一个很大的集合, 因此, 我们构建一个函数叫做 known_edits2, 这个函数只返回那些正确的并且与 w 编辑距离小于2 的词的集合:

  1. def known_edits2(word):
  2. return set(e2 for e1 in edits1(word) for e2 in edits1(e1) if e2 in NWORDS)
  • 1
  • 2

现在, 在刚才的 something 例子中, known_edits2(‘something’) 只能返回 3 个单词: ‘smoothing’, ‘something’ 和 ‘soothing’, 而实际上所有编辑距离为 1 或者 2 的词一共有 114,324 个. 这个优化大约把速度提高了 10%.

最后剩下的就是误差模型部分 P(w|c) 了. 这个也是当时难住我的部分. 当时我在飞机上, 没有网络, 也就没有数据用来构建一个拼写错误模型. 不过我有一些常识性的知识: 把一个元音拼成另一个的概率要大于辅音 (因为人常常把 hello 打成 hallo 这样); 把单词的第一个字母拼错的概率会相对小, 等等. 但是我并没有具体的数字去支撑这些证据. 因此, 我选择了一个简单的方法: 编辑距离为1的正确单词比编辑距离为2的优先级高, 而编辑距离为0的正确单词优先级比编辑距离为1的高. 因此, 用代码写出来就是:

(译注: 此处作者使用了Python语言的一个巧妙性质: 短路表达式. 在下面的代码中, 如果known(set)非空, candidate 就会选取这个集合, 而不继续计算后面的; 因此, 通过Python语言的短路表达式, 作者很简单的实现了优先级)

  1. def known(words): return set(w for w in words if w in NWORDS)
  2. def correct(word):
  3. candidates = known([word]) or known(edits1(word)) or known_edits2(word) or [word]
  4. return max(candidates, key=lambda w: NWORDS[w])
  • 1
  • 2
  • 3
  • 4
  • 5

correct 函数从一个候选集合中选取最大概率的. 实际上, 就是选取有最大 P(c) 值的那个. 所有的 P(c) 值都存储在 NWORDS 结构中.

从牛津文本档案库 (Oxford Text Archive)下载了 Roger Mitton 的 Birkbeck 拼写错误语料库.注意读取里面的说明文档. 从这个库中, 我取出了两个集合, 作为我要做拼写检查的目标. 第一个集合用来作为在开发中作为参考, 第二个作为最后的结果测试. 也就是说, 我程序完成之前不参考它, 而把程序在其上的测试结果作为最后的效果. 用两个集合一个训练一个对照是一种良好的实践, 至少这样可以避免我通过对特定数据集合进行特殊调整从而自欺欺人. 这里我给出了一个测试的例子和一个运行测试的例子. 实际的完整测试例子和程序可以参见 spell.py.

代码:

  1. # -*- coding: utf-8 -*-
  2. __author__ = 'jason'
  3. import re
  4. import collections
  5. from collections import Counter
  6. '''
  7. mytext = "i dont' t"
  8. a = re.findall('\w+', mytext.lower())
  9. print a
  10. '''
  11. def words(text): return re.findall(r'\w+', text.lower())
  12. def train(features):
  13. model = collections.defaultdict(lambda: 1)
  14. #使用Python collention 包中的 defaultdict 类,
  15. #这个类和 python 标准的 dict (其他语言中可能称之为 hash 表) 一样,
  16. #唯一的不同就是可以给任意的键设置一个默认值, 在我们的例子中, 我们使用一个匿名的 lambda:1 函数, 设置默认值为 1.
  17. for f in features:
  18. model[f] += 1
  19. return model
  20. WORDS = Counter(words(open('big.txt').read()))#相当于是训练
  21. # WORDS = train(words(file('big.txt').read()))
  22. # print WORDS['hello']# NWORDS[w] 存储了单词 w 在语料中出现了多少次
  23. # print 'temp stop'
  24. # NWORDS = train(words(file('big.txt').read()))#相当于是训练
  25. def P(word, N=sum(WORDS.values())):
  26. "Probability of `word`."
  27. return WORDS[word] / N
  28. #correct函数从一个候选集合中选取最大概率的。实际上, 就是选取有最大 P(c) 值的那个。所有的 P(c) 值都存储在 NWORDS 结构中.
  29. def correction(word):#它以一个单词作为输入参数, 返回最可能的拼写建议结果
  30. "Most probable spelling correction for word."
  31. return max(candidates(word), key=P)
  32. #在下面的代码中,通过Python语言的短路表达式实现。 如果known(set)非空, candidate 就会选取这个集合, 而不继续计算后面的; 因此,
  33. def candidates(word):
  34. "Generate possible spelling corrections for word."
  35. return (known([word]) or known(edits1(word)) or known(edits2(word)) or [word])
  36. #传入的是一个words集合
  37. def known(words):
  38. "The subset of `words` that appear in the dictionary of WORDS."
  39. # print words
  40. return set(w for w in words if w in WORDS)
  41. #只返回那些正确的并且与 w 编辑距离小于2 的词的集合:
  42. def known_edits2(word):
  43. return set(e2 for e1 in edits1(word) for e2 in edits1(e1) if e2 in WORDS)
  44. #返回所有与单词 w 编辑距离为 1 的集合.
  45. def edits1(word):
  46. "All edits that are one edit away from `word`."
  47. letters = 'abcdefghijklmnopqrstuvwxyz'
  48. splits = [(word[:i], word[i:]) for i in range(len(word) + 1)]
  49. deletes = [L + R[1:] for L, R in splits if R]
  50. transposes = [L + R[1] + R[0] + R[2:] for L, R in splits if len(R)>1]
  51. replaces = [L + c + R[1:] for L, R in splits if R for c in letters]
  52. inserts = [L + c + R for L, R in splits for c in letters]
  53. return set(deletes + transposes + replaces + inserts)
  54. #递归的来看, 就是把 edit1 函数再作用在 edit1 函数的返回集合的每一个元素上就行了
  55. #生成器方式
  56. def edits2(word):
  57. "All edits that are two edits away from `word`."
  58. return (e2 for e1 in edits1(word) for e2 in edits1(e1))
  59. #正常写法
  60. def editsV2(word):
  61. e2 = []
  62. for e1 in edits1(word):
  63. temp2 = edits1(e1)
  64. for temp in temp2:
  65. e2.append(temp)
  66. # print e2
  67. return e2
  68. def Testset(lines):
  69. "Parse 'right: wrong1 wrong2' lines into [('right', 'wrong1'), ('right', 'wrong2')] pairs."
  70. return [(right, wrong)
  71. for (right, wrongs) in (line.split(':') for line in lines)
  72. for wrong in wrongs.split()]
  73. '''
  74. tests1 = { 'access': 'acess', 'accessing': 'accesing', 'accommodation':
  75. 'accomodation acommodation acomodation', 'account': 'acount', ...}
  76. tests2 = {'forbidden': 'forbiden', 'decisions': 'deciscions descisions',
  77. 'supposedly': 'supposidly', 'embellishing': 'embelishing', ...}
  78. '''
  79. def unit_tests():
  80. assert correction('speling') == 'spelling' # insert
  81. assert correction('korrectud') == 'corrected' # replace 2
  82. assert correction('bycycle') == 'bicycle' # replace
  83. assert correction('inconvient') == 'inconvenient' # insert 2
  84. assert correction('arrainged') == 'arranged' # delete
  85. assert correction('peotry') == 'poetry' # transpose
  86. assert correction('peotryy') == 'poetry' # transpose + delete
  87. assert correction('word') == 'word' # known
  88. assert correction('quintessential') == 'quintessential' # unknown
  89. assert words('This is a TEST.') == ['this', 'is', 'a', 'test']
  90. assert Counter(words('This is a test. 123; A TEST this is.')) == (
  91. Counter({'123': 1, 'a': 2, 'is': 2, 'test': 2, 'this': 2}))
  92. assert len(WORDS) == 32192
  93. assert sum(WORDS.values()) == 1115504
  94. assert WORDS.most_common(10) == [
  95. ('the', 79808),
  96. ('of', 40024),
  97. ('and', 38311),
  98. ('to', 28765),
  99. ('in', 22020),
  100. ('a', 21124),
  101. ('that', 12512),
  102. ('he', 12401),
  103. ('was', 11410),
  104. ('it', 10681)]
  105. assert WORDS['the'] == 79808
  106. assert P('quintessential') == 0
  107. assert 0.07 < P('the') < 0.08
  108. return 'unit_tests pass'
  109. def spelltest(tests, verbose=False):
  110. "Run correction(wrong) on all (right, wrong) pairs; report results."
  111. import time
  112. start = time.clock()
  113. good, unknown = 0, 0
  114. n = len(tests)
  115. for right, wrong in tests:
  116. w1 = correction(wrong)
  117. # print("right=%s,wrong=%s,correct=%s" % (right, wrong, w1))
  118. good += (w1 == right)
  119. # print(good)
  120. if w1 != right:
  121. unknown += (right not in WORDS)
  122. if verbose:
  123. print('correction({}) => {} ({}); expected {} ({})'
  124. .format(wrong, w1, WORDS[w1], right, WORDS[right]))
  125. dt = time.clock() - start
  126. print("result=%.2f" % (good*1.0 / n))
  127. print('{:.0%} of {} correct ({:.0%} unknown) at {:.0f} words per second '
  128. .format(good*1.0 / n, n, unknown / n, n / dt))
  129. def spelltestV2(tests, verbose=False):
  130. "Run correction(wrong) on all (right, wrong) pairs; report results."
  131. import time
  132. print tests
  133. start = time.clock()
  134. good, unknown = 0, 0
  135. n = len(tests)
  136. for right, wrong in tests:
  137. w = correction(wrong)
  138. print "right=%s,wrong=%s,correction=%s" % (right, wrong, w)
  139. good += (w == right)
  140. if w != right:
  141. unknown += (right not in WORDS)
  142. if verbose:
  143. print('correction({}) => {} ({}); expected {} ({})'
  144. .format(wrong, w, WORDS[w], right, WORDS[right]))
  145. dt = time.clock() - start
  146. print('{:.0%} of {} correct ({:.0%} unknown) at {:.0f} words per second '
  147. .format(good*1.0 / n, n, unknown / n, n / dt))
  148. w = correction("youll")
  149. print(correction('korrectud'))
  150. print(len(edits1('somthing')))
  151. print(known(edits1('somthing')))
  152. print(len(set(edits2('something'))))#和原文不同??是因为数据发生了变化吗??
  153. print(correction('contenpted'))
  154. # print spelltest(tests1)
  155. # print spelltest(tests2) ## only do this after everything is debugged
  156. # print(unit_tests())
  157. spelltest(Testset(open('spell-testset1.txt'))) # Development set
  158. spelltest(Testset(open('spell-testset2.txt'))) # Final test set
  159. print "process end!"
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63
  • 64
  • 65
  • 66
  • 67
  • 68
  • 69
  • 70
  • 71
  • 72
  • 73
  • 74
  • 75
  • 76
  • 77
  • 78
  • 79
  • 80
  • 81
  • 82
  • 83
  • 84
  • 85
  • 86
  • 87
  • 88
  • 89
  • 90
  • 91
  • 92
  • 93
  • 94
  • 95
  • 96
  • 97
  • 98
  • 99
  • 100
  • 101
  • 102
  • 103
  • 104
  • 105
  • 106
  • 107
  • 108
  • 109
  • 110
  • 111
  • 112
  • 113
  • 114
  • 115
  • 116
  • 117
  • 118
  • 119
  • 120
  • 121
  • 122
  • 123
  • 124
  • 125
  • 126
  • 127
  • 128
  • 129
  • 130
  • 131
  • 132
  • 133
  • 134
  • 135
  • 136
  • 137
  • 138
  • 139
  • 140
  • 141
  • 142
  • 143
  • 144
  • 145
  • 146
  • 147
  • 148
  • 149
  • 150
  • 151
  • 152
  • 153
  • 154
  • 155
  • 156
  • 157
  • 158
  • 159
  • 160
  • 161
  • 162
  • 163
  • 164
  • 165
  • 166
  • 167
  • 168
  • 169
  • 170
  • 171
  • 172
  • 173
  • 174
  • 175
  • 176
  • 177
  • 178
  • 179
  • 180
  • 181
  • 182
  • 183
  • 184
  • 185
  • 186

运行结果如下: 
这里写图片描述

参考资料:

参考: 
https://www.zybuluo.com/mdeditor?url=https://www.zybuluo.com/static/editor/md-help.markdown 
https://www.zybuluo.com/codeep/note/163962#cmd-markdown-公式指导手册 
http://norvig.com/spell-correct.html 
http://blog.csdn.net/nirendao/article/details/50640139

https://blog.csdn.net/ljp1919/article/details/56013726

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/不正经/article/detail/207437
推荐阅读
相关标签
  

闽ICP备14008679号