mirror of
https://github.com/gsi-upm/senpy
synced 2025-07-06 20:22:22 +00:00
* Fixed Options for extra_params in UI * Enhanced meta-programming for models * Plugins can be imported from a python file if they're named `senpy_<whatever>.py>` (no need for `.senpy` anymore!) * Add docstings and tests to most plugins * Read plugin description from the docstring * Refactor code to get rid of unnecessary `.senpy`s * Load models, plugins and utils into the main namespace (see __init__.py) * Enhanced plugin development/experience with utils (easy_test, easy_serve) * Fix bug in check_template that wouldn't check objects * Make model defaults a private variable * Add option to list loaded plugins in CLI * Update docs
24 lines
674 B
Python
24 lines
674 B
Python
#!/usr/local/bin/python
|
|
# coding: utf-8
|
|
|
|
emoticons = {
|
|
'marl:Positive': [':)', ':]', '=)', ':D'],
|
|
'marl:Negative': [':(', ':[', '=(']
|
|
}
|
|
|
|
emojis = {
|
|
'marl:Positive': ['😁', '😂', '😃', '😄', '😆', '😅', '😄' '😍'],
|
|
'marl:Negative': ['😢', '😡', '😠', '😞', '😖', '😔', '😓', '😒']
|
|
}
|
|
|
|
|
|
def get_polarity(text, dictionaries=[emoticons, emojis]):
|
|
polarity = 'marl:Neutral'
|
|
for dictionary in dictionaries:
|
|
for label, values in dictionary.items():
|
|
for emoticon in values:
|
|
if emoticon and emoticon in text:
|
|
polarity = label
|
|
break
|
|
return polarity
|