mirror of
https://github.com/gsi-upm/senpy
synced 2024-11-22 00:02:28 +00:00
Fixed some code problems
This commit is contained in:
parent
38b478890b
commit
530982be62
@ -17,7 +17,10 @@ class maxSentiment(AnalysisPlugin):
|
||||
}
|
||||
|
||||
def analyse_entry(self, entry, params):
|
||||
if params["max"]==True:
|
||||
if not params["max"]:
|
||||
yield entry
|
||||
return
|
||||
|
||||
set_emotions= entry.emotions[0]['onyx:hasEmotion']
|
||||
max_emotion =set_emotions[0]
|
||||
|
||||
@ -38,15 +41,11 @@ class maxSentiment(AnalysisPlugin):
|
||||
#print(entry)
|
||||
yield entry
|
||||
|
||||
|
||||
|
||||
|
||||
# Test Cases:
|
||||
# 1º Normal Situation.
|
||||
# 2º Case to return a Neutral Emotion.
|
||||
# 1 Normal Situation.
|
||||
# 2 Case to return a Neutral Emotion.
|
||||
test_cases = [{
|
||||
"entry": {
|
||||
"@id": "#",
|
||||
"@type": "entry",
|
||||
"emotions": [
|
||||
{
|
||||
@ -83,23 +82,16 @@ class maxSentiment(AnalysisPlugin):
|
||||
"onyx:hasEmotionCategory": "disgust",
|
||||
"onyx:hasEmotionIntensity": 0
|
||||
}
|
||||
],
|
||||
'prov:wasGeneratedBy':"maxSentiment_plugin"
|
||||
]
|
||||
|
||||
}
|
||||
},
|
||||
],
|
||||
"entities": [],
|
||||
"nif:isString": "This text makes me sad.\nwhilst this text makes me happy and surprised at the same time.\nI cannot believe it!",
|
||||
"sentiments": [],
|
||||
"suggestions": [],
|
||||
"topics": []
|
||||
|
||||
"nif:isString": "This text makes me sad.\nwhilst this text makes me happy and surprised at the same time.\nI cannot believe it!"
|
||||
},
|
||||
'params': {
|
||||
'max': True
|
||||
},
|
||||
'expected' : {
|
||||
"@id": "#",
|
||||
"@type": "entry",
|
||||
"emotions": [
|
||||
{
|
||||
@ -112,19 +104,15 @@ class maxSentiment(AnalysisPlugin):
|
||||
"onyx:hasEmotionCategory": "joy",
|
||||
"onyx:hasEmotionIntensity": 0.3333333333333333
|
||||
}
|
||||
]
|
||||
],
|
||||
"prov:wasGeneratedBy" : 'maxSentiment'
|
||||
}
|
||||
],
|
||||
"entities": [],
|
||||
"nif:isString": "This text makes me sad.\nwhilst this text makes me happy and surprised at the same time.\nI cannot believe it!",
|
||||
"sentiments": [],
|
||||
"suggestions": [],
|
||||
"topics": []
|
||||
"nif:isString": "This text makes me sad.\nwhilst this text makes me happy and surprised at the same time.\nI cannot believe it!"
|
||||
}
|
||||
},
|
||||
{
|
||||
"entry": {
|
||||
"@id": "#",
|
||||
"@type": "entry",
|
||||
"emotions": [
|
||||
{
|
||||
@ -161,23 +149,17 @@ class maxSentiment(AnalysisPlugin):
|
||||
"onyx:hasEmotionCategory": "disgust",
|
||||
"onyx:hasEmotionIntensity": 0
|
||||
}
|
||||
],
|
||||
'prov:wasGeneratedBy':"maxSentiment_plugin"
|
||||
]
|
||||
|
||||
}
|
||||
],
|
||||
"entities": [],
|
||||
"nif:isString": "This text makes me sad.\nwhilst this text makes me happy and surprised at the same time.\nI cannot believe it!",
|
||||
"sentiments": [],
|
||||
"suggestions": [],
|
||||
"topics": []
|
||||
|
||||
"nif:isString": "This text makes me sad.\nwhilst this text makes me happy and surprised at the same time.\nI cannot believe it!"
|
||||
},
|
||||
'params': {
|
||||
'max': True
|
||||
},
|
||||
'expected' : {
|
||||
"@id": "#",
|
||||
|
||||
"@type": "entry",
|
||||
"emotions": [
|
||||
{
|
||||
@ -190,14 +172,11 @@ class maxSentiment(AnalysisPlugin):
|
||||
"onyx:hasEmotionCategory": "neutral",
|
||||
"onyx:hasEmotionIntensity": 1
|
||||
}
|
||||
]
|
||||
],
|
||||
"prov:wasGeneratedBy" : 'maxSentiment'
|
||||
}
|
||||
],
|
||||
"entities": [],
|
||||
"nif:isString": "This text makes me sad.\nwhilst this text makes me happy and surprised at the same time.\nI cannot believe it!",
|
||||
"sentiments": [],
|
||||
"suggestions": [],
|
||||
"topics": []
|
||||
"nif:isString": "This text makes me sad.\nwhilst this text makes me happy and surprised at the same time.\nI cannot believe it!"
|
||||
}
|
||||
|
||||
}]
|
||||
|
Loading…
Reference in New Issue
Block a user