机器学习之贝叶斯拼写检查器

#coding:utf-8
import re, collections

def words(text): return re.findall('[a-z]+', text.lower()) 

def train(features):
    #使用defaultdict的好处在于当访问一个不存在的键值的时候会调用入参函数,并将结果作为这个key的value
    model = collections.defaultdict(lambda: 1)
    for f in features:
        model[f] += 1
    return model

NWORDS = train(words(file('big.txt').read()))

alphabet = 'abcdefghijklmnopqrstuvwxyz'

#实现编辑距离为1的操作,也就是说只改变一个字母
def edits1(word):
   splits     = [(word[:i], word[i:]) for i in range(len(word) + 1)]
   #删除一个字母
   deletes    = [a + b[1:] for a, b in splits if b]
   #移动一个字母
   transposes = [a + b[1] + b[0] + b[2:] for a, b in splits if len(b)>1]
   #替换一个字母
   replaces   = [a + c + b[1:] for a, b in splits for c in alphabet if b]
   #插入一个字母
   inserts    = [a + c + b     for a, b in splits for c in alphabet]
   return set(deletes + transposes + replaces + inserts)

#实现编辑距离为2的操作,也就是说只改变二个字母
def known_edits2(word):
    return set(e2 for e1 in edits1(word) for e2 in edits1(e1) if e2 in NWORDS)

def known(words): return set(w for w in words if w in NWORDS)

def correct(word):
    candidates = known([word]) or known(edits1(word)) or known_edits2(word) or [word]
    return max(candidates, key=NWORDS.get)

if __name__ == "__main__":
    word = "name1"
    print correct(word)
---------------------------------------------------------------------------

IOError                                   Traceback (most recent call last)

<ipython-input-26-b82fae3553e1> in <module>()
     11     return model
     12 
---> 13 NWORDS = train(words(file('D:\test\machineLearningtest\big.txt').read()))
     14 
     15 alphabet = 'abcdefghijklmnopqrstuvwxyz'


IOError: [Errno 22] invalid mode ('r') or filename: 'D:\test\\machineLearningtest\x08ig.txt'
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值