there. I apologize for the simple question, but I am a complete novice and need some help. I am trying to run Peter Norvig's Spelling Corrector (http://norvig.com/spell.py), but I'm receiving the following reply:
C:\>spelling.py
Traceback (most recent call last):
File "C:\Python27\spelling.py", line 11, in <module>
NWORDS = train(words(file('big.txt').read()))
IOError: [Errno 2] No such file or directory: 'big.txt'
The script includes an embedded text file (big.txt), which I've created and saved in the same directory as spelling.py. Why can't it find the big.txt file? Secondly, once the script is working, how would I use it against a sample of words needing correction?