Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
senpy
senpy
Commits
e7ac6e66
Commit
e7ac6e66
authored
May 29, 2017
by
drevicko
Committed by
GitHub
May 29, 2017
Browse files
update _forward_conversion docstring + minor edits
parent
dcc965ea
Changes
1
Show whitespace changes
Inline
Side-by-side
senpy/plugins/conversion/centroids.py
View file @
e7ac6e66
...
...
@@ -35,17 +35,20 @@ class CentroidConversion(EmotionConversionPlugin):
super
(
CentroidConversion
,
self
).
__init__
(
info
)
def
_forward_conversion
(
self
,
original
):
"""Sum the VAD value of all categories found weighted by intensity. """
"""Sum the VAD value of all categories found weighted by intensity.
Intensities are scaled by onyx:maxIntensityValue if it is present, else maxIntensityValue is assumed to be one.
Emotion entries that do not have onxy:hasEmotionIntensity specified are assumed to have maxIntensityValue.
Emotion entries that do not have onyx:hasEmotionCategory specified are ignored."""
res
=
Emotion
()
maxIntensity
=
float
(
original
.
get
(
"onyx__maxIntensityValue"
,
1
))
sumIntensities
=
0
neutralPoint
=
self
.
get
(
"origin"
,
None
)
for
e
in
original
.
onyx__hasEmotion
:
category
=
e
.
onyx__hasEmotionCategory
category
=
e
.
get
(
"onyx__hasEmotionCategory"
,
None
)
if
category
is
None
:
continue
intensity
=
e
.
get
(
"onyx__hasEmotionIntensity"
,
maxIntensity
)
/
maxIntensity
if
intensity
==
0
:
continue
sumIntensities
+=
intensity
centoid
=
self
.
centroids
.
get
(
category
,
None
)
if
centroid
:
for
dim
,
value
in
centroid
.
items
():
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment