gpt4 book ai didi

python - UnicodeDecodeError 在处理数据集时数据意外结束

转载 作者:行者123 更新时间:2023-11-28 21:51:25 25 4
gpt4 key购买 nike

我是 python 的新手,我正在尝试处理一小部分 Yelp!数据集是 JSON,但我使用 pandas 库和 NLTK 转换为 CSV。

在对数据进行预处理时,我首先尝试删除所有标点符号以及最常见的停用词。这样做之后,我想应用 nltk.stem 中随时可用的 Porter 词干提取算法。

这是我的代码:

"""A method for removing the noise in the data and the most common stop.words (NLTK)."""
def stopWords(review):

stopset = set(stopwords.words("english"))
review = review.lower()
review = review.replace(".","")
review = review.replace("-"," ")
review = review.replace(")","")
review = review.replace("(","")
review = review.replace("i'm"," ")
review = review.replace("!","")
review = re.sub("[$!@#*;:<+>~-]", '', review)
row = review.split()

tokens = ' '.join([word for word in row if word not in stopset])
return tokens

我使用此处的标记输入我写的词干提取方法:

"""A method for stemming the words to their roots using Porter Algorithm (NLTK)"""
def stemWords(impWords):
stemmer = stem.PorterStemmer()
tok = stopWords(impWords)
========================================================================
stemmed = " ".join([stemmer.stem(str(word)) for word in tok.split(" ")])
========================================================================
return stemmed

但我收到错误 UnicodeDecodeError: 'utf8' codec can't decode byte 0xc2 in position 0: unexpected end of data。 '==' 内的那一行给我错误。

我已经尝试清理数据并删除所有特殊字符 !@#$^&* 和其他字符来完成这项工作。但是停用词工作正常。词干提取不起作用。有人可以告诉我哪里做错了吗?

如果我的数据不干净,或者 unicode 字符串在某处损坏,我是否可以通过任何方式清理或修复它,这样它就不会给我这个错误?我想进行词干提取,任何建议都会有所帮助。

最佳答案

阅读 python 中的 unicode 字符串处理。有 str 类型,但也有 unicode 类型。

我建议:

  1. 读取后立即对每一行进行解码,以缩小输入数据中不正确字符的范围(真实数据包含错误)

  2. 随处使用 unicodeu"" 字符串。

关于python - UnicodeDecodeError 在处理数据集时数据意外结束,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30283217/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com