-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.py
350 lines (310 loc) · 11.4 KB
/
main.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
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
from fastapi import FastAPI
from fastapi import Response
from fastapi.responses import FileResponse
from fastapi.staticfiles import StaticFiles
from rdflib import Graph, Namespace, Literal
from rdflib.plugins.sparql import prepareQuery
storage = "kg/emofinder_kg.nt"
g = Graph()
g.parse(storage, format="ntriples")
EMOFIND = Namespace("https://www.usc.gal/pcc/app/emofinder/")
#query bases
q1 = prepareQuery('''
SELECT
?nombre ?articulo ?enlace (GROUP_CONCAT(distinct ?tipoanotacion; SEPARATOR = ", ") AS ?anotaciones)
WHERE {
?base rdf:type emofind:WordDatabase .
?base emofind:name ?nombre .
?base emofind:article ?articulo .
?base emofind:articleLink ?enlace .
?anotacion rdf:type ?tipoanotacion .
?anotacion emofind:extractedFrom ?base .
FILTER(?tipoanotacion != emofind:Annotation)
FILTER(?tipoanotacion != emofind:EmotionalDimention)
FILTER(?tipoanotacion != emofind:EmotionalCategory)
FILTER(?tipoanotacion != emofind:OtherProperties)
FILTER(?tipoanotacion != emofind:RecognitionTime)
}
GROUP BY ?nombre ?articulo ?enlace
''',
initNs = { "emofind": EMOFIND}
)
#querys ejemplos
e1 = prepareQuery('''
SELECT
?nombre ?mediav
WHERE {
?anotacion rdf:type emofind:Valence .
?anotacion emofind:affects ?palabra .
?anotacion emofind:mean ?mediav .
?palabra emofind:name ?nombre
FILTER (LANG(?nombre) = "es")
FILTER (?mediav > 8.5)
}
''',
initNs = { "emofind": EMOFIND}
)
e2 = prepareQuery('''
SELECT
?nombre ?valor_tdl ?valor_naming
WHERE {
?anotacion1 rdf:type emofind:TimeTdl .
?anotacion1 emofind:affects ?palabra .
?anotacion1 emofind:value ?valor_tdl .
FILTER (?valor_tdl > 570) .
?anotacion2 rdf:type emofind:TimeNaming .
?anotacion2 emofind:affects ?palabra .
?anotacion2 emofind:value ?valor_naming .
?palabra emofind:name ?nombre .
FILTER (LANG(?nombre) = "es") .
FILTER (?valor_naming < 490)
}
''',
initNs = { "emofind": EMOFIND}
)
e3 = prepareQuery('''
SELECT
?nombre ?media ?desviacion_tipica
WHERE {
?anotacion rdf:type emofind:Anger .
?anotacion emofind:affects ?palabra .
?anotacion emofind:mean ?media .
?anotacion emofind:standarDeviation ?desviacion_tipica .
?palabra emofind:name ?nombre .
FILTER (LANG(?nombre) = "es") .
FILTER (?media < 1.5) .
FILTER (?desviacion_tipica < 0.2) .
}
''',
initNs = { "emofind": EMOFIND}
)
e4 = prepareQuery('''
SELECT
?nombre ?media
WHERE {
?anotacion rdf:type emofind:ContextualAvailability .
?anotacion emofind:affects ?palabra .
?anotacion emofind:mean ?media .
?palabra emofind:name ?nombre .
FILTER (LANG(?nombre) = "es") .
FILTER (?media >= 3.5 && ?media <= 4 )
}
''',
initNs = { "emofind": EMOFIND}
)
e5 = prepareQuery('''
SELECT
?nombre ?articulo ?enlace
WHERE {
?base rdf:type emofind:WordDatabase .
?base emofind:name ?nombre .
?base emofind:article ?articulo .
?base emofind:articleLink ?enlace .
FILTER (?nombre="guasch_2016"^^xsd:string)
}
''',
initNs = { "emofind": EMOFIND}
)
e6 = prepareQuery('''
SELECT
?nombre (GROUP_CONCAT(distinct ?tipoanotacion; SEPARATOR = ", ") AS ?anotaciones)
WHERE {
?base rdf:type emofind:WordDatabase .
?base emofind:name ?nombre .
?anotacion rdf:type ?tipoanotacion .
?anotacion emofind:extractedFrom ?base .
FILTER(?tipoanotacion != emofind:Annotation) #eliminar las clases de la jerarquía que no son las hojas
FILTER(?tipoanotacion != emofind:EmotionalDimention)
FILTER(?tipoanotacion != emofind:EmotionalCategory)
FILTER(?tipoanotacion != emofind:OtherProperties)
FILTER(?tipoanotacion != emofind:RecognitionTime)
}
GROUP BY ?nombre
''',
initNs = { "emofind": EMOFIND}
)
e7 = prepareQuery('''
SELECT DISTINCT
?nombre
WHERE {
?base rdf:type emofind:WordDatabase .
?base emofind:name ?nombre .
?anotacion rdf:type emofind:Sadness .
?anotacion emofind:extractedFrom ?base .
}
''',
initNs = { "emofind": EMOFIND}
)
e8 = prepareQuery('''
SELECT
?nombre ?media
WHERE {
?anotacion rdf:type emofind:Familiarity .
?anotacion emofind:affects ?palabra .
?anotacion emofind:mean ?media .
?palabra emofind:name ?nombre .
FILTER (LANG(?nombre) = "es") .
FILTER regex ( ?nombre, "^al")
}
''',
initNs = { "emofind": EMOFIND}
)
e9 = prepareQuery('''
SELECT
?nombre ?media
WHERE {
?anotacion rdf:type emofind:Arousal .
?anotacion emofind:affects ?palabra .
?anotacion emofind:mean ?media .
?palabra emofind:name ?nombre .
FILTER (LANG(?nombre) = "es") .
FILTER (?media > 5.0)
FILTER regex ( ?nombre, "cla")
}
''',
initNs = { "emofind": EMOFIND}
)
app = FastAPI()
app.mount("/web", StaticFiles(directory="web"), name="web")
app.mount("/kg", StaticFiles(directory="kg"), name="kg")
@app.get("/")
async def index():
# Return the search page
return FileResponse("web/search.html", media_type="text/html")
@app.get("/bases.html")
async def bases():
# Return the bases page
return FileResponse("web/bases.html", media_type="text/html")
@app.get("/examples.html")
async def examples():
# Return the examples page
return FileResponse("web/examples.html", media_type="text/html")
@app.get("/consulta_caracteristica")
async def consultaCaracteristica(param: str):
qselect= "SELECT ?palabra ?base "
qwhere= "WHERE { "
qfilter= ""
list = param.split("|")
categorias = list[1].split(";")
umbrales = {}
#categorias y umbrales
for i in range(len(categorias)-1):
cati=categorias[i].split(":")
if cati[0] == "TimeTdl" or cati[0] == "TimeNaming":
qselect += "?caracteristica"+str(i)+" ?valor" + str(i) + " "
qwhere += '''values ?caracteristica'''+str(i)+''' { "'''+cati[0]+'''" }
?anotacion'''+str(i)+''' rdf:type emofind:'''+cati[0]+''' .
?anotacion'''+str(i)+''' emofind:affects ?pal .
?anotacion'''+str(i)+''' emofind:extractedFrom ?bas .
?anotacion'''+str(i)+''' emofind:value ?valor'''+str(i)+''' .
'''
catumbrales=cati[1].split("-")
if len(catumbrales[0])>0:
qfilter += '''FILTER(?valor'''+str(i)+''' > ?u'''+ str(len(umbrales))+''')
'''
umbrales["u"+ str(len(umbrales))] = Literal(float(catumbrales[0]))
if len(catumbrales[1])>0:
qfilter += '''FILTER(?valor'''+str(i)+''' < ?u'''+ str(len(umbrales))+''')
'''
umbrales["u"+ str(len(umbrales))] = Literal(float(catumbrales[1]))
else:
qselect += "?caracteristica"+str(i)+" ?media" + str(i) + " ?sd" + str(i) + " "
qwhere += '''values ?caracteristica'''+str(i)+''' { "'''+cati[0]+'''" }
?anotacion'''+str(i)+''' rdf:type emofind:'''+cati[0]+''' .
?anotacion'''+str(i)+''' emofind:affects ?pal .
?anotacion'''+str(i)+''' emofind:extractedFrom ?bas .
?anotacion'''+str(i)+''' emofind:mean ?media'''+str(i)+''' .
?anotacion'''+str(i)+''' emofind:standarDeviation ?sd'''+str(i)+''' .
'''
catumbrales=cati[1].split("-")
if len(catumbrales[0])>0:
qfilter += '''FILTER(?media'''+str(i)+''' > ?u'''+ str(len(umbrales))+''')
'''
umbrales["u"+ str(len(umbrales))] = Literal(float(catumbrales[0]))
if len(catumbrales[1])>0:
qfilter += '''FILTER(?media'''+str(i)+''' < ?u'''+ str(len(umbrales))+''')
'''
umbrales["u"+ str(len(umbrales))] = Literal(float(catumbrales[1]))
if len(catumbrales[2])>0:
qfilter += '''FILTER(?sd'''+str(i)+''' > ?u'''+ str(len(umbrales))+''')
'''
umbrales["u"+ str(len(umbrales))] = Literal(float(catumbrales[2]))
if len(catumbrales[3])>0:
qfilter += '''FILTER(?sd'''+str(i)+''' < ?u'''+ str(len(umbrales))+''')
'''
umbrales["u"+ str(len(umbrales))] = Literal(float(catumbrales[3]))
qwhere += '''?pal emofind:name ?palabra .
?bas emofind:name ?base .
FILTER (LANG(?palabra) = "es")
'''
#bases
bases = list[2].split(";")
filtrobases=""
if len(bases)>1:
filtrobases=" FILTER ("
for i in range(len(bases)-1):
if i == 0:
filtrobases+= '?base="'+bases[i]+'"^^xsd:string '
else:
filtrobases+= '|| ?base="'+bases[i]+'"^^xsd:string '
filtrobases+=") "
qfilter += filtrobases
#palabras
palabras = list[0]
if len(palabras)>1:
for i in range(len(palabras.split("-"))-1):
qfilter += ' FILTER regex ( ?palabra, "'+ palabras.split("-")[i] + '") '
query=qselect+qwhere+qfilter+"}"
q = prepareQuery(query, initNs = { "emofind": EMOFIND})
#debug
#for r in g.query(q, initBindings=umbrales):
# print(r.palabra, r.base, r.media0, r.sd0, r.media1, r.sd1)
#obtener json
res=g.query(q, initBindings=umbrales).serialize(format="json")
if res!= None:
return Response(content=res.decode("utf-8"),media_type="application/json")
else:
return Response(content={"message": "Fallo consulta"}, status_code=500)
@app.get("/consulta_base")
async def consultaBase():
#obtener json
res=g.query(q1).serialize(format="json")
if res!= None:
return Response(content=res.decode("utf-8"),media_type="application/json")
else:
return Response(content={"message": "Fallo consulta"}, status_code=500)
@app.get("/consulta_ejemplo")
async def consultaBase(param: int):
res=None
match param:
case 1:
#obtener json
res=g.query(e1).serialize(format="json")
case 2:
#obtener json
res=g.query(e2).serialize(format="json")
case 3:
#obtener json
res=g.query(e3).serialize(format="json")
case 4:
#obtener json
res=g.query(e4).serialize(format="json")
case 5:
#obtener json
res=g.query(e5).serialize(format="json")
case 6:
#obtener json
res=g.query(e6).serialize(format="json")
case 7:
#obtener json
res=g.query(e7).serialize(format="json")
case 8:
#obtener json
res=g.query(e8).serialize(format="json")
case 9:
#obtener json
res=g.query(e9).serialize(format="json")
if res!= None:
return Response(content=res.decode("utf-8"),media_type="application/json")
else:
return Response(content={"message": "Fallo consulta"}, status_code=500)