Q 8 Blog Reviews » Posts for tag 'modigliani'

The Modigliani Test for Linked Data: Results

In a recent post, I outlined a kind of layman's test for the Semantic Web . I wrote that the tipping point for the Semantic Web may be when anyone can query a set of data about a historical figure and get a long list of structured results in return. I called this 'The Modigliani Test,' after my favorite artist Amedeo Modigliani. To pass this test, you must deliver - using Linked Data - a comprehensive list of locations of original Modigliani art works around the world. A developer named Atanas Kiryakov gave the test a good crack. In doing so, he illustrated the core issues facing the Semantic Web currently. Sponsor The challenge of this test is that there isn't currently enough linked data on the Web about Modigliani. Also the key data in this test is the locations of art works, which probably isn't one of the main data fields for art data when it's uploaded to the Web (artist name and art work title would be the two key data fields). Kiryakov wasn't the only person who attempted to pass the test; and in fact his results mirror what can be found already on the popular open database Freebase . However Kiryakov, who is the Executive Director of Bulgarian Semantic Technology company Ontotext AD , did a great job of explaining his methodology and noting the issues he faced. The Current State of Linked Data Queries The result of Kiryakov's attempt is a relatively short list of locations of Modigliani paintings around the world. He admits that the list isn't long enough, but says that it's the closest he could get - not just because of the limited amount of data in the Linked Data Web, but because it's "hard to query and use today." Essentially Kiryakov created code to query a few known Linked Data sets, with custom manipulations to output location data. This is what he came up with: PREFIX fb: PREFIX dbpedia: PREFIX dbp-prop: PREFIX dbp-ont: PREFIX umbel-sc: PREFIX rdf: PREFIX ot: SELECT DISTINCT ?painting_l ?owner_l ?city_fb_con ?city_db_loc ?city_db_cit WHERE ?p fb:visual_art.artwork.artist dbpedia:Amedeo_Modigliani ; fb:visual_art.artwork.owners [ fb:visual_art.artwork_owner_relationship.owner ?ow ] ; ot:preferredLabel ?painting_l. ?ow ot:preferredLabel ?owner_l . OPTIONAL { ?ow fb:location.location.containedby [ ot:preferredLabel ?city_fb_con ] . OPTIONAL ?ow dbp-prop:location ?loc. ?loc rdf:type umbel-sc:City ; ot:preferredLabel ?city_db_loc OPTIONAL ?ow dbp-ont:city [ ot:preferredLabel ?city_db_cit ] } That query was executed in a tool called LDSR , a "Linked Data Semantic Repository" created by Kiryakov's company Ontotext. He calls LDSR a "search engine for part of the linked data web." Ontotext's LDSR includes data from existing Linked Data repositories such as DBPedia, Freebase, Geonames, UMBEL and Wordnet. Here is a screenshot of Atanas Kiryakov's attempt to pass the Modigliani Test. He spent over an hour formulating the code used to generate this result. As you can see, the resulting list was just 8 items long and most of the locations are in major U.S. cities. This falls well short of a comprehensive list of Modigliani art work locations. For example, there's no data about Modigliani paintings in Europe - where Modigliani lived all his life. Other Sources of Modiglidata Kiryakov wrote that most of the data returned in the Modigliani example came from Freebase . Indeed, as RWW commenter Brian Karlak pointed out in our original post, you can get much the same result within Freebase itself . Another commenter, Michael, pointed to a non-technical results page . Kiryakov's result has a little more data, but not much more. However the point of Kiryakov's attempt and blog post was to point out the difficulty of passing the Modigliani Test right now. He noted that "getting useful information from LOD [Linked Open Data] quite often requires a lot of efforts to analyze and post-process them in order to get reasonable answers to structured queries." In other words, it's much more than just inputting a natural language query (note that the Freebase example was provided by a user there named masouras , so it's not something an average user could do). I should also mention that in the comments to the previous post, Bruce Wayne pointed to his company Factoetum's effort to pass the test - which had 7 results, including some different ones to Ontotext/Freebase. Like Kiryakov, Wayne noted that it's "nearly impossible" for non technical people to use the current solutions. Finally, to address an issue that some commenters raised in the previous post: yes it would be possible to pass the Modigliani Test with some manual human effort to track down location data. But that's cheating - we want to see this done using Linked Data. And not just for Modigliani works, but for any other artist. Much Work to Be Done Atanas Kiryakov concluded that "there is still a lot of work to be done, because we cannot expect wide usage and interest in the Semantic Web if writing such a query takes more than an hour and a lot of technical knowledge." While that's true, I thank Atanas for giving the Modigliani Test a crack. At least now I know to visit the Museum of Modern Art when I next go to New York! Let us know your thoughts on the Modigliani Test in the comments. Or perhaps you're a developer willing to take on this challenge? Discuss

d639378e2cgliani.jpg 125x150 The Modigliani Test for Linked Data: Results

Read more here:
The Modigliani Test for Linked Data: Results

Tags:artist, freebase, life, Linked, modern, modigliani, museum, search-engine, technology, thoughts, words

The Modigliani Test: The Semantic Web’s Tipping Point

In our recent posts about Structured Data , we've emphasized that most of the current initiatives have been around uploading new data to the Web - whatever the format. The U.S. and U.K. governments have led the way with their 'open data' websites, but much of that data isn't 'linked' yet . In other words, it's online - but siloed. So how do we get to the next stage of the Semantic Web, linking disparate data sets together so that people can begin to use that data? The tipping point for the long-awaited Semantic Web may be when you can query a set of data about someone not too famous, and get a long list of structured results in return. I've decided to term this 'The Modigliani Test.' Sponsor Amedeo Modigliani is one of my favorite artists. He was moderately famous during the early 20th century and has something of a cult following nowadays. But he's not Da Vinci or Picasso famous. What I'd like to do in a Semantic Web is type the following query into a search engine and get back a large list of results: tell me the locations of all the original paintings of Modigliani. As of today, there's no place to type that query in and get a list of structured data . The closest I can find to doing that is the Artcyclopedia entry for Modigliani, which has a list of locations for Modigliani artworks. It's great that they have the location data listed on one web page. However it's not structured data, so we can't query it. There's also not much order to the data, we have no idea if this is a comprehensive list, it's not verified data, and so on. In summary, there's a lot of data on the Web about the location of original art works - but much of it is in traditional 'document' web pages. What we're after is a giant database of art works, which anybody can query and re-use. Here's an early, overly geeky view at what a Linked Data of painting locations would look like (hat-tip @dakoller ): The above is a far from comprehensive list of art works by Hieronymus Bosch (a search for Modigliani, by the way, brought up zero results). Plus of course we need a much more intuitive UI, so that non-geeks can use it too. What do you think, when will The Modigliani Test be passed on the Web? Discuss

c7bc502b09i self.jpg 145x150 The Modigliani Test: The Semantic Webs Tipping Point

See the original post:
The Modigliani Test: The Semantic Web's Tipping Point

Tags:amedeo modigliani, following-query, Hieronymus Bosch, linked-data, list, location, locations, modigliani, original art works, search-engine, semantic, structured data, U.K., U.S., web, words

Open Thread: What Would You Build With a Web of Data?

Recently we looked at the state of Linked Data in 2010 , noting developments such as governments putting public data online and Thomson Reuters putting structure around commercial data using OpenCalais . In a follow-up post, we explained the distinction between Linked Data, Open Data and the Semantic Web . Georgi Kobilarov, who runs a Linked Data startup from Germany called Uberblic Labs , recently issued an interesting challenge on his blog. He asked: if we had a Web of Data, what would you build? Not to steal Georgi's thunder, but we think this is a great question to put to ReadWriteWeb readers too. Sponsor Here's Georgi's idea: "If we had a Web of Data, I would built an application for painless travel planning. It would integrate flight plans, train timetables, bus routes, car rental offers, etc. And the user would be able to just say: I want to go from A to B: Find me the best/cheapest/fastest routes. With a Web of Data, an application could do all that combining for me, the same way flight booking sites do that today for just flights." Here's my idea for an app that uses the Web of Data. I'd like a web site or app that allows me to discover the locations of original art works by my favorite artists, and then create travel itineraries for me to see some or all of those art works (most famous artists have their art works scattered around the world, in various museums and galleries). It's possible that there is a web directory of artists somewhere that has some or even all of this data already, but if so I haven't found it. I ask for this because every now and then I search the Web for a painting that I saw in a book. A recent example was a Modigliani painting that I was attempting to create a copy of , for my beginners acrylic painting class. The original painting was called "Portrait of Madame Hanka Zborowska." One of the results from Google told me that the original painting is located at the National Gallery of Modern Art, Rome, Italy. I could potentially spend hours hunting down the locations of Modigliani's paintings, using Google - and it's likely that some of the data isn't currently online. So it would be great if I could query one web site or app: tell me where all the originals of Modigliani's paintings are in the world, and draw me an itinerary for visiting all or some of them. Heck, maybe even book my flights and hotels! That's my example of what I'd build from a Web of Data. Now tell us what site or app you would like built , if the data was available on the Web. Discuss

2a80ec18a9a blue.jpg 136x150 Open Thread: What Would You Build With a Web of Data?

Follow this link:
Open Thread: What Would You Build With a Web of Data?

Tags:data, distinction, modigliani, national, open thread, semantic, user, World
© 2010 Q 8 Blog Reviews