utterance
stringlengths 10
893
| template_name
stringclasses 191
values | template
stringlengths 74
1.45k
|
---|---|---|
lemmatize paraitre into French | a5 | SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'paraitre'@fr-x-q486561 } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
} |
find the lemma of esté in French | a5 | SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'esté'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
} |
find the lemma of sobotom in Polish | a5 | SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'Polish'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'sobotom'@pl } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
} |
lemmatize instaureront in French | a5 | SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'instaureront'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
} |
lemmatize saisirent into French | a5 | SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'saisirent'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
} |
obtain the lemma representation of strips in English | a5 | SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'English'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'strips'@en } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
} |
obtain the lemma representation of mesurassent in French | a5 | SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'mesurassent'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
} |
obtain the lemma representation of étirons in French | a5 | SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'étirons'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
} |
get the canonical form of valorisé in French | a5 | SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'valorisé'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
} |
retrieve the lemma of conformerions in French | a5 | SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'conformerions'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
} |
lemmatize xona in New Persian | a5 | SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'New Persian'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'xona'@tg-latn } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
} |
retrieve the lemma of tenteras in French | a5 | SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'tenteras'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
} |
find the lemma of nattliga in Swedish | a5 | SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'Swedish'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'nattliga'@sv } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
} |
retrieve the lemma of collait in French | a5 | SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'collait'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
} |
retrieve the lemma of Franciszkom in Polish | a5 | SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'Polish'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'Franciszkom'@pl } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
} |
discover the lemma form of haussait in French | a5 | SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'haussait'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
} |
find the lemma of banale in Italian | a5 | SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'Italian'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'banale'@it } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
} |
retrieve the lemma of découragerons in French | a5 | SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'découragerons'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
} |
discover the lemma form of économisés in French | a5 | SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'économisés'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
} |
discover the lemma form of reçoit in French | a5 | SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'reçoit'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
} |
lemmatize participé into French | a5 | SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'participé'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
} |
identify the root word for parées in French | a5 | SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'parées'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
} |
get the base form of frålandsvindane in Nynorsk | a5 | SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'Nynorsk'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'frålandsvindane'@nn } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
} |
discover the lemma form of compareras in French | a5 | SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'compareras'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
} |
lemmatize viderions in French | a5 | SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'viderions'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
} |
get the base form of réparas in French | a5 | SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'réparas'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
} |
lemmatize devinai in French | a5 | SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'devinai'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
} |
discover the lemma form of gąsienica in Polish | a5 | SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'Polish'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'gąsienica'@pl } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
} |
lemmatize définissant into French | a5 | SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'définissant'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
} |
find the lemma of étudierais in French | a5 | SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'étudierais'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
} |
lemmatize supprimant into French | a5 | SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'supprimant'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
} |
identify the root word for cent-millièmes in French | a5 | SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'cent-millièmes'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
} |
determine the lemma for ilmoille in Finnish | a5 | SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'Finnish'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'ilmoille'@fi } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
} |
find the lemma of ardorako in Basque | a5 | SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'Basque'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'ardorako'@eu } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
} |
get the base form of épingles in French | a5 | SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'épingles'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
} |
lemmatize przepióreczkę into Polish | a5 | SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'Polish'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'przepióreczkę'@pl } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
} |
obtain the lemma representation of cachée in French | a5 | SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'cachée'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
} |
get the canonical form of abadean in Basque | a5 | SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'Basque'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'abadean'@eu } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
} |
lemmatize valoriserai into French | a5 | SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'valoriserai'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
} |
discover the lemma form of tart in English | a5 | SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'English'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'tart'@en } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
} |
retrieve the lemma of vérifiées in French | a5 | SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'vérifiées'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
} |
determine the lemma for cominciavamo in Italian | a5 | SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'Italian'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'cominciavamo'@it } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
} |
find the lemma of finançassent in French | a5 | SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'finançassent'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
} |
identify the root word for ouvertes in French | a5 | SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'ouvertes'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
} |
find the lemma of čelním in Czech | a5 | SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'Czech'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'čelním'@cs } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
} |
lemmatize حلق 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 exibor in Latin | a5 | SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'Latin'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'exibor'@la } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
} |
retrieve the lemma of hurlassiez in French | a5 | SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'hurlassiez'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
} |
find the lemma of Czesławów in Polish | a5 | SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'Polish'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'Czesławów'@pl } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
} |
determine the lemma for surprendront in French | a5 | SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'surprendront'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
} |
get the base form of menacèrent in French | a5 | SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'menacèrent'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
} |
lemmatize draguât into French | a5 | SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'draguât'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
} |
identify the root word for ella in Catalan | a5 | SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'Catalan'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'ella'@ca } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
} |
retrieve the lemma of Myanmar in French | a5 | SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'Myanmar'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
} |
discover the lemma form of persuadât in French | a5 | SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'persuadât'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
} |
retrieve the lemma of aimés in French | a5 | SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'aimés'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
} |
get the base form of nourrit in French | a5 | SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'nourrit'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
} |
find the lemma of ionisant in French | a5 | SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'ionisant'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
} |
discover the lemma form of entrait in French | a5 | SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'entrait'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
} |
obtain the lemma representation of plaignent in French | a5 | SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'plaignent'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
} |
obtain the lemma representation of embelliraient in French | a5 | SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'embelliraient'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
} |
find the lemma of définissent in French | a5 | SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'définissent'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
} |
lemmatize inaugurâtes in French | a5 | SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'inaugurâtes'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
} |
determine the lemma for borderai in French | a5 | SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'borderai'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
} |
lemmatize Maciejami in Polish | a5 | SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'Polish'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'Maciejami'@pl } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
} |
discover the lemma form of terminassent in French | a5 | SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'terminassent'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
} |
obtain the lemma representation of reposeriez in French | a5 | SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'reposeriez'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
} |
obtain the lemma representation of rentrai in French | a5 | SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'rentrai'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
} |
retrieve the lemma of raccorderaient in French | a5 | SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'raccorderaient'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
} |
get the canonical form of abolirent in French | a5 | SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'abolirent'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
} |
discover the lemma form of restricts in English | a5 | SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'English'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'restricts'@en } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
} |
discover the lemma form of armas in French | a5 | SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'armas'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
} |
get the base form of rayonnerai in French | a5 | SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'rayonnerai'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
} |
discover the lemma form of produisissions in French | a5 | SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'produisissions'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
} |
lemmatize craft in English | a5 | SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'English'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'craft'@en } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
} |
retrieve the lemma of merkast in Nynorsk | a5 | SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'Nynorsk'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'merkast'@nn } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
} |
get the base form of formâmes in French | a5 | SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'formâmes'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
} |
get the base form of fréquenterais in French | a5 | SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'fréquenterais'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
} |
discover the lemma form of courons in French | a5 | SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'courons'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
} |
determine the lemma for jaka in Polish | a5 | SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'Polish'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'jaka'@pl } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
} |
obtain the lemma representation of Jolancie in Polish | a5 | SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'Polish'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'Jolancie'@pl } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
} |
lemmatize Honoratów in Polish | a5 | SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'Polish'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'Honoratów'@pl } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
} |
get the canonical form of traduisez in French | a5 | SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'traduisez'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
} |
find the lemma of excusât in French | a5 | SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'excusât'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
} |
determine the lemma for پِیوِیں 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 inviterions in French | a5 | SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'inviterions'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
} |
lemmatize insultons into French | a5 | SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'insultons'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
} |
lemmatize initiabuntur in Latin | a5 | SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'Latin'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'initiabuntur'@la } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
} |
lemmatize ਲੈਣੋਂ 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 instaurerez in French | a5 | SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'instaurerez'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
} |
determine the lemma for kalafiorów in Polish | a5 | SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'Polish'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'kalafiorów'@pl } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
} |
determine the lemma for consultât in French | a5 | SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'consultât'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
} |
determine the lemma for félicitez in French | a5 | SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'félicitez'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
} |
obtain the lemma representation of substitueraient in French | a5 | SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'substitueraient'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
} |
lemmatize contacter into French | a5 | SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'contacter'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
} |
determine the lemma for reportera in French | a5 | SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'reportera'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
} |
identify the root word for słoniskami in Polish | a5 | SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'Polish'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'słoniskami'@pl } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
} |
determine the lemma for agréai in French | a5 | SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'agréai'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
} |
lemmatize obéissais into French | a5 | SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'obéissais'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
} |
get the canonical form of rougîtes in French | a5 | SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'rougîtes'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
} |
Subsets and Splits
No saved queries yet
Save your SQL queries to embed, download, and access them later. Queries will appear here once saved.