utterance
stringlengths 10
893
| template_name
stringclasses 191
values | template
stringlengths 74
1.45k
|
---|---|---|
get the canonical form of paieras in French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'paieras'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
find the lemma of sollicitassiez in French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'sollicitassiez'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
lemmatize cuisit into French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'cuisit'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
lemmatize podsvinčatech in Czech
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'Czech'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'podsvinčatech'@cs } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
obtain the lemma representation of envolé in French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'envolé'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
identify the root word for fâcheriez in French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'fâcheriez'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
identify the root word for rysk in Swedish
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'Swedish'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'rysk'@sv } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
obtain the lemma representation of instaurés in French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'instaurés'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
determine the lemma for communiquassiez in French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'communiquassiez'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
discover the lemma form of échangeons in French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'échangeons'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
get the canonical form 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 .
}
|
get the base form of aquela in Portuguese
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'Portuguese'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'aquela'@pt } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
find the lemma of attraperez in French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'attraperez'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
determine the lemma for husets in Danish
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'Danish'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'husets'@da } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
retrieve the lemma of transposâmes in French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'transposâmes'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
determine the lemma for Hebammen in German
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'German'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'Hebammen'@de } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
lemmatize shift in English
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'English'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'shift'@en } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
identify the root word for landenes in Danish
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'Danish'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'landenes'@da } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
get the base form of fâchées in French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'fâchées'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
lemmatize tornares into Latin
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'Latin'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'tornares'@la } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
obtain the lemma representation of fixassent in French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'fixassent'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
get the canonical form of indiqueras in French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'indiqueras'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
lemmatize tirasses into French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'tirasses'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
retrieve the lemma of substituez in French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'substituez'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
lemmatize urtarrilarekin in Basque
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'Basque'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'urtarrilarekin'@eu } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
get the canonical form of découragiez in French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'découragiez'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
retrieve the lemma of osteguni in Basque
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'Basque'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'osteguni'@eu } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
get the base form of spécialisait in French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'spécialisait'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
get the canonical form of violence in French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'violence'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
get the canonical form of MLS in English
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'English'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'MLS'@en } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
get the canonical form of juillet in French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'juillet'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
obtain the lemma representation of augmentaient in French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'augmentaient'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
discover the lemma form of rayonnerait in French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'rayonnerait'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
determine the lemma for Awwissu in Maltese
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'Maltese'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'Awwissu'@mt } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
lemmatize cleft into English
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'English'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'cleft'@en } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
get the base form of Wikidanych in Polish
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'Polish'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'Wikidanych'@pl } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
identify the root word for semblés in French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'semblés'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
get the canonical form of broskvovému in Czech
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'Czech'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'broskvovému'@cs } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
get the base 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 demanderai in French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'demanderai'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
obtain the lemma representation of etterslepa in Nynorsk
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'Nynorsk'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'etterslepa'@nn } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
obtain the lemma representation of forcez in French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'forcez'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
identify the root word for fermais in French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'fermais'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
determine the lemma for physicis in Latin
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'Latin'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'physicis'@la } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
determine the lemma for آج 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 .
}
|
determine the lemma for adorerons in French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'adorerons'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
discover the lemma form of déjeunâtes in French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'déjeunâtes'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
lemmatize condamnait into French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'condamnait'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
retrieve the lemma of fatiguons in French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'fatiguons'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
determine the lemma for abusâtes in French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'abusâtes'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
find the lemma of remontas in French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'remontas'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
identify the root word 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 .
}
|
lemmatize planetary nebulae in English
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'English'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'planetary nebulae'@en } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
determine the lemma for spikar in Nynorsk
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'Nynorsk'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'spikar'@nn } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
identify the root word for peuplasses in French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'peuplasses'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
determine the lemma for lokakuuna in Finnish
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'Finnish'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'lokakuuna'@fi } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
discover the lemma form of mourus in French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'mourus'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
discover the lemma form of juras in French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'juras'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
get the base form of réservassions in French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'réservassions'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
determine the lemma for cousins in English
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'English'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'cousins'@en } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
lemmatize comparasses in French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'comparasses'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
find 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 .
}
|
obtain the lemma representation of supprimais in French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'supprimais'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
get the canonical form of téléchargeant in French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'téléchargeant'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
determine the lemma for provenir in French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'provenir'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
lemmatize ressenties into French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'ressenties'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
identify the root word for réclamerai in French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'réclamerai'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
determine the lemma for impose in English
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'English'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'impose'@en } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
lemmatize portée in French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'portée'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
determine the lemma for posons in French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'posons'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
lemmatize sadzie in Polish
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'Polish'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'sadzie'@pl } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
lemmatize appartiendront into French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'appartiendront'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
obtain the lemma representation of reliasses in French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'reliasses'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
get the base form of prospères in French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'prospères'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
lemmatize restais into French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'restais'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
identify the root word for accompagnes in French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'accompagnes'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
lemmatize destituer into French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'destituer'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
retrieve the lemma of supprima in French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'supprima'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
identify the root word for tietokantoja in Finnish
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'Finnish'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'tietokantoja'@fi } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
identify the root word for statos in Latin
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'Latin'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'statos'@la } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
discover the lemma form of recommanderais in French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'recommanderais'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
lemmatize aimais in French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'aimais'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
lemmatize dominions in French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'dominions'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
obtain the lemma representation of dénoncez in French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'dénoncez'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
retrieve the lemma of construirait in French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'construirait'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
lemmatize krajom in Polish
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'Polish'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'krajom'@pl } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
lemmatize accompagnions in French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'accompagnions'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
determine the lemma for plush in English
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'English'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'plush'@en } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
retrieve the lemma of collèrent in French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'collèrent'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
lemmatize recommencez into French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'recommencez'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
find the lemma of konia in Polish
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'Polish'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'konia'@pl } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
determine the lemma for dénoncés in French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'dénoncés'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
get the base form of placerais in French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'placerais'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
obtain the lemma representation of héritiez in French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'héritiez'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
lemmatize disperseriez in French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'disperseriez'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
lemmatize coats in English
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'English'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'coats'@en } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
get the base form of concentrée in French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'concentrée'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
find the lemma of raccordions in French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'raccordions'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
lemmatize respectent in French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'respectent'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
lemmatize prévoirions in French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'prévoirions'@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.