LinkedData Trivia Game

Originally I got inspired by this recent post on HackerNews, where alex_g has built a quiz, which automatically generates questions from Wikipedia articles using natural language processing (NLP). However, I found the results not that satisfying, yet, and decides to build my own dynamic quiz. Instead of NLP processing I decided to use Linked Data as a base for generating questions. More precisely I’m using the DBPedia knowledge base to retreive fact information from, which mostly originates in Wikipedia articles as well. The data is structured as an RDF graph and can be queried using SPARQL. Despite from the official DBPedia SPARQL endpoint this little proof-of-concept-like app uses another webservice, kit-lod16-knowledge-panel, which I developed in the context of the Linked Open Data seminar at university. It is responsible for ranking RDF properties for specific RDF entities by relevance in order to decide, which one to display to an end-user (or include to a quiz).

Code on GitHub

Limitations

This project is not a production-ready app at all, but rather a proof-of-concept to experiment with. Currently, the major issue is performance. Since the app fires a bunch of rather expensive, non-optimized SPARQL queries at the public DBPedia endpoint, the whole process of generating a quiz question takes several seconds on average, sometimes even up to a minute. This could be optimized to a certain extent (e.g. currently there are at least 8 separate HTTP requests from this app plus a few more from the ranking webservice), but all in all querying RDF data is still pretty slow.

Another limitation is the way “wrong” answer options are generated. Currently, random values within a certain interval around the “correct” answer are generated for dates and numbers. For properties, whose rdfs:range are entities of a class, a random set of other entities from the same class is fetched from DBPedia and shown as alternative answers. However, string-valued answers, among others, are ignored completely, because it’s hard to auto-generate an alternative value for a plain string. There’s room for enhancement here.

A third way for improvement would be to include not only DBPedia, but also Yago, Wikidata and other sources.