utterance
stringlengths 10
893
| template_name
stringclasses 191
values | template
stringlengths 74
1.45k
|
---|---|---|
determine the lemma for nisa in Maltese
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'Maltese'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'nisa'@mt } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
discover the lemma form of آخت in Persian
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'Persian'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'آخت'@fa } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
lemmatize remplissons in French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'remplissons'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
determine the lemma for restions in French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'restions'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
determine the lemma for repoussais in French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'repoussais'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
identify the root word for façonnerais in French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'façonnerais'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
determine the lemma for riders in English
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'English'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'riders'@en } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
lemmatize contemples in French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'contemples'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
determine the lemma for Mariami in Polish
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'Polish'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'Mariami'@pl } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
discover the lemma form of creere in Latin
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'Latin'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'creere'@la } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
retrieve the lemma of incorporates in English
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'English'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'incorporates'@en } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
get the base form of fixeras in French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'fixeras'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
discover the lemma form of bends in English
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'English'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'bends'@en } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
get the canonical form of zucca in Italian
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'Italian'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'zucca'@it } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
lemmatize disputerons in French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'disputerons'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
lemmatize derivares into Latin
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'Latin'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'derivares'@la } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
obtain the lemma representation of devient in French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'devient'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
determine the lemma for insulteraient in French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'insulteraient'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
obtain the lemma representation of mériterez in French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'mériterez'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
identify the root word for pound in English
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'English'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'pound'@en } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
determine the lemma for exeantur in Latin
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'Latin'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'exeantur'@la } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
identify the root word for substituassiez in French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'substituassiez'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
identify the root word for survécût in French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'survécût'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
retrieve the lemma of kelvins in French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'kelvins'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
discover the lemma form of cure in English
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'English'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'cure'@en } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
get the base form of perfectionner in French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'perfectionner'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
lemmatize songeriez in French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'songeriez'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
get the base form of alameda in Spanish
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'Spanish'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'alameda'@es } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
lemmatize supporteras into French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'supporteras'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
get the base form of banded in English
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'English'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'banded'@en } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
get the base form of situiez in French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'situiez'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
obtain the lemma representation of anticiperait in French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'anticiperait'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
discover the lemma form of jugeraient in French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'jugeraient'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
lemmatize nainen into Finnish
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'Finnish'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'nainen'@fi } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
lemmatize fumeras in French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'fumeras'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
determine the lemma for freisting in Nynorsk
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'Nynorsk'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'freisting'@nn } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
find the lemma of floor in English
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'English'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'floor'@en } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
get the canonical form of approchât in French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'approchât'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
obtain the lemma representation of attrapaient in French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'attrapaient'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
obtain the lemma representation of Danuty in Polish
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'Polish'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'Danuty'@pl } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
discover the lemma form of anodes in English
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'English'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'anodes'@en } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
discover the lemma form of dataient in French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'dataient'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
find the lemma of dormivano in Italian
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'Italian'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'dormivano'@it } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
discover the lemma form of dansez in French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'dansez'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
determine the lemma for arrêtasse in French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'arrêtasse'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
identify the root word for accorderiez in French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'accorderiez'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
lemmatize prouvassions in French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'prouvassions'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
find the lemma of driftig in Swedish
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'Swedish'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'driftig'@sv } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
discover the lemma form of terminions in French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'terminions'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
identify the root word for pratiquées in French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'pratiquées'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
lemmatize pénétrassiez into French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'pénétrassiez'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
lemmatize achetons in French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'achetons'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
lemmatize incline in French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'incline'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
obtain the lemma representation of litletåa in Nynorsk
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'Nynorsk'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'litletåa'@nn } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
lemmatize déterminais in French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'déterminais'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
determine the lemma for chargerions in French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'chargerions'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
get the canonical form of mangeâtes in French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'mangeâtes'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
lemmatize rêvés in French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'rêvés'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
get the base form of vist in Danish
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'Danish'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'vist'@da } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
retrieve the lemma of intéressâtes in French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'intéressâtes'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
lemmatize кандидатах into Russian
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'Russian'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'кандидатах'@ru } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
determine the lemma for méritai in French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'méritai'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
lemmatize créiez in French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'créiez'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
lemmatize écrivis into French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'écrivis'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
get the base form of notait in French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'notait'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
get the canonical form of attendrions in French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'attendrions'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
retrieve the lemma of لُو in Punjabi
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'Punjabi'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'لُو'@pnb } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
retrieve the lemma of informasse in French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'informasse'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
obtain the lemma representation of Albinowi in Polish
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'Polish'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'Albinowi'@pl } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
determine the lemma for býčkům in Czech
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'Czech'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'býčkům'@cs } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
lemmatize enterrées in French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'enterrées'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
discover the lemma form of poussé in French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'poussé'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
get the base form of amassera in French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'amassera'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
lemmatize pans into English
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'English'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'pans'@en } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
determine the lemma for niggardly in English
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'English'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'niggardly'@en } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
find the lemma of arrangeais in French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'arrangeais'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
lemmatize sollicitât into French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'sollicitât'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
retrieve the lemma of enfouit in French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'enfouit'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
get the canonical form of prolongeasses in French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'prolongeasses'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
identify the root word for présagent in French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'présagent'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
find the lemma of ginget in German
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'German'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'ginget'@de } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
lemmatize respirerions into French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'respirerions'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
get the canonical form of ménageasse in French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'ménageasse'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
lemmatize exientur in Latin
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'Latin'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'exientur'@la } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
lemmatize rejoignerait in French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'rejoignerait'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
lemmatize biedna in Polish
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'Polish'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'biedna'@pl } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
get the canonical form of abrogeais in French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'abrogeais'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
get the canonical form of redub in English
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'English'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'redub'@en } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
discover the lemma form of devenaient in French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'devenaient'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
get the base form of désapprouveront in French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'désapprouveront'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
retrieve the lemma of nageant in French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'nageant'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
identify the root word for mesura in French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'mesura'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
determine the lemma for construis in French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'construis'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
discover the lemma form of こえる in Japanese
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'Japanese'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'こえる'@ja-hira } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
get the base form of exibatis in Latin
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'Latin'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'exibatis'@la } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
lemmatize mourûtes in French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'mourûtes'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
find the lemma of recommencés in French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'recommencés'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
get the canonical form of chrząszczach in Polish
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'Polish'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'chrząszczach'@pl } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
obtain the lemma representation of composassiez in French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'composassiez'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
identify the root word for continua in French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'continua'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.