-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathclients.py
189 lines (164 loc) · 7.31 KB
/
clients.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
#!/usr/bin/python
# -*- coding: utf-8 -*-
# Copyright 2014 J. Fernando Sánchez Rada - Grupo de Sistemas Inteligentes
# DIT, UPM
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
'''
Wrappers around the EUROSENTIMENT APIs.
'''
from __future__ import print_function
import requests
import json
import logging
logger = logging.getLogger()
GET_REVIEWS = '''\
PREFIX nif: <http://persistence.uni-leipzig.org/nlp2rdf/ontologies/nif-core#>
PREFIX marl: <http://www.gsi.dit.upm.es/ontologies/marl/ns#>
SELECT DISTINCT * from <{graph}>
WHERE {{ ?context a nif:Context .
?context nif:isString ?string .
?context marl:hasOpinion ?opinion .
?opinion marl:polarityValue ?polarityValue .
?opinion marl:hasPolarity ?polarity .
FILTER (REGEX(?string, "{filter}"))}} LIMIT {limit}'''
DESCRIBE_OBJECT = '''\
PREFIX nif: <http://persistence.uni-leipzig.org/nlp2rdf/ontologies/nif-core#>
PREFIX marl: <http://www.gsi.dit.upm.es/ontologies/marl/ns#>
SELECT DISTINCT ?property ?value from <{graph}>
WHERE {{ <{target}> ?property ?value. }} LIMIT {limit}'''
GET_ANCHORS = '''\
PREFIX nif: <http://persistence.uni-leipzig.org/nlp2rdf/ontologies/nif-core#>
PREFIX marl: <http://www.gsi.dit.upm.es/ontologies/marl/ns#>
SELECT ?anchor ?category (count(?anchor) as ?count) from <{graph}>
WHERE {{ ?s nif:anchorOf ?anchor .
?s nif:posTag ?category .
FILTER (?category IN ("NC", "ADJ", "ADV", "RB", "NN", "JJ"))
FILTER(!str(?anchor) = "")
}} ORDER BY desc(?count) LIMIT {limit}'''
GET_SENTIMENTS = '''\
PREFIX lemon: <http://lemon-model.net/lemon#>
PREFIX marl: <http://purl.org/marl/ns/>
SELECT DISTINCT ?sense ?context ?polarityValue ?polarity from <{graph}>
WHERE {{
?sentimentEntry lemon:sense ?sense .
?sense marl:polarityValue ?polarityValue .
?sense marl:hasPolarity ?polarity .
?sense lemon:reference ?reference .
?sense lemon:context ?context .
?entryWithSentiment lemon:sense ?context .
?entryWithSentiment lemon:canonicalForm ?cf .
?cf lemon:writtenRep "{word}"@{lang} .
}} limit {limit}'''
CORPORA = {
"es": {
"hotel": "http://www.eurosentiment.eu/dataset/hotel/es/paradigma/0019/corpus",
"electronics": "http://www.eurosentiment.eu/dataset/electronics/es/paradigma/0015/corpus"
},
"en": {
"hotel": "http://www.eurosentiment.eu/dataset/electronics/en/paradigma/0014/corpus",
"electronics": "http://www.eurosentiment.eu/dataset/hotel/en/paradigma/0018/corpus"
}
}
LEXICA = {
"es": {
"hotel": "http://www.eurosentiment.eu/dataset/hotel/es/paradigma/0019/lexicon",
"electronics": "http://www.eurosentiment.eu/dataset/electronics/es/paradigma/0015/lexicon"
},
"en": {
"hotel": "http://www.eurosentiment.eu/dataset/electronics/en/paradigma/0014/lexicon",
"electronics": "http://www.eurosentiment.eu/dataset/hotel/en/paradigma/0018/lexicon"
}
}
class ResourceClient(object):
def __init__(self,
token,
graph,
endpoint='http://54.201.101.125/sparql/'):
self.graph = graph
self.token = token
self.endpoint = endpoint
def request(self, input):
headers = {"x-eurosentiment-token": self.token,
"content-type":"application/json"}
data = {"query": input,
"format": "application/json"}
logger.debug("Query is {}".format(input))
logger.debug("Endpoint is {}".format(self.endpoint))
response = requests.post(self.endpoint,
data=json.dumps(data),
headers=headers)
return json.loads(response.content)
def get_objects(self, *args, **kwargs):
response = self.request(*args, **kwargs)
entries = []
logger.debug("Response: ", response)
for r in response["results"]["bindings"]:
entries.append({key:r[key]["value"] for key in r })
return entries
def get_object(self, target, limit=100 ):
response = self.request(DESCRIBE_OBJECT.format(graph=self.graph,
limit=limit,
target=target))
a = {"@id": target}
for r in response["results"]["bindings"]:
key = r["property"]["value"]
value = r["value"]["value"]
if key in a:
_temp = a[key]
a[key] = [_temp, value]
else:
a[key] = value
return a
class CorpusClient(ResourceClient):
def __init__(self, token=None, lang="es", domain="hotel", **kwargs):
super(CorpusClient, self).__init__(graph=CORPORA[lang][domain],
token=token,
**kwargs)
def get_reviews(self, filter="", limit=100):
results = self.get_objects(GET_REVIEWS.format(filter=filter,
graph=self.graph,
limit=limit))
return results
def get_anchors(self, limit=100):
results = self.get_objects(GET_ANCHORS.format(graph=self.graph,
limit=limit))
return results
class LexiconClient(ResourceClient):
def __init__(self, token=None, lang="es", domain="hotel", **kwargs):
super(LexiconClient, self).__init__(graph=LEXICA[lang][domain],
token=token,
**kwargs)
def get_sentiments(self, word="",
lang="es",
graph=LEXICA["es"]["hotel"],
limit=100):
results = self.get_objects(GET_SENTIMENTS.format(word=word,
graph=graph,
limit=limit,
lang=lang))
return results
def test():
logging.basicConfig()
logger.setLevel(logging.DEBUG)
import config
import pprint
pp = pprint.PrettyPrinter(indent=4)
c = CorpusClient(lang="en", domain="hotel", token=config.TOKEN)
l = LexiconClient(config.TOKEN, "en", "hotel")
anchors = c.get_anchors()
logger.debug("Anchors")
logger.debug(anchors)
sentiments = l.get_sentiments(anchors[2]["anchor"])
logger.debug("Sentiments")
logger.debug(sentiments)