<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Sebastian Schaffert &#187; Semantic Web</title>
	<atom:link href="http://www.schaffert.eu/category/semantic-web/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.schaffert.eu</link>
	<description>Homepage of Sebastian Schaffert</description>
	<lastBuildDate>Mon, 19 Dec 2011 16:54:17 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Goals of Reasoning for the Semantic Web in Practice</title>
		<link>http://www.schaffert.eu/2011/09/01/goals-of-reasoning-for-the-semantic-web-in-practice/</link>
		<comments>http://www.schaffert.eu/2011/09/01/goals-of-reasoning-for-the-semantic-web-in-practice/#comments</comments>
		<pubDate>Thu, 01 Sep 2011 11:33:27 +0000</pubDate>
		<dc:creator>wastl</dc:creator>
				<category><![CDATA[KIWI]]></category>
		<category><![CDATA[Semantic Web]]></category>

		<guid isPermaLink="false">http://www.schaffert.eu/?p=616</guid>
		<description><![CDATA[I recently summarised the different means of reasoning on the Semantic Web in a discussion on the Apache Stanbol mailinglist. I thought I might also share my views publicly in my blog I think that large parts of the Semantic Web community lost track of the actual (practical) goals of reasoning. Please think of actual, [...]]]></description>
			<content:encoded><![CDATA[<p>I recently summarised the different means of reasoning on the Semantic Web in a discussion on the Apache Stanbol mailinglist. I thought I might also share my views publicly in my blog <img src='http://www.schaffert.eu/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
<p>I think that large parts of the Semantic Web community lost track of the actual (practical) goals of reasoning. Please think of actual, practical use cases. The actual kind of reasoning employed is then derived from this goal &#8211; not the other way round. In the following, I summarise the three different possible approaches to reasoning:</p>
<p><strong>schema validation</strong></p>
<p>This is the typical reasoning applied in the Semantic Web domain. I always found its usefulness very limited and therefore this is only mildly interesting to me. How often will you really need to check whether a model is consistent? Usually only during development, if at all. Even worse: when operating on the World Wide Web you will *inevitably* have inconsistencies, so it is better to simply live with them and not care too much about consistent schemas, it will only drive you crazy (see below). <img src='http://www.schaffert.eu/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
<p>For schema validation, you will probably use some of the existing OWL and description logics reasoners like Hermit, FaCT, Racer, &#8230; but be aware that they are all rather complex and inefficient when dealing with bigger datasets, as you identified as a problem yourself.</p>
<p><strong>instance classification</strong></p>
<p>Instance classification means, informmaly, to figure out the type of a resource based on the existance of a schema or ontology for the data. Now this is at least *a bit* more interesting than schema validation, because it provides you with actual new information that you can make use of. It allows you to treat a Blog Post as a Document, a Meeting as a Location, etc. On the other hand, every programmer can implement you this kind of reasoning in a couple of hours in Java without any need of a reasoner.</p>
<p>For instance classification you can in the most simple case use an RDFS reasoner (very efficient). OWL reasoners are obviously also capable of this, but usually in practice not much better than RDFS reasoners so it is not worth the added complexity. Instance classification can furthermore be considered a specific case of implicit/rule-based knowledge.</p>
<p><strong>implicit/rule-based knowledge</strong></p>
<p>In this case, you extend your factual, static knowledge base (i.e. triples) by rules that represent implicit knowledge (e.g. &#8220;if a meeting M is located in a place P and P has coordinates X and Y, then M also has coordinates X and Y). This kind of reasoning is the classical way of representing knowledge in knowledge based systems and adds, in my opinion, real additional value to the information, because much human knowledge is actually rule-based. I consider this kind of reasoning the most interesting in an information system. Rule-based reasoners can cover instance classification as a special case and with a few extensions even most parts of consistency checking.</p>
<p>Rule-based reasoning is currently still a bit esoteric in the Semantic Web domain (Jena only uses it for implementing RDFS/OWL reasoning), as the reasoning topic has been &#8220;hijacked&#8221; by the Description Logics people. I often criticised this because of its impracticality, but noone would really listen <img src='http://www.schaffert.eu/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' />  There is the RuleML initiative which resulted in the specification of SWRL, but SWRL is seen as an extension of DL reasoning and thus suffers from the inefficiency of these reasoners. Outside the Semantic Web, the most successful rule-based reasoning system is probably Prolog and Datalog, both highly efficient systems but unfortunately not really present in the Java and RDF world.</p>
<p>Inside the &#8220;Linked Media Framework&#8221;, which we intend to integrate with Apache Stanbol, I have implemented a Datalog-style rule-based reasoner over RDF triples that can be evaluated very efficiently (see the link I sent above for the specification). Even though this reasoner has a quite restricted expressivity, it is still sufficient to cover many useful scenarios.</p>
<p><strong> On the usefulness of consistency checking for the Semantic Web</strong></p>
<p><em>1. Why do logics people care about consistency?</em></p>
<p>The whole topic of consistency checking is rooted in classical logics. It is founded in the &#8220;ex falsum quodlibet&#8221; rule of first order predicate logic, which basically says &#8220;if you have an inconsistency in your model, you can derive everything&#8221;. Maybe you still know the rule from your logics lectures <img src='http://www.schaffert.eu/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
<p>&#8220;false =&gt; A&#8221; is equivalent to &#8220;not false or A&#8221; is equivalent to &#8220;true&#8221;, regardless of A.</p>
<p>For example, in a strictly classical model sense, if you have a knowledge base saying &#8220;the car is red&#8221; and &#8220;the car is green&#8221; and &#8220;green is not red&#8221;, then you could derive that &#8220;the moon is made of green cheese and inhabited by small fur balls constantly discussing about how to best cook spaghetti&#8221;. Which is of course completey stupid, but completely valid in classical logic.</p>
<p>In a model in classical logics, this is a severe problem, because it means that you cannot derive anything useful at all even if you have just a small inconsistency.</p>
<p><em>2. Why is inconsistency irrelevant in many cases?</em></p>
<p>Inconsistency is only a problem in the ideal world of classical logics. Real-world implementations will never have the same kind of problems described above, how should they get the idea that the moon is made of green cheese based on the facts that the car is green and red at the same time? Software implementations are maybe constructive, but based on existing facts and not making up facts out of the blue sky.</p>
<p>The worst case that can happen is that the software will show some error behaviour. Instead of trying to enforce consistency (which in many cases you cannot), one challenge is to isolate the error as much as possible and keep it from spreading. Another challenge is to explain to the user why some unexpected behaviour takes place and how she can prevent it from happening.</p>
<p>The rule-based reasoner implemented in the LMF is completely ignorant to inconsistencies. It does not care at all about them. If you say the car is red and the car is green, then it will maybe derive that it should be tagged with &#8220;green&#8221; and with &#8220;red&#8221;. The error spreads maybe a bit, but the reasoner will never claim that the moon is made of green cheese. But maybe you were even right that the car is red and green at the same time (striped car)?</p>
<p>The rule-based reasoner implemented in the LMF will also display you explanations why it has inferred certain knowledge. If the car is tagged with red and tagged with green and you as the user wonder how this could be, you can hover the mouse over the tag and the reasoner will explain you that this is because someone said the car is green and someone said the car is red.</p>
<p><em>3. Why is dealing with inconsistency even desirable?</em></p>
<p>The world is full of inconsistencies. And the Web in particular. Neglecting this is the number one problem of the Semantic Web DL community. Accepting this is the number one success factor of the Linked Data initiative. Why is the Web so full of inconsistencies?</p>
<ul>
<li>people can have differing opinions about the world: you say &#8220;it is cold&#8221;, I say &#8220;it is warm&#8221;, and we are both right</li>
<li>different cultural conceptions: Spanish has one word for &#8220;snow&#8221;, Icelandic has 16 different words for &#8220;snow&#8221;</li>
<li>uncertainties: most circumstances do not fit into the ideal world of logics because of unknown or uncertain knowledge; a document might be concerned with a topic only to 30%, or the Stanbol entity recognition might only have a confidence of &#8220;15%&#8221; that &#8220;San Juan&#8221; is a person, &#8220;30%&#8221; that it is a city, &#8230; ; if you say &#8220;all ravens are black&#8221;, this is entirely based on observation and not on fact, there might be a white raven somewhere, you just don&#8217;t know it</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.schaffert.eu/2011/09/01/goals-of-reasoning-for-the-semantic-web-in-practice/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>KiWi at ESTC2010 and Vienna Semantic Web Winter Meetup</title>
		<link>http://www.schaffert.eu/2010/12/06/kiwi-at-estc2010-and-vienna-semantic-web-winter-meetup/</link>
		<comments>http://www.schaffert.eu/2010/12/06/kiwi-at-estc2010-and-vienna-semantic-web-winter-meetup/#comments</comments>
		<pubDate>Mon, 06 Dec 2010 10:53:02 +0000</pubDate>
		<dc:creator>wastl</dc:creator>
				<category><![CDATA[KIWI]]></category>
		<category><![CDATA[Semantic Web]]></category>

		<guid isPermaLink="false">http://www.schaffert.eu/?p=600</guid>
		<description><![CDATA[Last week was another milestone in the ongoing KiWi dissemination activities: the KiWi, John, Thomas and I went to Vienna by car to present the KiWi system and demo in the Vienna Semantic Web Winter Meetup to Semantic Web developers and then at the ESTC2010 to business oriented people. The Semantic Web Winter Meetup took [...]]]></description>
			<content:encoded><![CDATA[<p>Last week was another milestone in the ongoing KiWi dissemination activities: the KiWi, John, Thomas and I went to Vienna by car to present the KiWi system and demo in the Vienna Semantic Web Winter Meetup to Semantic Web developers and then at the ESTC2010 to business oriented people.</p>
<p>The <strong>Semantic Web Winter Meetup</strong> took place on 1st December at a nice location for cultural events. KiWi was sponsoring the event, and we had both, a KiWi presentation there and a stand where Thomas could show the KiWi system in action. About 60 people attended, and since the meetup was co-located with ESTC and other meetings, there were quite a number of international attendees as well. The picture shows Andreas Blumauer, myself and Leo Sauermann as the three speakers at the end of the event:</p>
<p><a href="http://www.schaffert.eu/wp-content/uploads/2010/12/facebook-20101201-2016-05.jpg"><img class="aligncenter size-full wp-image-603" title="facebook-20101201-2016-05" src="http://www.schaffert.eu/wp-content/uploads/2010/12/facebook-20101201-2016-05.jpg" alt="Andreas, me and Leo after the Semantic Web Meetup" width="800" height="533" /></a></p>
<p>And here is the KiWi demo stand mainly supervised by Thomas. We have one laptop running the demo in VirtualBox and powering three big screens at the same time, very nice:</p>
<p><a href="http://www.schaffert.eu/wp-content/uploads/2010/12/facebook-20101201-1813-02.jpg"><img class="aligncenter size-full wp-image-604" title="facebook-20101201-1813-02" src="http://www.schaffert.eu/wp-content/uploads/2010/12/facebook-20101201-1813-02.jpg" alt="The KiWi demo stand" width="800" height="533" /></a></p>
<p>We had a number of nice contacts and discussions at the event and I think it was really worthwhile to attend it. Especially since the audience were mostly practical development oriented and technologically very savy people that might join the KiWi community at some point.</p>
<p>On the 2nd and 3rd of December, we were sponsoring the <strong>European Semantic Technologies Conference (ESTC2010)</strong> also taking place in Vienna. This gave us the opportunity to again present KiWi in a invited presentation and a demo stand to interested audience, this time primarily industry people with a professional interest in Semantic Technologies. The following picture shows me and the KiWi waiting to give our presentation:</p>
<p><a href="http://www.schaffert.eu/wp-content/uploads/2010/12/facebook-20101203-1048-02.jpg"><img class="aligncenter size-full wp-image-602" title="facebook-20101203-1048-02" src="http://www.schaffert.eu/wp-content/uploads/2010/12/facebook-20101203-1048-02.jpg" alt="Waiting for the presentation ..." width="800" height="533" /></a></p>
<p>The presentation itself  was well attended (40-50 people) given the fact that many people were participating only the first day of ESTC and that there was a STI International general assembly in parallel. This picture shows the KiWi and me during the presentation:</p>
<p><a href="http://www.schaffert.eu/wp-content/uploads/2010/12/facebook-20101203-1112-06.jpg"><img class="aligncenter size-full wp-image-601" title="facebook-20101203-1112-06" src="http://www.schaffert.eu/wp-content/uploads/2010/12/facebook-20101203-1112-06.jpg" alt="Me and the KiWi presenting at ESTC2010" width="800" height="600" /></a></p>
<p>The KiWi demo stand was also a well visited place on both days. Thomas gave many demonstrations to interested people and I think we left a quite good impression with most of the ESTC participants. In the following picture I have a discussion with Mark Greaves from Vulcan, Inc. in the US:</p>
<p><a href="http://www.schaffert.eu/wp-content/uploads/2010/12/photo-20101202-173113.jpg"><img class="aligncenter size-full wp-image-605" title="photo-20101202-173113" src="http://www.schaffert.eu/wp-content/uploads/2010/12/photo-20101202-173113.jpg" alt="Discussions at the KiWi demo stand" width="800" height="533" /></a></p>
<p>Even at ESTC we had many interesting discussions, particularly also with venture capitalists, startups and other funding agencies that might take up the KiWi technology. Altogether also a worthwhile event for the KiWi team, and a good opportunity to demonstrate what the KiWi team has achieved in the last years.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.schaffert.eu/2010/12/06/kiwi-at-estc2010-and-vienna-semantic-web-winter-meetup/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ISWC2010 over, first impressions</title>
		<link>http://www.schaffert.eu/2010/11/11/iswc2010-over-first-impressions/</link>
		<comments>http://www.schaffert.eu/2010/11/11/iswc2010-over-first-impressions/#comments</comments>
		<pubDate>Thu, 11 Nov 2010 12:13:23 +0000</pubDate>
		<dc:creator>wastl</dc:creator>
				<category><![CDATA[KIWI]]></category>
		<category><![CDATA[Semantic Web]]></category>

		<guid isPermaLink="false">http://www.schaffert.eu/?p=597</guid>
		<description><![CDATA[With ISWC2010 in Shanghai just over, here are my first random impressions. Positive things first: the conference was very well organised (except Internet, as always), the rooms were comfortable and there were many power sockets, the presentation equipment very good. The demo session was a bit chaotic, though, but as I have already written, we [...]]]></description>
			<content:encoded><![CDATA[<p>With ISWC2010 in Shanghai just over, here are my first random impressions. Positive things first: the conference was very well organised (except Internet, as always), the rooms were comfortable and there were many power sockets, the presentation equipment very good. The demo session was a bit chaotic, though, but as I have already written, we were able to improvise to our benefit. The general setup was also very good, a mixture of research, applications and a bit of industry, workshops and tutorials as always, and also the doctoral consortium, the demo session and the lightning talks &#8211; the three things I really like at conferences. Highlights of the conference for me were also the invited talks by mc schraefel and from Facebook and the NYT.</p>
<p>About many other things I was not very happy. First, I found the quality of the presented work often rather low, many presentations were really boring and repeating the same things the community has been working on the last 10 years &#8211; someone used the term &#8220;least publishable unit&#8221;, and I had the impression this holds for many presentations. I cannot really believe that with the low acceptance rate of ISWC there are still so many low-quality papers. But perhaps my notion of low-quality is different than the one of the rest of the community. After 10 years of ISWC, I would have expected more application-oriented results to be presented. Application-oriented in the sense of &#8220;solving real-world problems with semantic technologies&#8221;. But such papers were only few, even in the in-use track of the conference.</p>
<p>Second, I have the impression that the community is now divided into two large fractions: the &#8220;ontologists&#8221; and the &#8220;linked data people&#8221;, and some outsiders like the Social Semantic Web people. When I exaggerate a bit I would say that the ontologists still try to model all the world in schemas, preferrably description logics, ignoring all instance data, and the linked data people only care about instance data, ignoring most schema and ontology work. Even worse, both communities are now facing problems that the others have already addressed, but at least partly ignore the outcomes of the other communities. And both groups behave a bit arrogantly towards each other (and everyone outside). And again, neither of the two is really concerned with solving real-world problems. Which is ok for some time. But after 10 years &#8230;</p>
<p>Third, I found the selection of best paper and expecially of the winner of the Semantic Web Challenge really a bit strange. But maybe this is again my different perception of what is a good work (problem driven) and what is not&#8230; I would have voted for the Saffron explorer developed by the colleagues at DERI, because it is a useful application with a nice and simple user interface.</p>
<p>And finally, I find the way standardisation is carried out a bit strange (referring to both, RDF 1.1 and RIF). Most of the process is &#8220;design by committee&#8221;, which only rarely leads to an optimal outcome. Also, problems are only addressed when there is someone interested in solving them, and not because they are important problems that need to be solved. A very academic approach, because I think for the Semantic Web to take of we would also need to address the problems that nobody wants to work on, not only those that are fun.</p>
<p>Enough criticism. Otherwise I really enjoyed the conference, there were many nice presentations as well, many old friends, and many interesting discussions. And I am looking forward to ISWC2011 in Koblenz, particularly to the &#8220;Semantic Web Persona Challenge&#8221; proclaimed by mc schraefel <img src='http://www.schaffert.eu/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.schaffert.eu/2010/11/11/iswc2010-over-first-impressions/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>KiWi Demo at ISWC2010 in Shanghai</title>
		<link>http://www.schaffert.eu/2010/11/10/kiwi-demo-at-iswc2010-in-shanghai/</link>
		<comments>http://www.schaffert.eu/2010/11/10/kiwi-demo-at-iswc2010-in-shanghai/#comments</comments>
		<pubDate>Wed, 10 Nov 2010 01:23:57 +0000</pubDate>
		<dc:creator>wastl</dc:creator>
				<category><![CDATA[KIWI]]></category>
		<category><![CDATA[Semantic Web]]></category>
		<category><![CDATA[Social Software]]></category>
		<category><![CDATA[kiwiknows]]></category>

		<guid isPermaLink="false">http://www.schaffert.eu/?p=592</guid>
		<description><![CDATA[After the successful KiWi release party in Vienna, the KiWi has now started its tour around the world: current stop is Shanghai, China, at the ISWC2010 conference, where Thomas and I are representing the project. After several days of workshops, yesterday evening (Shanghai time) finally was our opportunity to present KiWi for the first time [...]]]></description>
			<content:encoded><![CDATA[<p>After the successful <a href="http://www.schaffert.eu/2010/10/18/kiwi-release-party-vienna-14102010/">KiWi release party</a> in Vienna, the KiWi has now started its tour around the world: current stop is Shanghai, China, at the <a href="http://iswc2010.semanticweb.org/">ISWC2010</a> conference, where Thomas and I are representing the project. After several days of workshops, yesterday evening (Shanghai time) finally was our opportunity to present KiWi for the first time outside Europe at the conference&#8217;s demo session. Since the convention centre is apparently not prepared for demo and poster sessions, we had to improvise a bit in the beginning (carrying around tables and chairs), which in the end resulted in an even better demo booth than we usually have. A table full of KiWi dissemination material!</p>
<p><a href="http://www.schaffert.eu/wp-content/uploads/2010/11/blog-20101109-001.jpg"><img class="aligncenter size-full wp-image-593" title="blog-20101109-001" src="http://www.schaffert.eu/wp-content/uploads/2010/11/blog-20101109-001.jpg" alt="" width="600" height="450" /></a></p>
<p>Many guests attended our demo, so that we were really happy that we both went to Shanghai instead of sending only one person. Since we had a large table, we could give the KiWi demo at two laptops in parallel! We had many interesting discussions, and I think that we could get quite a lot of people interested in the project. KiWi has so much to offer that there is something in it for almost all conference attendees. I didn&#8217;t check the download figures yet, but I am sure they are going to increase. Just a pity that we only had 3 hours (2 were planned) to give the demo &#8230;</p>
<p><a href="http://www.schaffert.eu/wp-content/uploads/2010/11/blog-20101109-002.jpg"><img class="aligncenter size-full wp-image-594" title="blog-20101109-002" src="http://www.schaffert.eu/wp-content/uploads/2010/11/blog-20101109-002.jpg" alt="Thomas presenting the demo even before the demo session started ..." width="600" height="450" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.schaffert.eu/2010/11/10/kiwi-demo-at-iswc2010-in-shanghai/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>KiWi Prototype Release 0.7 (Milestone 3)</title>
		<link>http://www.schaffert.eu/2009/12/23/kiwi-prototype-release-0-7-milestone-3/</link>
		<comments>http://www.schaffert.eu/2009/12/23/kiwi-prototype-release-0-7-milestone-3/#comments</comments>
		<pubDate>Wed, 23 Dec 2009 11:24:22 +0000</pubDate>
		<dc:creator>wastl</dc:creator>
				<category><![CDATA[KIWI]]></category>
		<category><![CDATA[Semantic Web]]></category>
		<category><![CDATA[Social Software]]></category>
		<category><![CDATA[kiwiknows]]></category>

		<guid isPermaLink="false">http://www.schaffert.eu/?p=440</guid>
		<description><![CDATA[Development activity in the last months has been so active that we didn&#8217;t manage to issue a KiWi release of acceptable stability. Now we are very proud to announce the availability of the next prototype prerelease! The changes and new features are too abundant to name them all (you can get a list of fixed [...]]]></description>
			<content:encoded><![CDATA[<p>Development activity in the last months has been so active that we didn&#8217;t manage to issue a KiWi release of acceptable stability. Now we are very proud to announce the availability of the next prototype prerelease! The changes and new features are too abundant to name them all (you can get a list of fixed issues in the <a href="http://wiki.kiwi-project.eu/atlassian-jira/secure/ReleaseNote.jspa?projectId=10010&amp;version=10051">Jira Changelog</a> for version 0.7). Here are the highlights:</p>
<ul>
<li><strong>Reasoning</strong>. This is the first release to include KiWi&#8217;s rule-based reasoner. The reasoner applies rules to triples in the triple store and allows to infer new triples based on this information. Rules can currently only be specified by developers (in a file called rules.txt), but we intend to open this to advanced users of the KiWi system. Evaluation is currently forward chaining with reason maintenance. Reason maintenance can also be used to &#8220;explain&#8221; to the user why certain triples have been inferred. This is for example visible in the &#8220;References&#8221; widget of the wiki when hovering the mouse over an inferred relation. The reasoning component has been implemented by Jakub Kotowski at the University of Munich.</li>
<li><strong>Querying</strong>. The 0.7 KiWi release also for the first time features the new and innovative querying component called &#8220;KWQL&#8221;. KWQL is an advanced query language that can be used as a replacement for the normal KiWi semantic search. It allows advanced query constructs for querying the structure of KiWi content in a simple-to-use language. KWQL also offers a visual query editor for composing queries. KWQL can be accessed by issuing an ordinary search and then clicking on &#8220;KWQL&#8221; besides the search input field. KWQL has been implemented by Klara Weiand and Steffen Hausmann at the University of Munich.</li>
<li><strong>Information Extraction</strong>. The 0.7 release of KiWi has also included a variety of different information extraction technologies (and more to come!) based on GATE and Semantic Vectors. For the moment, information extraction can be used for tag recommendation and recommendation of related articles. Using GATE, English or German texts can be analyzed and more precise tag recommendations can be made. Information extraction has been integrated by Marek Schmidt at the Technical University of Brno.</li>
<li><strong>Personalized Search</strong>. KiWi also now includes an option to personalize the search results based on the previous tagging activity of the user and the tags associated with the search results. To access personalized search, simply click on the &#8220;personalized search&#8221; checkbox in the search interface. Note that personalized search requires that you already have some information in your user profile (primarily  tagging behavious). Personalized Search has been implemented by Nilay Coskun and Fred Durao at the University of Aalborg.</li>
<li><strong>Community Equity</strong>. Release 0.7 is also the first KiWi version to have Sun&#8217;s Community Equity algorithm integrated in the system. <a href="http://blogs.sun.com/peterreiser/entry/community_equity_specification">Community Equity</a> is an algorithm that tries to determin the &#8220;social value&#8221; of information in a collaborative system by tracking how much interest is generated about a certain item. Community Equity is pretty sophisticated, featuring also an aging algorithm that avoids reputation being built up ad infinitum. Community Equity has been implemented by the Community Equity team at Sun (Josef, Dimitri, Max) and integrated by Mihai Radulescu at Salzburg Research.</li>
<li><strong>Optimistic Locking</strong>. KiWi 0.7 switched the data and transaction model to more error-proof optimistic locking; this also makes the system more reliable in concurrent situations, i.e. if two users change the same content. Optimistic Locking has been implemented by Stephanie Stroka at Salzburg Research.</li>
<li><strong>Simplified Setup</strong>. When starting for the first time, users are now guided through a semi-automatic setup process that makes configuring KiWi much simpler than it used to be. The setup process has been implemented by myself, and Mihai is now working on making it even more simpler, allowing users also to configure database and path settings via the Web-based interface.</li>
<li><strong>TagIT2</strong>. The TagIT application has been completely reimplemented and is scheduled for beta-testing starting January. New features are a completely new user interface, the possibility to display users in addition to news and blog posts, and many usability improvements. TagIT2 has mostly been implemented by Thomas Kurz at Salzburg Research.</li>
</ul>
<p>There have been many smaller enhancements that I cannot mention here in detail (Exhbit support, Facebook integration, FOAF+SSL integration, &#8230;) and even more bug fixes. Thanks a lot to all project members for their participation!</p>
<p><strong>Availability</strong></p>
<p>As usual, the KiWi release is available at the following locations:</p>
<ul>
<li>binary download (bundled with JBoss, ready-to-run): <a href="http://kenai.com/projects/kiwi/downloads/download/kiwi-jboss-0.7.zip">http://kenai.com/projects/kiwi/downloads/download/kiwi-jboss-0.7.zip</a> (250 MB)</li>
<li>source download: please use the KiWi Subversion repository at <a href="https://svn.salzburgresearch.at/svn/kiwi/KiWi/trunk">https://svn.salzburgresearch.at/svn/kiwi/KiWi/trunk</a> (latest revision) or <a href="https://svn.salzburgresearch.at/svn/kiwi/KiWi/tags/0.7">https://svn.salzburgresearch.at/svn/kiwi/KiWi/tags/0.7 </a>(0.7 release)</li>
<li>showcase/demo: the latest KiWi version can also be tried out at our showcase installation at <a href="http://showcase.kiwi-project.eu/KiWi/">http://showcase.kiwi-project.eu/KiWi/</a> ; be aware that the showcase is erased regularly and we don&#8217;t have much content in it currently (<strong>note</strong>: the showcase has been shut down over Christmas because vandals are misusing it for distributing their spam links and I don&#8217;t have the nerve to look at it over Christmas!)</li>
<li>issue tracking: please use the KiWi Jira at <a href="http://wiki.kiwi-project.eu/atlassian-jira/browse/KIWI">http://wiki.kiwi-project.eu/atlassian-jira/browse/KIWI</a> to report any issues you encounter</li>
<li>help: please use either the KiWi developer mailinglist (kiwi-devel@kiwi-project.eu) or the issue tracking for the moment; we are currently also in the process of setting up a wiki for the project</li>
</ul>
<p><strong>Road Map</strong></p>
<p>Undoubtedly, version 0.7 still contains many bugs. In the weeks after Christmas, we will therefore likely release minor updates improving the stability and reliability of the system. These will be numbered 0.7.x.</p>
<p>Version 0.8 of KiWi is scheduled for end of February 2010. It will have improved Community Equity support, first draft of permission management, and Semantic Forms support. Version 0.9 is scheduled for end of May and will feature an improved user interface and widget support based on SmartGWT. Version 1.0 (final) is scheduled for end of August, with one month of testing.</p>
<p>A KiWi handbook will be written starting September 2010. It will contain not only instructions on how to use the KiWi system but also practical examples and best practices on how it can be used.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.schaffert.eu/2009/12/23/kiwi-prototype-release-0-7-milestone-3/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Semantic Social Software = Linked People + Linked Content + Linked Data</title>
		<link>http://www.schaffert.eu/2009/07/15/semantic-social-software-linked-people-linked-content-linked-data/</link>
		<comments>http://www.schaffert.eu/2009/07/15/semantic-social-software-linked-people-linked-content-linked-data/#comments</comments>
		<pubDate>Wed, 15 Jul 2009 18:04:34 +0000</pubDate>
		<dc:creator>wastl</dc:creator>
				<category><![CDATA[KIWI]]></category>
		<category><![CDATA[Semantic Web]]></category>
		<category><![CDATA[Social Software]]></category>
		<category><![CDATA[linked content]]></category>
		<category><![CDATA[linked data]]></category>
		<category><![CDATA[linked media framework]]></category>
		<category><![CDATA[linked people]]></category>
		<category><![CDATA[semntic social software]]></category>

		<guid isPermaLink="false">http://www.schaffert.eu/?p=348</guid>
		<description><![CDATA[As you may know, my research area is &#8220;Semantic Social Software&#8221;, trying to combine social software ideas with Semantic Web technologies &#8211; for me a very promising approach that could bring the Semantic Web into practical applications and help to improve social software at the same time (see also my publications, e.g. ). During the [...]]]></description>
			<content:encoded><![CDATA[<p>As you may know, my research area is &#8220;Semantic Social Software&#8221;, trying to combine social software ideas with Semantic Web technologies &#8211; for me a very promising approach that could bring the Semantic Web into practical applications and help to improve social software at the same time (see also my publications, e.g. <a class="downloadlink" href="http://www.schaffert.eu/download/Schaffert2006_SemanticSocialSoftware.pdf" title=" heruntergeladen 507 mal" >Semantic Social Software: Semantically Enabled Social Software or Socially Enabled Semantic Web? (507)</a>). During the discussion of our new group strategy, I tried to clarify the topic a bit more, which resulted in the following illustration, which I&#8217;ll try to describe in the following:</p>
<p><img class="aligncenter size-full wp-image-349" title="snml-tng-vision" src="http://www.schaffert.eu/wp-content/uploads/2009/07/snml-tng-vision.png" alt="snml-tng-vision" width="600" height="301" /></p>
<p>Currently, there are several trends on the Internet, which I&#8217;ll in the following call &#8220;Linked People&#8221;, &#8220;Linked Content&#8221;, and &#8220;Linked Data&#8221;:</p>
<ul>
<li><strong>Linked Content</strong> is the most simple to explain; it describes basically the current state of the Web where content can be linked using hyperlinks. It is important to note that this content is meant primarily for <em>human consumption</em>, i.e. human-readable text, images, or other media files.</li>
<li><strong>Linked Data</strong> in contrast describes linking of data that is designed for <em>machine consumption</em>. At the base of Linked Data lies RDF as data exchange format. The people working on Linked Data are organised on the <a href="http://linkeddata.org/">Linked Data website</a>.</li>
<li><strong>Linked People</strong> now is the connection of individuals through the Internet using social networking platforms like Facebook, LinkedIn or Xing. &#8220;Linked People&#8221; is one of the most exciting developments of the last years and one of the pillars of the ongoing revolution that changes our society.</li>
</ul>
<p>Many applications follow one of these strands: most traditional Websites are &#8220;Linked Content&#8221;, most social networking platforms &#8220;Linked People&#8221;, and there are quite some interesting applications emerging based on &#8220;Linked Data&#8221;. There are even some applications that combine two of these lines (e.g. Facebook combines Linked People with Linked Content). <strong></strong></p>
<p><strong>What is mostly missing though is a connection of all three strands in one application</strong>. Such an application would allow people to connect with each other and share content, but would also expose its data in structured form to the Linked Data cloud (Linked Data Server) to be used by other applications and consume data from the Linked Data cloud (Linked Data Client) to enrich the user experience of the application itself. Our project <a href="http://www.kiwi-project.eu">KiWi</a> with its flexible platform for Semantic Social Software does the first steps into this direction. Henry Story&#8217;s <a href="http://esw.w3.org/topic/foaf+ssl">FOAF+SSL</a> is also an interesting approach in this area, if combined with social software applications. I believe that in the future we might see many more such applications &#8211; at least this is the direction that we will most likely be heading &#8230; <img src='http://www.schaffert.eu/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.schaffert.eu/2009/07/15/semantic-social-software-linked-people-linked-content-linked-data/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>KiWi July Meeting in Prague: Towards Integration</title>
		<link>http://www.schaffert.eu/2009/07/08/kiwi-july-meeting-in-prague-towards-integration/</link>
		<comments>http://www.schaffert.eu/2009/07/08/kiwi-july-meeting-in-prague-towards-integration/#comments</comments>
		<pubDate>Wed, 08 Jul 2009 19:07:04 +0000</pubDate>
		<dc:creator>wastl</dc:creator>
				<category><![CDATA[KIWI]]></category>
		<category><![CDATA[Semantic Web]]></category>
		<category><![CDATA[Social Software]]></category>
		<category><![CDATA[kiwiknows]]></category>
		<category><![CDATA[meeting]]></category>
		<category><![CDATA[prague]]></category>

		<guid isPermaLink="false">http://www.schaffert.eu/?p=340</guid>
		<description><![CDATA[Last week we had for the second time our KiWi meeting in Prague at the Sun Microsystems offices &#8211; almost a tradition by now.:-) The main goals of the meeting were to kick off the implementation of the enabling technologies and the integration and implementation in the use cases. Also, for the first time, we [...]]]></description>
			<content:encoded><![CDATA[<p>Last week we had for the second time our KiWi meeting in Prague at the Sun Microsystems offices &#8211; almost a tradition by now.:-) The main goals of the meeting were to kick off the implementation of the enabling technologies and the integration and implementation in the use cases. Also, for the first time, we organized the meeting as an &#8220;open space&#8221; without long Powerpoint presentation but instead with long and lively discussions.</p>
<p><img class="aligncenter size-full wp-image-345" title="kiwi-prague-2" src="http://www.schaffert.eu/wp-content/uploads/2009/07/kiwi-prague-2.jpg" alt="kiwi-prague-2" width="600" height="400" /><br />
<strong>KiWi Core System and Collaboration with INSEMTIVES</strong></p>
<p>On Thursday morning, we started with a general presentation of the current state of the KiWi system, mainly showing the demonstration given in <a href="http://www.schaffert.eu/2009/06/03/eswc-day-3-kiwi-poster-demo-day/">Heraklion at ESWC09</a> (which <a href="http://www.schaffert.eu/2009/06/04/kiwi-demo-at-eswc09-wins-best-demo-award/">won us the ESWC Best Demo Award</a>) and in <a href="http://www.schaffert.eu/2009/06/13/kiwi-review-in-luxembourg/">Luxemburg at the KiWi Review</a>. Furthermore, Marek showed the prototype for information extraction and annotation, and Klara a prototypical visual editor for her rule-based query language.</p>
<p>Besides the KiWi core system, Tobias Bürger from STI Innsbruck presented the ideas behind the FP7 <a href="http://www.insemtives.eu">INSEMTIVES project</a> to the KiWi consortium as a first step towards collaboration between INSEMTIVES and KiWi (he also <a href="http://blog.insemtives.eu/2009/07/insemtives-kiwi-collaboration/">blogged about it</a>). We see possibilities for collaboration at several levels: dissemination (i.e. joint organisation of events, joint publications), research (INSEMTIVES results could improve Community Equity) and technology (KiWi platform could be used in INSEMTIVES). We will further investigate a possible collaboration at the INSEMTIVES meeting in Innsbruck next week, where we are invited to present KiWi in turn.</p>
<p><strong>Enabling Technologies</strong></p>
<p>On Thursday afternoon, we took a look at the four KiWi enabling technologies and how they integrate with the rest of the KiWi system. Jakub started with presenting ideas for a rule-based language capable of reasoning over tags and RDF structures (after Klara already presented her work in the morning). We had a lively discussion on the different aspects of the rule languages, how they might be unified and fit together, and how they might serve the other parts of the KiWi system. We decided that what we would need as a first step would be a simple rule-language with forward chaining based on RDF, on top of which more complex ideas would be evaluated.</p>
<p>Next came a discussion on information extraction, based on what Marek presented in the morning. It was agreed that information extraction would be used (1) in the editor to support the user in semi-automatic annotation, and (2) in the importing functionality to automatically extract metadata and perform annotations. The information extraction component works by incremental training with positive and negative examples.</p>
<p>We concluded the afternoon session with a discussion on personalisation. Personalisation in KiWi means primarily recommendations, and secondarily user interface customisation. Peter introduced us into the multifactor recommendation algorithm the group in Aalboarg has been working on in the last year, and we discussed the different factors that might be used, including Sun&#8217;s Community Equity. We also discussed where recommendations might be useful.</p>
<p><img class="aligncenter size-full wp-image-344" title="kiwi-prague-1" src="http://www.schaffert.eu/wp-content/uploads/2009/07/kiwi-prague-1.jpg" alt="kiwi-prague-1" width="600" height="400" /></p>
<p><strong>Logica Use Case</strong></p>
<p>Friday morning started with a presentation of the current state of the Logica use case by Karsten. Karsten introduced into a &#8220;formalisation cycle&#8221; that moved from collaboratively created unstructured text in the KiWi system to structured data in the Logica Risk Management system and from there back to unstructured text in KiWi. What is currently already implemented is the export from the Logica system to KiWi using a custom templating mechanism. We discussed that we should try to replace this templating mechanism by RDFa only and that we should also investigate RDFa for forms (e.g. <a href="http://esw.w3.org/topic/PushBackDataToLegacySources">RDForms</a>). The connection between unstructured text and forms will then be realised using the RDFa annotation mechanism implemented by Marek.</p>
<p><strong>SunSpace Use Case</strong></p>
<p>The second half of Friday was dedicated to discussing the Sun Use Case, and the technologies and services we would need to integrate there to support the already existing SunSpace intranet. We agreed that it was unreasonable and unrealistic to expect that Sun would replace the existing Confluence installation in favor of KiWi, because the aim of KiWi cannot be to create yet another Wiki engine that competes with what is already there. Instead, in the SunSpace use case, the KiWi system will be more like an intelligent index that integrates content and data from already existing sources and offers additional value in the form of advanced services (e.g. search, tagging, &#8230;) and widgets that can be included on the user interface level (e.g. recommendations, tagging, metadata, &#8230;). The data integration will make use of existing technologies like Linked (Open) Data. We decided that we would contribute particularly to the update mechanism of Linked Data since this seems to be an issue that is yet not resolved.</p>
<p>A second major point of discussion was the integration of Sun&#8217;s Community Equity (CE) with KiWi. We decided that we would head for a rather tight integration at the EJB level rather than at the Web Service level, because then we will be able to use CE more easily for e.g. recommendation and search. This integration will take place until end of August.</p>
<p>Finally, we briefly discussed single sign on for KiWi and correspondingly, <a href="http://www.bblfish.net">Henry</a>&#8216;s suggestion for <a href="http://esw.w3.org/topic/foaf+ssl">FOAF+SSL</a>, which Steffi has already mostly implemented in KiWi. Also, an issue still to be solved for the SunSpace Use Case is how to handle permission management in KiWi.</p>
<p>We closed the meeting on Friday afternoon. Most said it was the most productive KiWi meeting we had yet and that we have moved much forward. I just hope that we can also hold the pace.:-)</p>
<p><em>Note</em>: I will upload figures and pictures as soon as I have them.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.schaffert.eu/2009/07/08/kiwi-july-meeting-in-prague-towards-integration/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>KiWi Demo at ESWC09 wins best demo award!</title>
		<link>http://www.schaffert.eu/2009/06/04/kiwi-demo-at-eswc09-wins-best-demo-award/</link>
		<comments>http://www.schaffert.eu/2009/06/04/kiwi-demo-at-eswc09-wins-best-demo-award/#comments</comments>
		<pubDate>Thu, 04 Jun 2009 14:02:39 +0000</pubDate>
		<dc:creator>wastl</dc:creator>
				<category><![CDATA[Events]]></category>
		<category><![CDATA[KIWI]]></category>
		<category><![CDATA[Semantic Web]]></category>

		<guid isPermaLink="false">http://www.schaffert.eu/?p=317</guid>
		<description><![CDATA[Not much more to say. A majority of the participants of the ESWC demo session voted for our KiWi demo! This is indeed a great feedback and a great achievement for the project!]]></description>
			<content:encoded><![CDATA[<p>Not much more to say. A majority of the participants of the ESWC demo session voted for our KiWi demo! This is indeed a great feedback and a great achievement for the project!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.schaffert.eu/2009/06/04/kiwi-demo-at-eswc09-wins-best-demo-award/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>ESWC Day 3: KiWi Poster &amp; Demo Day!</title>
		<link>http://www.schaffert.eu/2009/06/03/eswc-day-3-kiwi-poster-demo-day/</link>
		<comments>http://www.schaffert.eu/2009/06/03/eswc-day-3-kiwi-poster-demo-day/#comments</comments>
		<pubDate>Wed, 03 Jun 2009 07:30:38 +0000</pubDate>
		<dc:creator>wastl</dc:creator>
				<category><![CDATA[KIWI]]></category>
		<category><![CDATA[Semantic Web]]></category>
		<category><![CDATA[eswc09]]></category>
		<category><![CDATA[kiwiknows]]></category>

		<guid isPermaLink="false">http://www.schaffert.eu/?p=313</guid>
		<description><![CDATA[The third day of ESWC was the day of the poster and demo session. For me the demo session is always one of the highlights (if not the highlight) of the conference, because it is usually about things that are really working and not just about dead paper. Also, it is probably the most interactive [...]]]></description>
			<content:encoded><![CDATA[<p>The third day of ESWC was the day of the poster and demo session. For me the demo session is always one of the highlights (if not the highlight) of the conference, because it is usually about things that are really working and not just about dead paper. Also, it is probably the most interactive session of the conference, with people talking and discussing with each other. In all previous conferences I have always learned most in the poster &amp; demo session.</p>
<p>Of course, the session was also one of the premier parts of the conference for presenting our KiWi results. We had three posters presented by Klara, Steffi and Thomas, which have apparently attracted a lot of attention. And I was giving the KiWi Demo myself, demonstrating the outcomes of our work in the last 15 months. I cannot write much about the posters (because I didn&#8217;t have any time to look there), but the KiWi Demo was definately a huge success. I think I talked more than 3,5 hours non-stop during the demo session, and had many interesting discussions and feedback.</p>
<div class="ngg-galleryoverview" id="ngg-gallery-30-313">


	<!-- Piclense link -->
	<div class="piclenselink">
		<a class="piclenselink" href="javascript:PicLensLite.start({feedUrl:'http://www.schaffert.eu/wp-content/plugins/nextgen-gallery/xml/media-rss.php?gid=30&amp;mode=gallery'});">
			[Mit PicLens anzeigen]		</a>
	</div>
	
	<!-- Thumbnails -->
		
	<div id="ngg-image-834" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.schaffert.eu/wp-content/gallery/2009_06_02_eswc_demo/kiwi-demo-1.jpg" title="The KiWi with a flower, perparing the demo." class="thickbox" rel="set_30" >
								<img title="kiwi-demo-1.jpg" alt="kiwi-demo-1.jpg" src="http://www.schaffert.eu/wp-content/gallery/2009_06_02_eswc_demo/thumbs/thumbs_kiwi-demo-1.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-837" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.schaffert.eu/wp-content/gallery/2009_06_02_eswc_demo/kiwi-demo-2.jpg" title="The KiWi Demo booth before the session" class="thickbox" rel="set_30" >
								<img title="kiwi-demo-2.jpg" alt="kiwi-demo-2.jpg" src="http://www.schaffert.eu/wp-content/gallery/2009_06_02_eswc_demo/thumbs/thumbs_kiwi-demo-2.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-838" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.schaffert.eu/wp-content/gallery/2009_06_02_eswc_demo/kiwi-demo-3.jpg" title="KiWi watching over project folders before the conference." class="thickbox" rel="set_30" >
								<img title="kiwi-demo-3.jpg" alt="kiwi-demo-3.jpg" src="http://www.schaffert.eu/wp-content/gallery/2009_06_02_eswc_demo/thumbs/thumbs_kiwi-demo-3.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-839" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.schaffert.eu/wp-content/gallery/2009_06_02_eswc_demo/kiwi-demo-4.jpg" title="Sebastian awaiting the first demo attendees." class="thickbox" rel="set_30" >
								<img title="kiwi-demo-4.jpg" alt="kiwi-demo-4.jpg" src="http://www.schaffert.eu/wp-content/gallery/2009_06_02_eswc_demo/thumbs/thumbs_kiwi-demo-4.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-840" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.schaffert.eu/wp-content/gallery/2009_06_02_eswc_demo/kiwi-at-beach.jpg" title="KiWi at the beach relaxing after a workful demo session" class="thickbox" rel="set_30" >
								<img title="kiwi-at-beach.jpg" alt="kiwi-at-beach.jpg" src="http://www.schaffert.eu/wp-content/gallery/2009_06_02_eswc_demo/thumbs/thumbs_kiwi-at-beach.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 	 	
	<!-- Pagination -->
 	<div class="ngg-clear"></div> 	
</div>

<p>P.S.: I&#8217;ll add some photos to this post as soon as the Internet is working a bit more reliably.:-)</p>
]]></content:encoded>
			<wfw:commentRss>http://www.schaffert.eu/2009/06/03/eswc-day-3-kiwi-poster-demo-day/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>ESWC Day 2: 4th Semantic Wiki Workshop</title>
		<link>http://www.schaffert.eu/2009/06/02/eswc-day-2-4th-semantic-wiki-workshop/</link>
		<comments>http://www.schaffert.eu/2009/06/02/eswc-day-2-4th-semantic-wiki-workshop/#comments</comments>
		<pubDate>Tue, 02 Jun 2009 07:47:33 +0000</pubDate>
		<dc:creator>wastl</dc:creator>
				<category><![CDATA[KIWI]]></category>
		<category><![CDATA[Semantic Web]]></category>
		<category><![CDATA[eswc09]]></category>
		<category><![CDATA[kiwiknows]]></category>
		<category><![CDATA[semwiki09]]></category>

		<guid isPermaLink="false">http://www.schaffert.eu/?p=309</guid>
		<description><![CDATA[The second day of ESWC09 was the day of the big event, the Semantic Wiki Workshop. Overall, it was really a big success, many interesting contributions, lively discussions, the number of participants just limited by the size of the room. Pictures are just making their way to Flickr over the slow Internet line (http://www.flickr.com/photos/tags/kiwiknows/). The [...]]]></description>
			<content:encoded><![CDATA[<p>The second day of ESWC09 was the day of the big event, the Semantic Wiki Workshop. Overall, it was really a big success, many interesting contributions, lively discussions, the number of participants just limited by the size of the room. Pictures are just making their way to Flickr over the slow Internet line (<a href="http://www.flickr.com/photos/tags/kiwiknows/">http://www.flickr.com/photos/tags/kiwiknows/</a>). <img src='http://www.schaffert.eu/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>The KiWi project was very present at the workshop, being one of the few big efforts in the area:</p>
<ul>
<li>Pavel and Marek started with presenting their ideas and prototype on information extraction; it is really nice to see how results get better and better in this area:-)</li>
<li>Rolf then discussed various approaches to synchronisation of data repositories that are used in the KiWi backend (relational database, triple store, SOLR index)</li>
<li>Fred and Peter presented different recommendation algorithms that they experiment with in the course of KiWi</li>
<li>and finally I did a rather short presentation of the KiWi platform, which I then demonstrated in the afternoon&#8217;s Open Space session</li>
</ul>
<p>The star of the workshop, though, was our cute toy kiwi which you&#8217;ll likely see on many photos on Flickr &amp; Co. Again, with minimal effort we have generated more awareness than by sponsoring a reception&#8230; <img src='http://www.schaffert.eu/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' />  Here is one such photo showing the SemWiki organisation team with the KiWi:</p>
<p><img class="aligncenter size-full wp-image-311" title="semwiki09-20" src="http://www.schaffert.eu/wp-content/uploads/2009/06/semwiki09-20.jpg" alt="semwiki09-20" width="600" height="450" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.schaffert.eu/2009/06/02/eswc-day-2-4th-semantic-wiki-workshop/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

