sklearn.utils._param_validation.InvalidParameterError: The 'stop_words' parameter of TfidfVectorizer must be a str among {'english'}
时间: 2024-04-06 16:31:42 浏览: 471
程序运行时,提示“Invalid parameter”错误
这个错误提示是因为在使用 TfidfVectorizer 进行文本特征处理时,传入的 stop_words 参数不合法。stop_words 参数用于指定需要被过滤掉的单词,其取值应该是一个字符串,代表语言名称,比如英语应该传入 'english'。如果你传入的不是这个值,就会出现这个错误。建议你检查一下代码中传入的 stop_words 参数是否正确。
阅读全文