Droidtown/KeyMojiAPI: KeyMoji (關鍵情緒偵測引擎) 是個具有 ...
文章推薦指數: 80 %
GitHub - Droidtown/KeyMojiAPI: KeyMoji (關鍵情緒偵測引擎) 是個具有模型解釋性且禁得住科學驗證的中文文本情緒分析系統。
利用將語言學Rule-based 和機器 ...
Skiptocontent
{{message}}
Droidtown
/
KeyMojiAPI
Public
Notifications
Fork
2
Star
11
KeyMoji(關鍵情緒偵測引擎)是個具有模型解釋性且禁得住科學驗證的中文文本情緒分析系統。
利用將語言學Rule-based和機器學習Data-driven兩種方法Hybrid在一起,採用「MLmodel」+「Syntax」+「FormalSemantics」的系統架構所打造出來的文本情感分析的神兵利器。
License
MITlicense
11
stars
2
forks
Star
Notifications
Code
Issues
0
Pullrequests
0
Actions
Projects
0
Wiki
Security
Insights
More
Code
Issues
Pullrequests
Actions
Projects
Wiki
Security
Insights
Droidtown/KeyMojiAPI
Thiscommitdoesnotbelongtoanybranchonthisrepository,andmaybelongtoaforkoutsideoftherepository.
main
Branches
Tags
Couldnotloadbranches
Nothingtoshow
{{refName}}
default
Couldnotloadtags
Nothingtoshow
{{refName}}
default
1
branch
2
tags
Code
Latestcommit
Gitstats
12
commits
Files
Permalink
Failedtoloadlatestcommitinformation.
Type
Name
Latestcommitmessage
Committime
Docs
KeyMojiAPI
.gitignore
KeyMojiAPI.py
LICENSE
MANIFEST.in
README.md
setup.py
Viewcode
KeyMoji[EmotionsinFormula]
安裝方法
使用方法
SENSE2
Visualization
SENSE8
Visualization
TensionVisualization
README.md
KeyMoji[EmotionsinFormula]
KeyMoji關鍵情緒偵測(SENSE2、SENSE8、Tension)採用不同於其它「素人標記」和「純機器學習」的文本情緒偵測分析工具,結合了「句型」、「邏輯語意」和「詞彙模型」,設計出一個完整的「情緒計算過程」。
完整介紹
安裝方法
pip3installKeyMojiAPI
or
python3-mpipinstallKeyMojiAPI
使用方法
KeyMojiWebsiteDemo
KeyMojiAPIDocumentation
SENSE2
fromKeyMojiAPIimportKeyMoji
#若您是使用Docker版本,無須填入username,keymoji_key參數
keymoji=KeyMoji(username="",keymojiKey="")
inputSTR="他逃離了危險的災難"
result=keymoji.sense2(inputSTR)
print(result)
{
"status":true,
"msg":"Success!",
"results":[
{
"score":0.2798,
"sentiment":"positive",
"input_str":"他逃離了危險的災難",
"cursing":false
}
],
"sense":"sense2",
"version":"v101"
}
Visualization
SENSE8
fromKeyMojiAPIimportKeyMoji
#若您是使用Docker版本,無須填入username,keymoji_key參數
keymoji=KeyMoji(username="",keymojiKey="")
inputSTR="他逃離了危險的災難"
result=keymoji.sense8(inputSTR)
print(result)
{
"status":True,
"msg":"Success!",
"results":[
{
"input_str":"他逃離了危險的災難",
"Joy":3.7486,
"Trust":5.1776,
"Surprise":6.7238,
"Anticipation":0.9618,
"Fear":0.9505,
"Sadness":0.9108,
"Anger":0.9516,
"Disgust":0.8876
}
],
"sense":"sense8",
"version":"v101"
}
Visualization
TensionVisualization
About
KeyMoji(關鍵情緒偵測引擎)是個具有模型解釋性且禁得住科學驗證的中文文本情緒分析系統。
利用將語言學Rule-based和機器學習Data-driven兩種方法Hybrid在一起,採用「MLmodel」+「Syntax」+「FormalSemantics」的系統架構所打造出來的文本情感分析的神兵利器。
Resources
Readme
License
MITlicense
Stars
11
stars
Watchers
1
watching
Forks
2
forks
Releases
2
Releasev1.0.4
Latest
Dec28,2021
+1release
Packages0
Nopackagespublished
Usedby1
@vicwei8128
/
Python_practise
Contributors3
Languages
Python
100.0%
Youcan’tperformthatactionatthistime.
Yousignedinwithanothertaborwindow.Reloadtorefreshyoursession.
Yousignedoutinanothertaborwindow.Reloadtorefreshyoursession.
延伸文章資訊
- 1Edward1Chou/SentimentAnalysis: 文本情感分析 - GitHub
我们知道,就中文而言,词语的数量就多达数十万,如果给每个词语唯一的编号,那么编号就是从1到几十万变化,变化幅度如此之大,模型的稳定性是很难保证的 ...
- 2chinese-sentiment-analysis · GitHub Topics
基于字符级卷积神经网络的细粒度的中文情感分析以及具体的应用,将顾客打分和评论情感进行两极映射,使用数据自动 ... 基于RoBERTa-wwm-ext 模型的微博中文情绪识别.
- 3大连理工大学中文情感词汇
cnsenti. 中文情感分析库(Chinese Sentiment))可对文本进行情绪分析、正负情感分析。 github地址https://github.com/thunderhit/cnse...
- 4UDICatNCHU/swingerApp: 情緒分析的django App - GitHub
swingerApp. 一個將Swinger 中文情緒分類器套用到django上的套件. Prerequisities. OS:Ubuntu / OSX would be nice; envir...
- 5Droidtown/KeyMojiAPI: KeyMoji (關鍵情緒偵測引擎) 是個具有 ...
GitHub - Droidtown/KeyMojiAPI: KeyMoji (關鍵情緒偵測引擎) 是個具有模型解釋性且禁得住科學驗證的中文文本情緒分析系統。利用將語言學Rule-based 和...