Skip to content

Commit 19a070d

Browse files
author
Giovanni Moretti
committed
latin wordnet queries update
1 parent 0199b2f commit 19a070d

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

UDante-synset.rq

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
77
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
88
PREFIX dc: <http://purl.org/dc/elements/1.1/>
99

10-
# Find all the lemmas of the synset (to reign) http://wordnet-rdf.princeton.edu/wn30/02587375-v
10+
# Find all the lemmas of the synset (to reign) http://lila-erc.eu/data/lexicalResources/LatinWordNet/id/LexicalConcept/02593467-v
1111
SELECT ?lemma ?lemmaWrs ?docTitle
1212
WHERE {
1313
VALUES ?documentSummaCG {
@@ -18,7 +18,7 @@ WHERE {
1818
separator=", ") as ?lemmaWrs)
1919
WHERE {
2020
VALUES ?syn {
21-
<http://wordnet-rdf.princeton.edu/wn30/02587375-v>
21+
<http://lila-erc.eu/data/lexicalResources/LatinWordNet/id/LexicalConcept/02593467-v>
2222
} .
2323
{
2424
SELECT ?wnLemma ?syn

latinwordnet_synset.rq

+5-5
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,13 @@ PREFIX corpora: <http://lila-erc.eu/ontologies/lila_corpora/>
88
PREFIX fn: <http://www.w3.org/2005/xpath-functions#>
99
PREFIX ittb: <http://lila-erc.eu/data/corpora/ITTB/id/synFunction/>
1010
PREFIX lilacorpora: <http://lila-erc.eu/ontologies/lila_corpora/>
11-
prefix wn: <http://wordnet-rdf.princeton.edu/ontology#>
11+
prefix wn: <https://globalwordnet.github.io/schemas/wn#>
1212

1313
# Retrieve all the lemmas belonging to a specific synset
1414
select ?lemma ?lab ?base ?syn where {
1515
{
1616
values ?syn {
17-
<http://wordnet-rdf.princeton.edu/wn30/02587375-v>
17+
<http://lila-erc.eu/data/lexicalResources/LatinWordNet/id/LexicalConcept/02593467-v>
1818
}
1919
?le ontolex:canonicalForm ?lemma ;
2020
ontolex:evokes ?syn .
@@ -25,19 +25,19 @@ select ?lemma ?lab ?base ?syn where {
2525
{
2626
?le ontolex:canonicalForm ?lemma ;
2727
ontolex:evokes ?syn .
28-
<http://wordnet-rdf.princeton.edu/wn30/02587375-v> wn:hypernym ?syn .
28+
<http://lila-erc.eu/data/lexicalResources/LatinWordNet/id/LexicalConcept/02593467-v> wn:hypernym ?syn .
2929
?lemma rdfs:label ?lab ;
3030
lila:hasBase ?base .
3131
}
3232
UNION
3333
{
3434
?le ontolex:canonicalForm ?l ;
3535
ontolex:evokes ?syn_syn .
36-
<http://wordnet-rdf.princeton.edu/wn30/02587375-v> wn:hypernym ?syn_syn .
36+
<http://lila-erc.eu/data/lexicalResources/LatinWordNet/id/LexicalConcept/02593467-v> wn:hypernym ?syn_syn .
3737
?l lila:hasBase ?base .
3838
?lemma a lila:Lemma ;
3939
lila:hasPOS lila:verb;
4040
lila:hasBase ?base ;
4141
rdfs:label ?lab .
4242
}
43-
}
43+
}

synset-frame.rq

+3-3
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,12 @@ prefix marl: <http://www.gsi.dit.upm.es/ontologies/marl/ns#>
1010
prefix premon: <http://premon.fbk.eu/ontology/core#>
1111
prefix lv: <http://lila-erc.eu/ontologies/latinVallex/>
1212

13-
# Find forms that have a specific synset in the currently revised portion of Latin WordNet (e.g. 00179311-v: "take out, take away") and a valency frame in Latin Vallex with specific functor (e.g., ADDR "addressee")
13+
# Find forms that have a specific synset in the currently revised portion of Latin WordNet (e.g. 00179456-v: "take out or remove") and a valency frame in Latin Vallex with specific functor (e.g., ADDR "addressee")
1414
SELECT ?form (count(?form) as ?count) ?docTitle ?prefixlabel
1515
WHERE {
1616
?le ontolex:canonicalForm ?lemma ;
1717
ontolex:evokes ?frame ;
18-
ontolex:evokes <http://wordnet-rdf.princeton.edu/wn30/00179311-v> .
18+
ontolex:evokes <http://lila-erc.eu/data/lexicalResources/LatinWordNet/id/LexicalConcept/00179456-v> .
1919
?frame premon:semRole ?SemRole .
2020
?SemRole lv:functor <http://lila-erc.eu/ontologies/latinVallex/ADDR> .
2121
?lemma lila:hasPrefix ?prefix .
@@ -27,4 +27,4 @@ WHERE {
2727
?doc dc:title ?docTitle
2828
}
2929
group by ?form ?docTitle ?prefixlabel
30-
order by desc(?count)
30+
order by desc(?count)

0 commit comments

Comments
 (0)