DBpedia Mappings

Web Name: DBpedia Mappings

WebSite: http://www4.wiwiss.fu-berlin.de

ID:228431

Keywords:

DBpedia,Mappings,

Description:

keywords:
description:
Main Page From DBpedia Mappings Jump to: navigation, search Contents1 DBpedia Mappings Wiki2 Mapping Example3 Detailed Information4 Prerequisites5 Editorial Process6 Best Practices7 Testing Best Practices7.1 Custom or Default Extractor7.2 Copy IRIs not URL-encoded7.3 Domain Validation8 That's it!9 About DBpediaDBpedia Mappings Wiki

In this DBpedia Mappings Wiki you can help to enhance the information in DBpedia. The DBpedia Extraction Framework uses the mappings defined here to homogenize information extracted from Wikipedia before generating structured information in RDF.

Anybody can help by editing:

the DBpedia ontology schema (classes, properties, datatypes) the DBpedia infobox-to-ontology mappings

Mappings can be written for a variety of languages, connecting multiligual information to a language-independent unified ontology schema (language-specific labels can be provided there).


Mapping Example

This is how you write a simple infobox mapping.

Mapping:Infobox_actor

{{TemplateMapping | mapToClass = Actor | mappings =    {{ PropertyMapping | templateProperty = name | ontologyProperty = foaf:name }}   {{ PropertyMapping | templateProperty = birth_place | ontologyProperty = birthPlace }}}}

This mapping extracts three information bits:

the type information (Actor) the name of the actor the actor's place of birth.

Therefore, three RDF triples for each Infobox_actor in the English Wikipedia are extracted. For example for Vince Vaughn

dbpedia:Vince_Vaughn  rdf:type                dbpedia-owl:Actor   .dbpedia:Vince_Vaughn  foaf:name               Vince Vaughn@en   .dbpedia:Vince_Vaughn  dbpedia-owl:birthPlace  dbpedia:Minneapolis .


Detailed Information Check the Mapping Guide that defines the best practices for how to write clean, efficient mappings that extract lots of high-quality data Take a look at the Mapping Statistics to search for relevant infoboxes to map. How to edit the DBpedia ontology How to edit infobox and table mappings Use the DBpedia Extraction Framework to extract structured dataPrerequisites

If you would like to edit the mappings or ontology schema this is what you need:

a user account on this wiki (login/sign up) editor rights: application for editor rights is done by: register for http://forum.dbpedia.org ask for editor rights here. Include your user name in the message and a short introduction of yourself. a namespace for the language you want to write mappings for if the namespace does not exist already (see the left side bar) please request it at dbpedia-discussion@lists.sourceforge.net If you will contribute frequently, get a Github account (see below)Editorial Process

A significant quality problem until 2015 was that there was neither bug tracking nor discussion on the best approaches. A major strength of Wikipedia and Wikidata is that editors are in constant discussion and there are established editorial processes. Such were missing on this mapping wiki, and it is our collective task to rectify the situation. If you find a problem:

Post a new issue to one of the following trackers, depending on the nature of the issue: Mapping: https://github.com/dbpedia/mappings-tracker/issues Ontology: https://github.com/dbpedia/ontology-tracker/issues Extraction framework: https://github.com/dbpedia/extraction-framework/issues Edit the corresponding Discussion page (of the mapping or ontology element): Describe the problem in detail. The reason to do it here and not in Github is so that we have most of the info in one place Provide a link to the issue Propose a solution if you'd likeBest Practices

If you write a best practice, list it here:

Mapping Guide (thorough) Adding a Mapping (shorter) Main Page#Editorial Process Main Page#Testing Best Practices

Focused investigations of massive problems that require discussion, fixes to many props/templates, documenting a pattern:

What's in a Name Connecting Places #29 Agent RelationsTesting Best Practices

Whenever we find or fix a problem, we should have some test cases for it. This serves many important purposes:

to illustrate the problem as proof it works after the problem is fixed to provide test cases for any bugs in the extraction framework (upstream bug reporting)

Every infobox mapping has a link "test this mapping", eg

http://mappings.dbpedia.org/server/mappings/fr/extractionSamples/Mapping_fr:Infobox_Ville_de_Serbie

Unfortunately this works mostly for EN dbpedia, see bug #289. But you can still test per resource, eg

http://mappings.dbpedia.org/server/extraction/fr/extract?title=Požega_(Serbie)revid=format=turtle-triples http://mappings.dbpedia.org/server/extraction/bg/extract?title=Лили+Ивановаrevid=format=turtle-triples

This is even better because it provides specific test cases. Also provide a link to the corresponding wiki pages in edit mode, so the markup can be seen immediately.Add these to the mapping's Discussion page.

Eg on Mapping fr talk:Infobox Ville de Serbie we have:

Testing: page: https://fr.wikipedia.org/w/index.php?title=Požega_(Serbie)action=edit result: http://mappings.dbpedia.org/server/extraction/fr/extract?title=Požega_(Serbie)revid=format=turtle-triples

We've asked the developers to add UTF-8 encoding #304, which will make it easier to inspect the output. Else you need to save it to file and open it in a proper editor.

Custom or Default Extractor

The above URLs use the default extractor, which extracts only labels and mappings. This is probably what you need for testing, since you're debugging the mapped triples, right?If you want to see more triples, add "extractors=custom" to the URL. This runs all available extractors.But there is a limit in the extraction samples (1000 triples?) so for big articles this may not return all expected triples.

Let's illustrate with Elvis Presley: custom 921 triples, default 118 triples.So the limit is not reached in this case.

Copy IRIs not URL-encoded

The URLs above use non-ASCII characters, so they are International Resource Identifiers (IRIs).These are readable and allow a user to see what they represent.But when you copy from the browser's address box, an IRI is URL-encoded to an unreadable ugliness like:

http://mappings.dbpedia.org/server/extraction/fr/extract?title=Po%C5%BEega_(Serbie)revid=format=turtle-triples http://mappings.dbpedia.org/server/extraction/bg/extract?title=%D0%9B%D0%B8%D0%BB%D0%B8+%D0%98%D0%B2%D0%B0%D0%BD%D0%BE%D0%B2%D0%B0revid=format=turtle-triples

The browsers do that for obscure historical reasons.Please be kind to your fellow editors and use an addon that preserves IRIs, eg:

Chrome addon: Copy URL

If you don't have such, you can use this trick:

Copy everything but the first letter "m" Paste, then add the missing letter "m" (or "http://m").Domain Validation

The Domain Validation service generates a list of domain exceptions, updating it daily.For more information please refer to A. Dimou, D. Kontokostas, M. Freudenberg, R. Verborgh, J. Lehmann, E. Mannens, S. Hellmann, and R. Van de Walle. Assessing and refining mappings to rdf to improve dataset quality. In Proceedings of the 14th International Semantic Web Conference, Oct. 2015.

For each predicate used in a mapping, it shows the expected domain class (defined for the predicate) and existing class (corresponding to that mapping).Please filter for your language (the first column) and correct as many errors as you can:

Make the existing class into a subclass of expected, OR Correct (usually raise) the domain of predicate, OR Correct the mapping to use the expected mapToClass

In all cases, document the property according to the changes you made! You can see some examples of such changes in this list of contributions

That's it!

That is all you need to kick-start. Your contributions will be available:

in the DBpedia Live end point shortly after your edit (currently only for English) in the next DBpedia datasets release

Happy mapping!

About DBpedia

To learn more about DBpedia itself visit http://dbpedia.org/About.

Retrieved from "http://wifo5-03.informatik.uni-mannheim.de/index.php?title=Main_Pageoldid=53546" Navigation menu Views Page Discussion View source History Personal tools Create account Log in Navigation Main page Recent changes Random page Help DBpedia Ontology Classes Ontology Dataypes Ontology Properties Mappings (ar) Mappings (az) Mappings (be) Mappings (bg) Mappings (bn) Mappings (ca) Mappings (ceb) Mappings (Commons) Mappings (cs) Mappings (cy) Mappings (da) Mappings (de) Mappings (el) Mappings (en) Mappings (eo) Mappings (es) Mappings (et) Mappings (eu) Mappings (fa) Mappings (fi) Mappings (fr) Mappings (ga) Mappings (gl) Mappings (hi) Mappings (hr) Mappings (hu) Mappings (hy) Mappings (id) Mappings (it) Mappings (ja) Mappings (ko) Mappings (lt) Mappings (lv) Mappings (mk) Mappings (mt) Mappings (nl) Mappings (pl) Mappings (pt) Mappings (ru) Mappings (ro) Mappings (sk) Mappings (sl) Mappings (sr) Mappings (sv) Mappings (tr) Mappings (uk) Mappings (ur) Mappings (vi) Mappings (war) Mappings (zh) Tools What links here Related changes Special pages Printable version Permanent link Page informationCite this page This page was last modified on 10 July 2019, at 14:43. This page has been accessed 1,113,258 times. Privacy policy About DBpedia Mappings Disclaimers

TAGS:DBpedia Mappings 

<<< Thank you for your visit >>>

Websites to related :
Irvine Sensorium

  keywords:key, words
description:Description
Center of Emergency Response Technologies , Donald Bren School of Information and Computer Science ,

Men Of Praise Motorcycle Ministr

  keywords:
description:
Men Of Praise Motorcycle MinistryHeaven Bound by the Grace of GodPagesHomeABOUTEvents Wednesday, October 16, 2

AU BON POINT

  keywords:
description:
AU BON POINT Menu Skip to content Home Pochette

Greensboro Science Center

  keywords:
description:The Greensboro Science Center is an aquarium, museum, zoo, and treetop adventure park in Greensboro, North Carolina

Zoo d'Asson Parc Exotique des Py

  keywords:zoo, parc, jardins, parc animalier, pyrénées, paysages, nature, montagne, éducation, conservation, environnement, enfants, jeunesse, div

Colleges and Degrees | Online Co

  keywords:
description:Find the best colleges and universities online – The Encyclopedia of Higher Education - CollegeAtlas.org
Colleges Universities

Ocgoodwill.org - Website Informa

  keywords:
description:
ip-address.comHomeMy IPSpeedtestSitemapProxy CheckerProxy ListVerify Email AddressTrace Email AddressIP to Zip CodeIP Address D

klutzgames

  keywords:
description:
Toggle navigation

Canterbury Disaster Salvage Team

  keywords:disasters, fire, flood, earthquake, tsunami, volcanic eruption, risk mitigation, pests, vandalism, mould, water damage, burnt material, disas

Hotels.ng: Book the best Hotels

  keywords:lodging, accommodation, hotel, Hotels, special offers, packages, specials, weekend breaks, city breaks, deals, budget, cheap, discount, savin

ads

Hot Websites