├── .idea ├── SubjectiveDetection.iml ├── markdown-navigator.xml ├── markdown-navigator │ └── profiles_settings.xml ├── misc.xml ├── modules.xml ├── vcs.xml └── workspace.xml ├── README.md ├── dict ├── degree_words.txt ├── deny_words.txt ├── lianci_words.txt ├── nengyuan_words.txt ├── pingjia_words.txt ├── qingtai_words.txt ├── rencheng_words.txt ├── senti_words.txt ├── tanci_words.txt ├── yiwen_words.txt ├── yuqi_words.txt ├── zhishi_words.txt ├── zhuangtai_words.txt └── zhuzhang_words.txt ├── document └── 刘焕勇-20180516-TextBlob情感分析调研.pdf ├── image ├── textblob_schema.jpg └── textblob_summary.jpg └── zhuguan.py /.idea/SubjectiveDetection.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhuanyong/ZhuguanDetection/HEAD/.idea/SubjectiveDetection.iml -------------------------------------------------------------------------------- /.idea/markdown-navigator.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhuanyong/ZhuguanDetection/HEAD/.idea/markdown-navigator.xml -------------------------------------------------------------------------------- /.idea/markdown-navigator/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhuanyong/ZhuguanDetection/HEAD/.idea/markdown-navigator/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhuanyong/ZhuguanDetection/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhuanyong/ZhuguanDetection/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhuanyong/ZhuguanDetection/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhuanyong/ZhuguanDetection/HEAD/.idea/workspace.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhuanyong/ZhuguanDetection/HEAD/README.md -------------------------------------------------------------------------------- /dict/degree_words.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhuanyong/ZhuguanDetection/HEAD/dict/degree_words.txt -------------------------------------------------------------------------------- /dict/deny_words.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhuanyong/ZhuguanDetection/HEAD/dict/deny_words.txt -------------------------------------------------------------------------------- /dict/lianci_words.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhuanyong/ZhuguanDetection/HEAD/dict/lianci_words.txt -------------------------------------------------------------------------------- /dict/nengyuan_words.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhuanyong/ZhuguanDetection/HEAD/dict/nengyuan_words.txt -------------------------------------------------------------------------------- /dict/pingjia_words.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhuanyong/ZhuguanDetection/HEAD/dict/pingjia_words.txt -------------------------------------------------------------------------------- /dict/qingtai_words.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhuanyong/ZhuguanDetection/HEAD/dict/qingtai_words.txt -------------------------------------------------------------------------------- /dict/rencheng_words.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhuanyong/ZhuguanDetection/HEAD/dict/rencheng_words.txt -------------------------------------------------------------------------------- /dict/senti_words.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhuanyong/ZhuguanDetection/HEAD/dict/senti_words.txt -------------------------------------------------------------------------------- /dict/tanci_words.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhuanyong/ZhuguanDetection/HEAD/dict/tanci_words.txt -------------------------------------------------------------------------------- /dict/yiwen_words.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhuanyong/ZhuguanDetection/HEAD/dict/yiwen_words.txt -------------------------------------------------------------------------------- /dict/yuqi_words.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhuanyong/ZhuguanDetection/HEAD/dict/yuqi_words.txt -------------------------------------------------------------------------------- /dict/zhishi_words.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhuanyong/ZhuguanDetection/HEAD/dict/zhishi_words.txt -------------------------------------------------------------------------------- /dict/zhuangtai_words.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhuanyong/ZhuguanDetection/HEAD/dict/zhuangtai_words.txt -------------------------------------------------------------------------------- /dict/zhuzhang_words.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhuanyong/ZhuguanDetection/HEAD/dict/zhuzhang_words.txt -------------------------------------------------------------------------------- /document/刘焕勇-20180516-TextBlob情感分析调研.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhuanyong/ZhuguanDetection/HEAD/document/刘焕勇-20180516-TextBlob情感分析调研.pdf -------------------------------------------------------------------------------- /image/textblob_schema.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhuanyong/ZhuguanDetection/HEAD/image/textblob_schema.jpg -------------------------------------------------------------------------------- /image/textblob_summary.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhuanyong/ZhuguanDetection/HEAD/image/textblob_summary.jpg -------------------------------------------------------------------------------- /zhuguan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhuanyong/ZhuguanDetection/HEAD/zhuguan.py --------------------------------------------------------------------------------