0

オンラインで見つけたこのスペルチェッカーを動作させようとしましたが、うまくいきませんでした。どんな助けでもいただければ幸いです。http://norvig.com/spell-correct.htmlの元のコード

import re, collections, codecs

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

def train(features):
    model = collections.defaultdict(lambda: 1)
    for f in features:
        model[f] += 1
    return model

file = codecs.open('C:\88888\88888\88888\88888\8888\A Word.txt', encoding='utf-8', mode='r')

NWORDS = train(words(file.read()))

alphabet = 'abcdefghijklmnopqrstuvwxyz'

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)

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)

エラー:

  File "C:\8888\8888\8888\8888\88888\SpellCheck.py", line 11
    file = codecs.open('C:\888\888\888\8888\88888\A Word.txt', encoding='utf-8', mode='r')
                      ^
SyntaxError: (unicode error) 'unicodeescape' codec can't decode bytes in position 2-3: truncated \UXXXXXXXX escape
4

2 に答える 2

2

OK、これを試してみましょう...文字列値 '\x' を取得し、それに何かをしようとするか、試してください

string('\x.....')

あなたのエラーを返しますか?

したがって、文字列が定義されている場合は、

x = string('\y\o\u \c\a\n \n\e\v\e\r \c\h\a\n\g\e \t\h\i\s \i\n \p\y\t\h\o\n')

あなたは運が悪いだけです。ユーザーが入力の任意の文字として「\」を入力することを決定した場合、それは残念です。

この問題を解決するには、次のようなループまたは再帰コードを使用してみてください: パスとファイル名から不正な文字を削除するには?

于 2013-10-03T23:54:35.550 に答える
0

C:\88888\88888\88888\88888\8888\A Word.txt-それは私が今年見た中で最も奇妙な道です:)

で置き換えてみてくださいC:\\88888\\88888\\88888\\88888\\8888\\A Word.txt

于 2013-07-23T15:49:49.430 に答える