-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathUDante-sentiment.rq
24 lines (22 loc) · 1.01 KB
/
UDante-sentiment.rq
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#>
prefix ontolex: <http://www.w3.org/ns/lemon/ontolex#>
prefix lila: <http://lila-erc.eu/ontologies/lila/>
prefix lilacorpora: <http://lila-erc.eu/ontologies/lila_corpora/>
prefix lime: <http://www.w3.org/ns/lemon/lime#>
prefix marl: <http://www.gsi.dit.upm.es/ontologies/marl/ns#>
prefix powla: <http://purl.org/powla/powla.owl#>
prefix corpora: <http://lila-erc.eu/ontologies/lila_corpora/>
# List of negative lemmas in UDante
SELECT ?pnomlemma ?lablemma (count(?pnomlemma) as ?tot) WHERE {
<http://lila-erc.eu/data/lexicalResources/LatinAffectus/Lexicon> lime:entry ?lexentry .
?lexentry ontolex:canonicalForm ?pnomlemma ;
ontolex:sense [ marl:hasPolarity marl:Negative ]
VALUES ?corpora {
<http://lila-erc.eu/data/corpora/UDante/id/corpus>
}
?t a powla:Terminal ;
lila:hasLemma ?pnomlemma .
?t powla:hasLayer/powla:hasDocument/^powla:hasSubDocument ?corpora .
?pnomlemma rdfs:label ?lablemma
}group by ?pnomlemma ?lablemma
order by desc(?tot)