utterance
stringlengths 10
893
| template_name
stringclasses 191
values | template
stringlengths 74
1.45k
|
---|---|---|
lemmatize amasserait in French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'amasserait'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
determine the lemma for Toreut in German
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'German'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'Toreut'@de } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
identify the root word for concrétisa in French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'concrétisa'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
retrieve the lemma of kolendrami in Polish
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'Polish'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'kolendrami'@pl } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
lemmatize gaz in French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'gaz'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
get the base form of attacherez in French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'attacherez'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
obtain the lemma representation of jugé in French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'jugé'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
obtain the lemma representation of procureras in French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'procureras'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
find the lemma of Jerze in Polish
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'Polish'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'Jerze'@pl } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
lemmatize rejoignant in French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'rejoignant'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
discover the lemma form of surveillerions in French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'surveillerions'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
obtain the lemma representation of cynkom in Polish
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'Polish'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'cynkom'@pl } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
get the base form of aloud in English
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'English'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'aloud'@en } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
find the lemma of adressassent in French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'adressassent'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
determine the lemma for kaupunkeina in Finnish
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'Finnish'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'kaupunkeina'@fi } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
get the base form of numidarane in Nynorsk
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'Nynorsk'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'numidarane'@nn } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
get the base form of ਪੀਣਗੀਆਂ in Punjabi
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'Punjabi'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'ਪੀਣਗੀਆਂ'@pa } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
retrieve the lemma of épuisent in French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'épuisent'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
lemmatize glest into Swedish
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'Swedish'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'glest'@sv } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
lemmatize experimenting into English
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'English'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'experimenting'@en } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
lemmatize reliaient into French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'reliaient'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
determine the lemma for renseigné in French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'renseigné'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
lemmatize intravissemus into Latin
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'Latin'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'intravissemus'@la } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
identify the root word for traitez in French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'traitez'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
get the base form of artificielle in French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'artificielle'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
discover the lemma form of arrêterait in French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'arrêterait'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
lemmatize karhu in Finnish
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'Finnish'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'karhu'@fi } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
determine the lemma for kesillä in Finnish
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'Finnish'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'kesillä'@fi } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
lemmatize shiest in English
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'English'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'shiest'@en } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
lemmatize derivare in Latin
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'Latin'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'derivare'@la } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
lemmatize cendriers in French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'cendriers'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
lemmatize torturerez in French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'torturerez'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
get the canonical form of knot in English
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'English'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'knot'@en } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
identify the root word for tiedoille in Finnish
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'Finnish'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'tiedoille'@fi } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
identify the root word for sanakirjalta in Finnish
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'Finnish'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'sanakirjalta'@fi } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
get the canonical form of saisiront in French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'saisiront'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
find the lemma of vexing in English
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'English'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'vexing'@en } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
retrieve the lemma of unifiera in French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'unifiera'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
determine the lemma for partagerions in French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'partagerions'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
find the lemma of essaies in French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'essaies'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
find the lemma of towering in English
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'English'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'towering'@en } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
find the lemma of ouverte in French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'ouverte'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
identify the root word for recherchais in French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'recherchais'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
lemmatize ohyggliga in Swedish
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'Swedish'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'ohyggliga'@sv } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
get the base form of étires in French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'étires'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
discover the lemma form of essaieriez in French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'essaieriez'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
get the base form of redubbed in English
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'English'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'redubbed'@en } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
find the lemma of entrés in French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'entrés'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
lemmatize statuerait in French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'statuerait'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
get the canonical form of avalées in French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'avalées'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
identify the root word for recherchât in French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'recherchât'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
lemmatize prospérités in French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'prospérités'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
lemmatize 9月 in Japanese
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'Japanese'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { '9月'@ja } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
lemmatize cents into English
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'English'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'cents'@en } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
lemmatize représenterait into French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'représenterait'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
lemmatize exiatur in Latin
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'Latin'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'exiatur'@la } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
retrieve the lemma of menacé in French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'menacé'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
find the lemma of renverserais in French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'renverserais'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
lemmatize incombait in French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'incombait'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
retrieve the lemma of innvandraren in Nynorsk
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'Nynorsk'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'innvandraren'@nn } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
lemmatize participassiez in French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'participassiez'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
lemmatize voles in French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'voles'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
discover the lemma form of merk in Nynorsk
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'Nynorsk'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'merk'@nn } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
get the canonical form of xonaho in New Persian
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'New Persian'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'xonaho'@tg-latn } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
determine the lemma for rekkjer in Nynorsk
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'Nynorsk'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'rekkjer'@nn } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
lemmatize compliquassions in French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'compliquassions'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
discover the lemma form of cook in English
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'English'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'cook'@en } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
discover the lemma form of dépassera in French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'dépassera'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
lemmatize justifiais in French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'justifiais'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
find the lemma of représentât in French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'représentât'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
lemmatize intraverunt in Latin
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'Latin'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'intraverunt'@la } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
get the canonical form of freinassent in French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'freinassent'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
get the base form of félicitons in French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'félicitons'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
obtain the lemma representation of ilmoina in Finnish
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'Finnish'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'ilmoina'@fi } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
get the canonical form of adaptables in French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'adaptables'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
discover the lemma form of déclinasses in French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'déclinasses'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
discover the lemma form of karhuiksi in Finnish
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'Finnish'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'karhuiksi'@fi } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
identify the root word for avertissiez in French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'avertissiez'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
identify the root word for záhonových in Czech
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'Czech'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'záhonových'@cs } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
identify the root word for bladfykar in Nynorsk
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'Nynorsk'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'bladfykar'@nn } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
lemmatize devenez in French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'devenez'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
find the lemma of заклепковe in Ukrainian
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'Ukrainian'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'заклепковe'@uk } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
discover the lemma form of rejoignai in French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'rejoignai'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
discover the lemma form of aménagez in French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'aménagez'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
discover the lemma form of évoluera in French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'évoluera'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
lemmatize distinctions in English
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'English'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'distinctions'@en } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
get the canonical form of pendît in French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'pendît'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
lemmatize priming into English
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'English'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'priming'@en } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
get the base form of måtterne in Danish
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'Danish'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'måtterne'@da } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
get the canonical form of gangvegen in Nynorsk
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'Nynorsk'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'gangvegen'@nn } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
obtain the lemma representation of Riaz in French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'Riaz'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
discover the lemma form of meets in English
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'English'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'meets'@en } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
identify the root word for mangerions in French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'mangerions'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
identify the root word for shorn in English
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'English'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'shorn'@en } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
get the base form of fixerais in French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'fixerais'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
get the base form of créé in French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'créé'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
determine the lemma for collectivement in French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'collectivement'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
obtain the lemma representation of initiabat in Latin
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'Latin'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'initiabat'@la } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
lemmatize réservasses in French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'réservasses'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
identify the root word for waranami in Polish
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'Polish'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'waranami'@pl } .
?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.