UnicodeDecodeError: 'ascii' Codec Can't Decode Byte 0xc3 In Position
When I try to extract some pattern from a tagged text in nltk, I have the error: UnicodeDecodeError: 'ascii' codec can't decode byte 0xc3 in position 79: ordinal not in range(128
Solution 1:
The problem is that the ntlk version is not compatabile with the python version, so it requires an older version of the nltk toolkit.
Post a Comment for "UnicodeDecodeError: 'ascii' Codec Can't Decode Byte 0xc3 In Position"