{ "cells": [ { "cell_type": "markdown", "metadata": {}, "source": [ "# 文本学习" ] }, { "cell_type": "code", "execution_count": 1, "metadata": {}, "outputs": [], "source": [ "from sklearn.feature_extraction.text import CountVectorizer" ] }, { "cell_type": "code", "execution_count": 3, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ " (0, 0)\t1\n", " (0, 1)\t1\n", " (0, 2)\t1\n", " (0, 4)\t1\n", " (0, 7)\t1\n", " (0, 8)\t1\n", " (0, 10)\t1\n", " (0, 14)\t1\n", " (0, 15)\t1\n", " (0, 16)\t1\n", " (0, 17)\t1\n", " (1, 0)\t1\n", " (1, 1)\t1\n", " (1, 3)\t1\n", " (1, 6)\t3\n", " (1, 7)\t1\n", " (1, 9)\t1\n", " (1, 11)\t1\n", " (1, 12)\t1\n", " (1, 14)\t1\n", " (1, 16)\t1\n", " (1, 17)\t1\n", " (2, 0)\t1\n", " (2, 3)\t1\n", " (2, 5)\t1\n", " (2, 7)\t1\n", " (2, 8)\t1\n", " (2, 11)\t1\n", " (2, 12)\t1\n", " (2, 13)\t1\n", " (2, 16)\t1\n", " (2, 17)\t1\n" ] } ], "source": [ "vectorizer = CountVectorizer()\n", "str1 = \"Hi Katie the self driving car will be late Best Sebastian\"\n", "str2 = \"Hi Sebastian the machine learning class will be great great great Best Katie\"\n", "str3 = \"Hi Katie the machine learning class will be most excellent\"\n", "email_list = [str1,str2, str3]\n", "bag_of_words = vectorizer.fit(email_list)\n", "bag_of_words = vectorizer.transform(email_list)\n", "print(bag_of_words)" ] }, { "cell_type": "code", "execution_count": 20, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "6\n" ] } ], "source": [ "print(vectorizer.vocabulary_.get((\"great\")))" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## 从NLTK工具中导入停止词" ] }, { "cell_type": "code", "execution_count": 28, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "179\n", "['i', 'me', 'my', 'myself', 'we', 'our', 'ours', 'ourselves', 'you', \"you're\", \"you've\", \"you'll\", \"you'd\", 'your', 'yours', 'yourself', 'yourselves', 'he', 'him', 'his', 'himself', 'she', \"she's\", 'her', 'hers', 'herself', 'it', \"it's\", 'its', 'itself', 'they', 'them', 'their', 'theirs', 'themselves', 'what', 'which', 'who', 'whom', 'this', 'that', \"that'll\", 'these', 'those', 'am', 'is', 'are', 'was', 'were', 'be', 'been', 'being', 'have', 'has', 'had', 'having', 'do', 'does', 'did', 'doing', 'a', 'an', 'the', 'and', 'but', 'if', 'or', 'because', 'as', 'until', 'while', 'of', 'at', 'by', 'for', 'with', 'about', 'against', 'between', 'into', 'through', 'during', 'before', 'after', 'above', 'below', 'to', 'from', 'up', 'down', 'in', 'out', 'on', 'off', 'over', 'under', 'again', 'further', 'then', 'once', 'here', 'there', 'when', 'where', 'why', 'how', 'all', 'any', 'both', 'each', 'few', 'more', 'most', 'other', 'some', 'such', 'no', 'nor', 'not', 'only', 'own', 'same', 'so', 'than', 'too', 'very', 's', 't', 'can', 'will', 'just', 'don', \"don't\", 'should', \"should've\", 'now', 'd', 'll', 'm', 'o', 're', 've', 'y', 'ain', 'aren', \"aren't\", 'couldn', \"couldn't\", 'didn', \"didn't\", 'doesn', \"doesn't\", 'hadn', \"hadn't\", 'hasn', \"hasn't\", 'haven', \"haven't\", 'isn', \"isn't\", 'ma', 'mightn', \"mightn't\", 'mustn', \"mustn't\", 'needn', \"needn't\", 'shan', \"shan't\", 'shouldn', \"shouldn't\", 'wasn', \"wasn't\", 'weren', \"weren't\", 'won', \"won't\", 'wouldn', \"wouldn't\"]\n" ] } ], "source": [ "from nltk.corpus import stopwords\n", "sw = stopwords.words(\"english\")\n", "print(len(sw))\n", "print(sw)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### 使用NLTK将文字进行词干化\n", "可以极大程度地使得词库简洁化、紧凑化" ] }, { "cell_type": "code", "execution_count": 35, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "The stem of resonsiveness is respons\n", "The stem of unresponsiveness is unrespons\n" ] } ], "source": [ "from nltk.stem.snowball import SnowballStemmer\n", "\n", "stemmer = SnowballStemmer(\"english\")\n", "print(\"The stem of resonsiveness is\", stemmer.stem(\"responsiveness\"))\n", "print(\"The stem of unresponsiveness is\", stemmer.stem(\"unresponsiveness\"))" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [] } ], "metadata": { "kernelspec": { "display_name": "Python 3", "language": "python", "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.7.6" } }, "nbformat": 4, "nbformat_minor": 4 }