基於貝葉斯公式的拼寫檢查器

import re, collections # 拼寫檢查器 def words(text): # 只篩選出字母,將所有的字母會變成小寫,變成一個個單詞了 return re.findall('[a-z]+', text.lower()) def train(features): # 遇到新的單詞,設置詞頻默認爲1(表示很小的概率) model = collections.d
相關文章
相關標籤/搜索