Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
1.5k views
in Technique[技术] by (71.8m points)

python - TypeError: Argument 'string' has incorrect type (expected str, got float)

I am working on a code for aspect extraction. I was getting the following error. can anyone help me resolve this ?

aspect_terms = [] for review in nlp.pipe(df2.review): chunks = [(chunk.root.text) for chunk in review.noun_chunks if chunk.root.pos_ == 'NOUN'] aspect_terms.append(''.join(chunks))

TypeError: Argument 'string' has incorrect type (expected str, got float).


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

Covert chunk.root.text to a string during list comprehension. .join requires strings in the iterable.

aspect_terms = [] 
for review in nlp.pipe(df2.review):
    chunks = [str(chunk.root.text) for chunk in review.noun_chunks if chunk.root.pos_ == 'NOUN']
    aspect_terms.append(''.join(chunks))

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...