DMLEX on Wikibase

From LexBib

A serialization of the DMLEX model, for LexBib Wikibase

This page describes how lexical resources datasets following the DMLEX model are represented on this Wikibase instance. The aim of these experiments is to present DMLEX datasets to the user on collaboratively editable entity pages, and to allow SPARQL querying of the content.

This model is heavily inspired by the DMLEX Ontology (the RDF serialization of DMLEX deploying Ontolex-Lemon). The Wikibase model for lexical entries is built on top of the three Ontolex-Lemon core classes entry, sense and form.

For some notes about the 2024 preliminary experiments, see this page.

DMLEX on LexBib Wikibase

DMLex dictionaries

The following dictionaries have been uploaded from DMLex 3.0 XML sources to this Wikibase. See the corresponding pages for details.

Coarse statistics

This query lists DMLex resources on this Wikibase and counts entries and senses.

PREFIX lwb: <https://lexbib.elex.is/entity/>
PREFIX ldp: <https://lexbib.elex.is/prop/direct/>

select distinct ?resource ?resourceLabel (count(distinct ?entry) as ?entries) (count(distinct ?sense) as ?senses)
where {?resource ldp:P5 lwb:Q100. ?entry ldp:P207 ?resource. ?entry ontolex:sense ?sense.
      SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }}
group by ?resource ?resourceLabel ?entries ?senses order by desc(?entries)

Try it!