mirror of
https://github.com/gsi-upm/senpy
synced 2024-11-22 00:02:28 +00:00
V 0.2.2 - Better plugins
This commit is contained in:
parent
8405e5deef
commit
e06fc2e671
@ -18,13 +18,15 @@
|
|||||||
Sentiment analysis server in Python
|
Sentiment analysis server in Python
|
||||||
'''
|
'''
|
||||||
|
|
||||||
from blueprints import nif_blueprint
|
import extensions
|
||||||
from extensions import Senpy
|
import blueprints
|
||||||
|
import plugins
|
||||||
|
|
||||||
|
|
||||||
if __name__ == '__main__':
|
if __name__ == '__main__':
|
||||||
from flask import Flask
|
from flask import Flask
|
||||||
app = Flask(__name__)
|
app = Flask(__name__)
|
||||||
app.register_blueprint(nif_server)
|
sp = extensions.Senpy()
|
||||||
|
sp.init_app(app)
|
||||||
app.debug = config.DEBUG
|
app.debug = config.DEBUG
|
||||||
app.run()
|
app.run()
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
from flask import Flask
|
from flask import Flask
|
||||||
from extensions import Senpy
|
from extensions import Senpy
|
||||||
app = Flask(__name__)
|
app = Flask(__name__)
|
||||||
app.debug = True
|
|
||||||
sp = Senpy()
|
sp = Senpy()
|
||||||
sp.init_app(app)
|
sp.init_app(app)
|
||||||
|
app.debug = True
|
||||||
app.run()
|
app.run()
|
||||||
|
@ -55,8 +55,10 @@ PARAMS = {"input": {"aliases": ["i", "input"],
|
|||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
|
def get_algorithm(req):
|
||||||
|
return get_params(req, params={"algorithm": PARAMS["algorithm"]})
|
||||||
|
|
||||||
def get_params(req):
|
def get_params(req, params=PARAMS):
|
||||||
indict = None
|
indict = None
|
||||||
if req.method == 'POST':
|
if req.method == 'POST':
|
||||||
indict = req.form
|
indict = req.form
|
||||||
@ -67,20 +69,20 @@ def get_params(req):
|
|||||||
|
|
||||||
outdict = {}
|
outdict = {}
|
||||||
wrongParams = {}
|
wrongParams = {}
|
||||||
for param, options in PARAMS.iteritems():
|
for param, options in params.iteritems():
|
||||||
for alias in options["aliases"]:
|
for alias in options["aliases"]:
|
||||||
if alias in indict:
|
if alias in indict:
|
||||||
outdict[param] = indict[alias]
|
outdict[param] = indict[alias]
|
||||||
if param not in outdict:
|
if param not in outdict:
|
||||||
if options.get("required", False):
|
if options.get("required", False):
|
||||||
wrongParams[param] = PARAMS[param]
|
wrongParams[param] = params[param]
|
||||||
else:
|
else:
|
||||||
if "default" in options:
|
if "default" in options:
|
||||||
outdict[param] = options["default"]
|
outdict[param] = options["default"]
|
||||||
else:
|
else:
|
||||||
if "options" in PARAMS[param] and \
|
if "options" in params[param] and \
|
||||||
outdict[param] not in PARAMS[param]["options"]:
|
outdict[param] not in params[param]["options"]:
|
||||||
wrongParams[param] = PARAMS[param]
|
wrongParams[param] = params[param]
|
||||||
if wrongParams:
|
if wrongParams:
|
||||||
message = {"status": "failed", "message": "Missing or invalid parameters"}
|
message = {"status": "failed", "message": "Missing or invalid parameters"}
|
||||||
message["parameters"] = outdict
|
message["parameters"] = outdict
|
||||||
@ -111,7 +113,10 @@ def basic_analysis(params):
|
|||||||
@nif_blueprint.route('/', methods=['POST', 'GET'])
|
@nif_blueprint.route('/', methods=['POST', 'GET'])
|
||||||
def home(entries=None):
|
def home(entries=None):
|
||||||
try:
|
try:
|
||||||
params = get_params(request)
|
algo = get_algorithm(request)["algorithm"]
|
||||||
|
specific_params = PARAMS.copy()
|
||||||
|
specific_params.update(current_app.senpy.parameters(algo))
|
||||||
|
params = get_params(request, specific_params)
|
||||||
except ValueError as ex:
|
except ValueError as ex:
|
||||||
return ex.message
|
return ex.message
|
||||||
response = current_app.senpy.analyse(**params)
|
response = current_app.senpy.analyse(**params)
|
||||||
@ -127,7 +132,7 @@ def plugins(plugin=None, action="list"):
|
|||||||
else:
|
else:
|
||||||
plugs = current_app.senpy.plugins
|
plugs = current_app.senpy.plugins
|
||||||
if action == "list":
|
if action == "list":
|
||||||
dic = {plug:plugs[plug].enabled for plug in plugs}
|
dic = {plug:plugs[plug].jsonable(True) for plug in plugs}
|
||||||
return jsonify(dic)
|
return jsonify(dic)
|
||||||
elif action == "disable":
|
elif action == "disable":
|
||||||
plugs[plugin].enabled = False
|
plugs[plugin].enabled = False
|
||||||
|
38
senpy/context.jsonld
Normal file
38
senpy/context.jsonld
Normal file
@ -0,0 +1,38 @@
|
|||||||
|
{
|
||||||
|
"dc": "http://purl.org/dc/terms/",
|
||||||
|
"dc:subject": {
|
||||||
|
"@type": "@id"
|
||||||
|
},
|
||||||
|
"xsd": "http://www.w3.org/2001/XMLSchema#",
|
||||||
|
"marl": "http://www.gsi.dit.upm.es/ontologies/marl/ns#",
|
||||||
|
"nif": "http://persistence.uni-leipzig.org/nlp2rdf/ontologies/nif-core#",
|
||||||
|
"onyx": "http://www.gsi.dit.upm.es/ontologies/onyx/ns#",
|
||||||
|
"emotions": {
|
||||||
|
"@id": "onyx:hasEmotionSet",
|
||||||
|
"@type": "onyx:EmotionSet"
|
||||||
|
},
|
||||||
|
"opinions": {
|
||||||
|
"@container": "@list",
|
||||||
|
"@id": "marl:hasOpinion",
|
||||||
|
"@type": "marl:Opinion"
|
||||||
|
},
|
||||||
|
"prov": "http://www.w3.org/ns/prov#",
|
||||||
|
"rdfs": "http://www.w3.org/2000/01/rdf-schema#",
|
||||||
|
"analysis": {
|
||||||
|
"@id": "prov:wasInformedBy"
|
||||||
|
},
|
||||||
|
"entries": {
|
||||||
|
"@id": "prov:generated"
|
||||||
|
},
|
||||||
|
"strings": {
|
||||||
|
"@reverse": "nif:hasContext",
|
||||||
|
"@type": "nif:String"
|
||||||
|
},
|
||||||
|
"date":
|
||||||
|
{
|
||||||
|
"@id": "dc:date",
|
||||||
|
"@type": "xsd:dateTime"
|
||||||
|
},
|
||||||
|
"wnaffect": "http://www.gsi.dit.upm.es/ontologies/wnaffect#",
|
||||||
|
"xsd": "http://www.w3.org/2001/XMLSchema#"
|
||||||
|
}
|
@ -44,13 +44,21 @@ class Senpy(object):
|
|||||||
if "algorithm" in params:
|
if "algorithm" in params:
|
||||||
algo = params["algorithm"]
|
algo = params["algorithm"]
|
||||||
if algo in self.plugins and self.plugins[algo].enabled:
|
if algo in self.plugins and self.plugins[algo].enabled:
|
||||||
return self.plugins[algo].plugin.analyse(**params)
|
plug = self.plugins[algo]
|
||||||
|
resp = plug.analyse(**params)
|
||||||
|
resp.analysis.append(plug.jsonable())
|
||||||
|
return resp
|
||||||
return {"status": 500, "message": "No valid algorithm"}
|
return {"status": 500, "message": "No valid algorithm"}
|
||||||
|
|
||||||
|
def parameters(self, algo):
|
||||||
|
if algo in self.plugins:
|
||||||
|
if hasattr(self.plugins[algo], "parameters"):
|
||||||
|
return self.plugins[algo].parameters
|
||||||
|
return {}
|
||||||
|
|
||||||
def _load_plugin(self, plugin, search_folder, enabled=True):
|
def _load_plugin(self, plugin, search_folder, enabled=True):
|
||||||
sys.path.append(search_folder)
|
sys.path.append(search_folder)
|
||||||
tmp = importlib.import_module(plugin)
|
tmp = importlib.import_module(plugin).plugin
|
||||||
sys.path.remove(search_folder)
|
sys.path.remove(search_folder)
|
||||||
tmp.path = search_folder
|
tmp.path = search_folder
|
||||||
try:
|
try:
|
||||||
@ -95,7 +103,6 @@ class Senpy(object):
|
|||||||
if ctx is not None:
|
if ctx is not None:
|
||||||
if not hasattr(self, '_plugins'):
|
if not hasattr(self, '_plugins'):
|
||||||
self._plugins = self._load_plugins()
|
self._plugins = self._load_plugins()
|
||||||
print("Already plugins")
|
|
||||||
return self._plugins
|
return self._plugins
|
||||||
|
|
||||||
if __name__ == '__main__':
|
if __name__ == '__main__':
|
||||||
|
59
senpy/models.py
Normal file
59
senpy/models.py
Normal file
@ -0,0 +1,59 @@
|
|||||||
|
import json
|
||||||
|
import os
|
||||||
|
from collections import defaultdict
|
||||||
|
|
||||||
|
class Leaf(defaultdict):
|
||||||
|
def __init__(self, ofclass=list):
|
||||||
|
super(Leaf, self).__init__(ofclass)
|
||||||
|
|
||||||
|
def __getattr__(self, name):
|
||||||
|
return super(Leaf, self).__getitem__(name)
|
||||||
|
|
||||||
|
def __setattr__(self, name, value):
|
||||||
|
self[name] = value
|
||||||
|
|
||||||
|
def __delattr__(self, name):
|
||||||
|
return super(Leaf, self).__delitem__(name)
|
||||||
|
|
||||||
|
class Response(Leaf):
|
||||||
|
def __init__(self, context=None):
|
||||||
|
super(Response, self).__init__()
|
||||||
|
self["analysis"] = []
|
||||||
|
self["entries"] = []
|
||||||
|
if context is None:
|
||||||
|
context = "{}/context.jsonld".format(os.path.dirname(
|
||||||
|
os.path.realpath(__file__)))
|
||||||
|
if isinstance(context, dict):
|
||||||
|
self["@context"] = context
|
||||||
|
if isinstance(context, basestring):
|
||||||
|
try:
|
||||||
|
with open(context) as f:
|
||||||
|
self["@context"] = json.loads(f.read())
|
||||||
|
except IOError:
|
||||||
|
self["@context"] = context
|
||||||
|
|
||||||
|
|
||||||
|
class Entry(Leaf):
|
||||||
|
def __init__(self, text=None, emotionSets=None, opinions=None, **kwargs):
|
||||||
|
super(Entry, self).__init__(**kwargs)
|
||||||
|
if text:
|
||||||
|
self.text = text
|
||||||
|
if emotionSets:
|
||||||
|
self.emotionSets = emotionSets
|
||||||
|
if opinions:
|
||||||
|
self.opinions = opinions
|
||||||
|
|
||||||
|
class Opinion(Leaf):
|
||||||
|
def __init__(self, polarityValue=None, polarity=None, **kwargs):
|
||||||
|
super(Opinion, self).__init__(**kwargs)
|
||||||
|
if polarityValue is not None:
|
||||||
|
self.polarityValue = polarityValue
|
||||||
|
if polarity is not None:
|
||||||
|
self.polarity = polarity
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
class EmotionSet(Leaf):
|
||||||
|
def __init__(self, emotions=[], **kwargs):
|
||||||
|
super(EmotionSet, self).__init__(**kwargs)
|
||||||
|
self.emotions = emotions or []
|
@ -1,34 +0,0 @@
|
|||||||
class SenpyPlugin(object):
|
|
||||||
def __init__(self, name=None, version=None, params=None):
|
|
||||||
self.name = name
|
|
||||||
self.version = version
|
|
||||||
self.params = params or []
|
|
||||||
|
|
||||||
def analyse(self, *args, **kwargs):
|
|
||||||
pass
|
|
||||||
|
|
||||||
def activate(self):
|
|
||||||
pass
|
|
||||||
|
|
||||||
def deactivate(self):
|
|
||||||
pass
|
|
||||||
|
|
||||||
class SentimentPlugin(SenpyPlugin):
|
|
||||||
def __init__(self,
|
|
||||||
minPolarity=0,
|
|
||||||
maxPolarity=1,
|
|
||||||
**kwargs):
|
|
||||||
super(SentimentPlugin, self).__init__(**kwargs)
|
|
||||||
self.minPolarity = minPolarity
|
|
||||||
self.maxPolarity = maxPolarity
|
|
||||||
|
|
||||||
class EmotionPlugin(SenpyPlugin):
|
|
||||||
def __init__(self,
|
|
||||||
minEmotionValue=0,
|
|
||||||
maxEmotionValue=1,
|
|
||||||
emotionCategory=None,
|
|
||||||
**kwargs):
|
|
||||||
super(EmotionPlugin, self).__init__(**kwargs)
|
|
||||||
self.minEmotionValue = minEmotionValue
|
|
||||||
self.maxEmotionValue = maxEmotionValue
|
|
||||||
self.emotionCategory = emotionCategory
|
|
@ -0,0 +1,54 @@
|
|||||||
|
class SenpyPlugin(object):
|
||||||
|
def __init__(self, name=None, version=None, params=None):
|
||||||
|
self.name = name
|
||||||
|
self.version = version
|
||||||
|
self.params = params or []
|
||||||
|
|
||||||
|
def analyse(self, *args, **kwargs):
|
||||||
|
pass
|
||||||
|
|
||||||
|
def activate(self):
|
||||||
|
pass
|
||||||
|
|
||||||
|
def deactivate(self):
|
||||||
|
pass
|
||||||
|
|
||||||
|
def jsonable(self, parameters=False):
|
||||||
|
resp = {
|
||||||
|
"@id": "{}_{}".format(self.name, self.version),
|
||||||
|
}
|
||||||
|
if parameters:
|
||||||
|
resp["parameters"] = self.params,
|
||||||
|
return resp
|
||||||
|
|
||||||
|
class SentimentPlugin(SenpyPlugin):
|
||||||
|
def __init__(self,
|
||||||
|
minPolarityValue=0,
|
||||||
|
maxPolarityValue=1,
|
||||||
|
**kwargs):
|
||||||
|
super(SentimentPlugin, self).__init__(**kwargs)
|
||||||
|
self.minPolarityValue = minPolarityValue
|
||||||
|
self.maxPolarityValue = maxPolarityValue
|
||||||
|
|
||||||
|
def jsonable(self, *args, **kwargs):
|
||||||
|
resp = super(SentimentPlugin, self).jsonable(*args, **kwargs)
|
||||||
|
resp["marl:maxPolarityValue"] = self.maxPolarityValue
|
||||||
|
resp["marl:minPolarityValue"] = self.minPolarityValue
|
||||||
|
return resp
|
||||||
|
|
||||||
|
class EmotionPlugin(SenpyPlugin):
|
||||||
|
def __init__(self,
|
||||||
|
minEmotionValue=0,
|
||||||
|
maxEmotionValue=1,
|
||||||
|
emotionCategory=None,
|
||||||
|
**kwargs):
|
||||||
|
super(EmotionPlugin, self).__init__(**kwargs)
|
||||||
|
self.minEmotionValue = minEmotionValue
|
||||||
|
self.maxEmotionValue = maxEmotionValue
|
||||||
|
self.emotionCategory = emotionCategory
|
||||||
|
|
||||||
|
def jsonable(self, *args, **kwargs):
|
||||||
|
resp = super(EmotionPlugin, self).jsonable(*args, **kwargs)
|
||||||
|
resp["onyx:minEmotionValue"] = self.minEmotionValue
|
||||||
|
resp["onyx:maxEmotionValue"] = self.maxEmotionValue
|
||||||
|
return resp
|
@ -4,26 +4,31 @@ import json
|
|||||||
import sys
|
import sys
|
||||||
|
|
||||||
print(sys.path)
|
print(sys.path)
|
||||||
from senpy.plugin import SentimentPlugin
|
from senpy.plugins import SentimentPlugin
|
||||||
|
from senpy.models import Response, Opinion, Entry
|
||||||
|
|
||||||
class Sentiment140Plugin(SentimentPlugin):
|
class Sentiment140Plugin(SentimentPlugin):
|
||||||
|
parameters = {
|
||||||
|
"language": {"aliases": ["language", "l"],
|
||||||
|
"required": False,
|
||||||
|
"options": ["es", "en", "auto"],
|
||||||
|
}
|
||||||
|
}
|
||||||
def __init__(self, **kwargs):
|
def __init__(self, **kwargs):
|
||||||
super(Sentiment140Plugin, self).__init__(name="Sentiment140",
|
super(Sentiment140Plugin, self).__init__(name="Sentiment140",
|
||||||
version="1.0",
|
version="1.0",
|
||||||
**kwargs)
|
**kwargs)
|
||||||
|
|
||||||
def analyse(self, **params):
|
def analyse(self, **params):
|
||||||
|
lang = params.get("language", "auto")
|
||||||
res = requests.post("http://www.sentiment140.com/api/bulkClassifyJson",
|
res = requests.post("http://www.sentiment140.com/api/bulkClassifyJson",
|
||||||
json.dumps({
|
json.dumps({
|
||||||
"language": "auto",
|
"language": lang,
|
||||||
"data": [{"text": params["input"]}]}
|
"data": [{"text": params["input"]}]}
|
||||||
))
|
))
|
||||||
|
|
||||||
|
|
||||||
response = {"analysis": [{}], "entries": []}
|
response = Response()
|
||||||
response["analysis"][0].update({ "marl:algorithm": "SimpleAlgorithm",
|
|
||||||
"marl:minPolarityValue": 0,
|
|
||||||
"marl:maxPolarityValue": 100})
|
|
||||||
polarityValue = int(res.json()["data"][0]["polarity"]) * 25
|
polarityValue = int(res.json()["data"][0]["polarity"]) * 25
|
||||||
polarity = "marl:Neutral"
|
polarity = "marl:Neutral"
|
||||||
if polarityValue > 50:
|
if polarityValue > 50:
|
||||||
@ -31,17 +36,12 @@ class Sentiment140Plugin(SentimentPlugin):
|
|||||||
elif polarityValue < 50:
|
elif polarityValue < 50:
|
||||||
polarity = "marl:Negative"
|
polarity = "marl:Negative"
|
||||||
|
|
||||||
response["entries"] = [
|
|
||||||
{
|
|
||||||
"isString": params["input"],
|
|
||||||
"opinions": [{
|
|
||||||
"marl:polarityValue": polarityValue,
|
|
||||||
"marl:hasPolarity": polarity
|
|
||||||
|
|
||||||
}]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
|
|
||||||
|
entry = Entry(text=params["input"])
|
||||||
|
opinion = Opinion(polarity=polarity, polarityValue=polarityValue)
|
||||||
|
entry.opinions.append(opinion)
|
||||||
|
entry.language = lang
|
||||||
|
response.entries.append(entry)
|
||||||
return response
|
return response
|
||||||
|
|
||||||
|
|
||||||
|
7
setup.py
7
setup.py
@ -1,8 +1,9 @@
|
|||||||
from distutils.core import setup
|
from setuptools import setup
|
||||||
|
|
||||||
setup(
|
setup(
|
||||||
name = 'senpy',
|
name = 'senpy',
|
||||||
packages = ['senpy'], # this must be the same as the name above
|
packages = ['senpy'], # this must be the same as the name above
|
||||||
version = '0.2',
|
version = '0.2.2',
|
||||||
description = '''
|
description = '''
|
||||||
A sentiment analysis server implementation. Designed to be \
|
A sentiment analysis server implementation. Designed to be \
|
||||||
extendable, so new algorithms and sources can be used.
|
extendable, so new algorithms and sources can be used.
|
||||||
@ -10,7 +11,7 @@ extendable, so new algorithms and sources can be used.
|
|||||||
author = 'J. Fernando Sanchez',
|
author = 'J. Fernando Sanchez',
|
||||||
author_email = 'balkian@gmail.com',
|
author_email = 'balkian@gmail.com',
|
||||||
url = 'https://github.com/balkian/senpy', # use the URL to the github repo
|
url = 'https://github.com/balkian/senpy', # use the URL to the github repo
|
||||||
download_url = 'https://github.com/balkian/senpy/archive/0.2.tar.gz', # I'll explain this in a second
|
download_url = 'https://github.com/balkian/senpy/archive/0.2.2.tar.gz',
|
||||||
keywords = ['eurosentiment', 'sentiment', 'emotions', 'nif'], # arbitrary keywords
|
keywords = ['eurosentiment', 'sentiment', 'emotions', 'nif'], # arbitrary keywords
|
||||||
classifiers = [],
|
classifiers = [],
|
||||||
)
|
)
|
||||||
|
Loading…
Reference in New Issue
Block a user