├── .idea ├── easy_text_emotion.iml ├── encodings.xml ├── misc.xml ├── modules.xml ├── vcs.xml └── workspace.xml ├── LICENSE ├── README.md ├── __pycache__ ├── emotion_cn.cpython-37.pyc ├── emotion_eng.cpython-37.pyc ├── load_dict.cpython-37.pyc └── main.cpython-37.pyc ├── emotion_cn.py ├── emotion_dict ├── cn │ ├── fouding.txt │ ├── level1.txt │ ├── level2.txt │ ├── level3.txt │ ├── level4.txt │ ├── level5.txt │ ├── level6.txt │ ├── neg.txt │ └── pos.txt └── eng │ ├── fouding.txt │ ├── level1.txt │ ├── level2.txt │ ├── level3.txt │ ├── level4.txt │ ├── level5.txt │ ├── level6.txt │ ├── neg.txt │ └── pos.txt ├── emotion_eng.py ├── load_dict.py ├── main.py ├── requirements.txt ├── show1.png └── show2.png /.idea/easy_text_emotion.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtreeai/easy_text_emotion/HEAD/.idea/easy_text_emotion.iml -------------------------------------------------------------------------------- /.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtreeai/easy_text_emotion/HEAD/.idea/encodings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtreeai/easy_text_emotion/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtreeai/easy_text_emotion/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtreeai/easy_text_emotion/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtreeai/easy_text_emotion/HEAD/.idea/workspace.xml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtreeai/easy_text_emotion/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtreeai/easy_text_emotion/HEAD/README.md -------------------------------------------------------------------------------- /__pycache__/emotion_cn.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtreeai/easy_text_emotion/HEAD/__pycache__/emotion_cn.cpython-37.pyc -------------------------------------------------------------------------------- /__pycache__/emotion_eng.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtreeai/easy_text_emotion/HEAD/__pycache__/emotion_eng.cpython-37.pyc -------------------------------------------------------------------------------- /__pycache__/load_dict.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtreeai/easy_text_emotion/HEAD/__pycache__/load_dict.cpython-37.pyc -------------------------------------------------------------------------------- /__pycache__/main.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtreeai/easy_text_emotion/HEAD/__pycache__/main.cpython-37.pyc -------------------------------------------------------------------------------- /emotion_cn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtreeai/easy_text_emotion/HEAD/emotion_cn.py -------------------------------------------------------------------------------- /emotion_dict/cn/fouding.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtreeai/easy_text_emotion/HEAD/emotion_dict/cn/fouding.txt -------------------------------------------------------------------------------- /emotion_dict/cn/level1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtreeai/easy_text_emotion/HEAD/emotion_dict/cn/level1.txt -------------------------------------------------------------------------------- /emotion_dict/cn/level2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtreeai/easy_text_emotion/HEAD/emotion_dict/cn/level2.txt -------------------------------------------------------------------------------- /emotion_dict/cn/level3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtreeai/easy_text_emotion/HEAD/emotion_dict/cn/level3.txt -------------------------------------------------------------------------------- /emotion_dict/cn/level4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtreeai/easy_text_emotion/HEAD/emotion_dict/cn/level4.txt -------------------------------------------------------------------------------- /emotion_dict/cn/level5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtreeai/easy_text_emotion/HEAD/emotion_dict/cn/level5.txt -------------------------------------------------------------------------------- /emotion_dict/cn/level6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtreeai/easy_text_emotion/HEAD/emotion_dict/cn/level6.txt -------------------------------------------------------------------------------- /emotion_dict/cn/neg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtreeai/easy_text_emotion/HEAD/emotion_dict/cn/neg.txt -------------------------------------------------------------------------------- /emotion_dict/cn/pos.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtreeai/easy_text_emotion/HEAD/emotion_dict/cn/pos.txt -------------------------------------------------------------------------------- /emotion_dict/eng/fouding.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtreeai/easy_text_emotion/HEAD/emotion_dict/eng/fouding.txt -------------------------------------------------------------------------------- /emotion_dict/eng/level1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtreeai/easy_text_emotion/HEAD/emotion_dict/eng/level1.txt -------------------------------------------------------------------------------- /emotion_dict/eng/level2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtreeai/easy_text_emotion/HEAD/emotion_dict/eng/level2.txt -------------------------------------------------------------------------------- /emotion_dict/eng/level3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtreeai/easy_text_emotion/HEAD/emotion_dict/eng/level3.txt -------------------------------------------------------------------------------- /emotion_dict/eng/level4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtreeai/easy_text_emotion/HEAD/emotion_dict/eng/level4.txt -------------------------------------------------------------------------------- /emotion_dict/eng/level5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtreeai/easy_text_emotion/HEAD/emotion_dict/eng/level5.txt -------------------------------------------------------------------------------- /emotion_dict/eng/level6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtreeai/easy_text_emotion/HEAD/emotion_dict/eng/level6.txt -------------------------------------------------------------------------------- /emotion_dict/eng/neg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtreeai/easy_text_emotion/HEAD/emotion_dict/eng/neg.txt -------------------------------------------------------------------------------- /emotion_dict/eng/pos.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtreeai/easy_text_emotion/HEAD/emotion_dict/eng/pos.txt -------------------------------------------------------------------------------- /emotion_eng.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtreeai/easy_text_emotion/HEAD/emotion_eng.py -------------------------------------------------------------------------------- /load_dict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtreeai/easy_text_emotion/HEAD/load_dict.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtreeai/easy_text_emotion/HEAD/main.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | jieba 2 | nltk -------------------------------------------------------------------------------- /show1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtreeai/easy_text_emotion/HEAD/show1.png -------------------------------------------------------------------------------- /show2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtreeai/easy_text_emotion/HEAD/show2.png --------------------------------------------------------------------------------