セクション 2. 章 8
single
Challenge: Lemmatization with POS Tagging
メニューを表示するにはスワイプしてください
タスク
スワイプしてコーディングを開始
Your are given some text in text variable. Your task is to perform a lemmatization with pos tags on this text. To do this:
- Convert
textto lowercase and save intext_lower. - Tokenize the
text_lowerstring and save the result intokens. - Load English stop words, convert them to
set, and save instop_words. - Filter out the stop words using list comprehension and save the result in
filtered_tokens. - Perform POS tagging using the respective function and save the result in
tagged_tokens. - Create a WordNet Lemmatizer and save it in
lemmatizer. - Lemmatize the tokens taking their POS tags into account using list comprehension and save the result in
lemmatized_tokens.
解答
すべて明確でしたか?
フィードバックありがとうございます!
セクション 2. 章 8
single
AIに質問する
AIに質問する
何でも質問するか、提案された質問の1つを試してチャットを始めてください