加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
test.py 627 Bytes
一键复制 编辑 原始数据 按行查看 历史
Hansen06 提交于 2019-06-20 10:07 . first commit
import os
from inspect import getsourcefile
from io import open
lexicon_file=r"G:\3. 20170901-至今-情感分析\情感 Research\code\vaderSentiment\vaderSentiment\vader_lexicon2.txt"
_this_module_file_path_ = os.path.abspath(getsourcefile(lambda: 0))
lexicon_full_filepath = os.path.join(os.path.dirname(_this_module_file_path_), lexicon_file)
with open(lexicon_full_filepath, encoding='utf-8') as f:
lexicon_full_filepath = f.readlines()
lex_dict = {}
for line in lexicon_full_filepath:
(word, measure) = line.strip().split('\t')[0:2]
print(line.strip().split('\t')[0:2])
lex_dict[word] = float(measure)
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化