<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress/2.0.4" -->
<rss version="2.0" 
	xmlns:content="http://purl.org/rss/1.0/modules/content/">
<channel>
	<title>Comments for Djoerd Hiemstra's home page</title>
	<link>http://wwwhome.cs.utwente.nl/~hiemstra</link>
	<description>A bit of teaching, some research, shake well...</description>
	<pubDate>Sun, 21 Mar 2010 00:44:31 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.0.4</generator>

	<item>
		<title>Comment on Our new logo by Kees</title>
		<link>http://wwwhome.cs.utwente.nl/~hiemstra/2009/our-new-logo.html#comment-1023</link>
		<pubDate>Thu, 03 Dec 2009 13:33:09 +0000</pubDate>
		<guid>http://wwwhome.cs.utwente.nl/~hiemstra/2009/our-new-logo.html#comment-1023</guid>
					<description>Zie ook&lt;br /&gt;
http://www.youtube.com/watch?v=jsnLn7x1y6w (presentatie filmpje)&lt;br /&gt;
http://www.youtube.com/watch?v=bmVbfhC3L5k (uitleg filmpje gebruikt in
1e filmpje)</description>
		<content:encoded><![CDATA[Zie ook<br />
<a href='http://www.youtube.com/watch?v=jsnLn7&#215;1y6w' rel='nofollow'>http://www.youtube.com/watch?v=jsnLn7&#215;1y6w</a> (presentatie filmpje)<br />
<a href='http://www.youtube.com/watch?v=bmVbfhC3L5k' rel='nofollow'>http://www.youtube.com/watch?v=bmVbfhC3L5k</a> (uitleg filmpje gebruikt in
1e filmpje)
]]></content:encoded>
				</item>
	<item>
		<title>Comment on Our new logo by John</title>
		<link>http://wwwhome.cs.utwente.nl/~hiemstra/2009/our-new-logo.html#comment-1022</link>
		<pubDate>Thu, 03 Dec 2009 13:32:04 +0000</pubDate>
		<guid>http://wwwhome.cs.utwente.nl/~hiemstra/2009/our-new-logo.html#comment-1022</guid>
					<description>Waarom wij een punt nodig hebben:&lt;br /&gt;
http://www.youtube.com/watch?v=bpgC7hL15Uc</description>
		<content:encoded><![CDATA[Waarom wij een punt nodig hebben:<br />
<a href='http://www.youtube.com/watch?v=bpgC7hL15Uc' rel='nofollow'>http://www.youtube.com/watch?v=bpgC7hL15Uc</a>
]]></content:encoded>
				</item>
	<item>
		<title>Comment on Russian Summer School in Information Retrieval by Djoerd Hiemstra</title>
		<link>http://wwwhome.cs.utwente.nl/~hiemstra/2009/russian-summer-school-in-information-retrieval.html#comment-1016</link>
		<pubDate>Thu, 29 Oct 2009 09:40:47 +0000</pubDate>
		<guid>http://wwwhome.cs.utwente.nl/~hiemstra/2009/russian-summer-school-in-information-retrieval.html#comment-1016</guid>
					<description>&lt;p&gt;
In response to follow-up questions on my last last lecture, in which I did a life Expectation Maximization training on the blackboard, let me explain how it is done. From the top of my head, I had the following model (LaTeX-like equations):
&lt;/p&gt;
&lt;p&gt;
&lt;dl&gt;&lt;dd&gt;
  P(T&#124;D) = \sum_{A \in Authors of D} P(T&#124;A)P(A&#124;D)
&lt;/dd&gt;
&lt;dl&gt;
&lt;/p&gt;
&lt;p&gt;
where P(T&#124;A) is the author language model, and P(A&#124;D) is 1 over the
number of authors.
We're going to use EM to estimate the best author language models, and
the best author models are those that optimize the probability of the
data (the documents), so the likelihood function is something like:
&lt;/p&gt;
&lt;p&gt;
&lt;dl&gt;
&lt;dd&gt;
\prod_{D \in Documents} \prod{T \in D} \sum{A \in D}
(P(T&#124;A)P(A&#124;D))^{freq(T,D)}
&lt;/dd&gt;
&lt;/dl&gt;
&lt;/p&gt;
&lt;p&gt;
EM will give those estimates for P(T&#124;A) that maximize the likelihood
function. I assumed the documents are independent (product over
documents), and so are the terms given the documents (product over
terms). We're estimating P(T&#124;A), for every pair (term, author) in a
document there are two possibilities: it was either written by the
author (=1 occurrence), or not (=0 occurrences; i.e. it was written by
one of the other authors in the document). I do this for every
occurrence of a term in a document. So the steps are:
&lt;/p&gt;
&lt;p&gt;
&lt;dl&gt;
&lt;dt&gt;E-step:&lt;/dt&gt;
&lt;dd&gt;
  e_{T,A}  = \sum_D (  freq(T, D) * ( P(T&#124;A)P(A&#124;D) / ( \sum_{A' \in D}
P(T&#124;A')P(A'&#124;D) ) ) )
&lt;/dd&gt;
&lt;dt&gt;M-step:&lt;/dt&gt;
&lt;dd&gt;
  P_{new}(T&#124;A) = e_{T,A} / ( \sum_{T'} e_{T',A} )
&lt;/dd&gt;
&lt;/dl&gt;
&lt;/p&gt;
&lt;p&gt;
The M-step simply normalizes the probabilities of each author model. I
included a little &lt;a href="/~hiemstra/wp-content/em-example.pl" rel="nofollow"&gt;Perl script&lt;/a&gt; to show what happens.
&lt;/p&gt;
&lt;p&gt;
&lt;a href="http://picasaweb.google.com/ag.tsure/RuSSIR2009?feat=directlink#5386394347349456418" rel="nofollow"&gt;&lt;img src="/~hiemstra/wp-content/me-teaching.jpg" border="0" width="213" height="320" alt="Me teaching at RuSSIR" /&gt;&lt;/a&gt;&lt;br /&gt;Picture taken by &lt;a href="http://picasaweb.google.com/ag.tsure/RuSSIR2009" rel="nofollow"&gt;Alexander&lt;/a&gt;.
&lt;/p&gt;</description>
		<content:encoded><![CDATA[
<p>
In response to follow-up questions on my last last lecture, in which I did a life Expectation Maximization training on the blackboard, let me explain how it is done. From the top of my head, I had the following model (LaTeX-like equations):
</p>

<dl>
<dd>
  P(T|D) = \sum_{A \in Authors of D} P(T|A)P(A|D)
</dd>

<dl>

<p>
where P(T|A) is the author language model, and P(A|D) is 1 over the
number of authors.
We&#8217;re going to use EM to estimate the best author language models, and
the best author models are those that optimize the probability of the
data (the documents), so the likelihood function is something like:
</p>

<dl>

<dd>
\prod_{D \in Documents} \prod{T \in D} \sum{A \in D}
(P(T|A)P(A|D))^{freq(T,D)}
</dd>

</dl>

<p>
EM will give those estimates for P(T|A) that maximize the likelihood
function. I assumed the documents are independent (product over
documents), and so are the terms given the documents (product over
terms). We&#8217;re estimating P(T|A), for every pair (term, author) in a
document there are two possibilities: it was either written by the
author (=1 occurrence), or not (=0 occurrences; i.e. it was written by
one of the other authors in the document). I do this for every
occurrence of a term in a document. So the steps are:
</p>

<dl>

<dt>E-step:</dt>

<dd>
  e_{T,A}  = \sum_D (  freq(T, D) * ( P(T|A)P(A|D) / ( \sum_{A&#8217; \in D}
P(T|A&#8217;)P(A&#8217;|D) ) ) )
</dd>

<dt>M-step:</dt>

<dd>
  P_{new}(T|A) = e_{T,A} / ( \sum_{T&#8217;} e_{T&#8217;,A} )
</dd>

</dl>

<p>
The M-step simply normalizes the probabilities of each author model. I
included a little <a href="/~hiemstra/wp-content/em-example.pl" rel="nofollow">Perl script</a> to show what happens.
</p>

<p>
<a href="http://picasaweb.google.com/ag.tsure/RuSSIR2009?feat=directlink#5386394347349456418" rel="nofollow"><img src="/~hiemstra/wp-content/me-teaching.jpg" border="0" width="213" height="320" alt="Me teaching at RuSSIR" /></a><br />Picture taken by <a href="http://picasaweb.google.com/ag.tsure/RuSSIR2009" rel="nofollow">Alexander</a>.
</p>

]]></content:encoded>
				</item>
	<item>
		<title>Comment on Russian Summer School in Information Retrieval by Djoerd Hiemstra</title>
		<link>http://wwwhome.cs.utwente.nl/~hiemstra/2009/russian-summer-school-in-information-retrieval.html#comment-1013</link>
		<pubDate>Mon, 21 Sep 2009 10:19:38 +0000</pubDate>
		<guid>http://wwwhome.cs.utwente.nl/~hiemstra/2009/russian-summer-school-in-information-retrieval.html#comment-1013</guid>
					<description>&lt;p&gt;A small photo impression of the Russian Summer School in Information Retrieval:&lt;/p&gt;
&lt;p&gt;&lt;a href="/~hiemstra/images/russir01canal.jpg" rel="nofollow"&gt;&lt;img src="/~hiemstra/images/russir01canal.jpg" border="0" height="200" width="267" /&gt;&lt;/a&gt;&lt;br /&gt;A nice canal in St. Petersburg&lt;/p&gt;
&lt;p&gt;&lt;a href="/~hiemstra/images/russir06pavel.jpg" rel="nofollow"&gt;&lt;img src="/~hiemstra/images/russir06pavel.jpg" border="0" height="200" width="106" /&gt;&lt;/a&gt;&lt;br /&gt;Last minute organizational phone call by Pavel&lt;/p&gt;
&lt;p&gt;&lt;a href="/~hiemstra/images/russir07hermitage.jpg" rel="nofollow"&gt;&lt;img src="/~hiemstra/images/russir07hermitage.jpg" border="0" height="200" width="187" /&gt;&lt;/a&gt;&lt;br /&gt;The Hermitage&lt;/p&gt;
&lt;p&gt;&lt;a href="/~hiemstra/images/russir02arrival.jpg" rel="nofollow"&gt;&lt;img src="/~hiemstra/images/russir02arrival.jpg" border="0" height="267" width="200" /&gt;&lt;/a&gt;&lt;br /&gt;6:00 am local time: Jimmi arrives in Petrozavodsk (4 hours before lectures)&lt;/p&gt;
&lt;p&gt;&lt;a href="/~hiemstra/images/russir03sergey.jpg" rel="nofollow"&gt;&lt;img src="/~hiemstra/images/russir03sergey.jpg" border="0" height="267" width="118" align="top" /&gt;&lt;/a&gt;
&lt;a href="/~hiemstra/images/russir04pavel.jpg" rel="nofollow"&gt;&lt;img src="/~hiemstra/images/russir04pavel.jpg" border="0" height="267" width="124" /&gt;&lt;/a&gt;
&lt;a href="/~hiemstra/images/russir12kseniya.jpg" rel="nofollow"&gt;&lt;img src="/~hiemstra/images/russir12kseniya.jpg" border="0" height="267" width="150" /&gt;&lt;/a&gt;
&lt;br /&gt;Boat trip with Sergey, Pavel, and Kseniya&lt;/p&gt;
&lt;p&gt;&lt;a href="/~hiemstra/images/russir05music.jpg" rel="nofollow"&gt;&lt;img src="/~hiemstra/images/russir05music.jpg" border="0" height="188" width="267" /&gt;&lt;/a&gt;&lt;br /&gt;Karelian folk music and dance at the banquet&lt;/p&gt;
&lt;p&gt;&lt;a href="/~hiemstra/images/russir08tree.jpg" rel="nofollow"&gt;&lt;img src="/~hiemstra/images/russir08tree.jpg" border="0" height="200" width="267" /&gt;&lt;/a&gt;&lt;br /&gt;Sunday trip: decorated tree&lt;/p&gt;
&lt;p&gt;&lt;a href="/~hiemstra/images/russir09source.jpg" rel="nofollow"&gt;&lt;img src="/~hiemstra/images/russir09source.jpg" border="0" height="200" width="267" /&gt;&lt;/a&gt;&lt;br /&gt;Mineral water...&lt;/p&gt;
&lt;p&gt;&lt;a href="/~hiemstra/images/russir10source2.jpg" rel="nofollow"&gt;&lt;img src="/~hiemstra/images/russir10source2.jpg" border="0" height="200" width="267" /&gt;&lt;/a&gt;&lt;br /&gt;...no tap water&lt;/p&gt;
&lt;p&gt;&lt;a href="/~hiemstra/images/russir11taste.jpg" rel="nofollow"&gt;&lt;img src="/~hiemstra/images/russir11taste.jpg" border="0" height="267" width="200" /&gt;&lt;/a&gt;&lt;br /&gt;tastes rather, err, minerally&lt;/p&gt;
&lt;p&gt;&lt;a href="/~hiemstra/images/russir14me.jpg" rel="nofollow"&gt;&lt;img src="/~hiemstra/images/russir14me.jpg" border="0" height="160" width="213" /&gt;&lt;/a&gt;&lt;br /&gt;Me and a waterfall&lt;/p&gt;
&lt;p&gt;&lt;a href="/~hiemstra/images/russir16church2.jpg" rel="nofollow"&gt;&lt;img src="/~hiemstra/images/russir16church2.jpg" border="0" height="227" width="160" /&gt;&lt;/a&gt;&lt;br /&gt;Wooden church&lt;/p&gt;
&lt;p&gt;&lt;a href="/~hiemstra/images/russir17lenin.jpg" rel="nofollow"&gt;&lt;img src="/~hiemstra/images/russir17lenin.jpg" border="0" height="160" width="213" /&gt;&lt;/a&gt;&lt;br /&gt;This guy is still here&lt;/p&gt;
&lt;p&gt;&lt;a href="/~hiemstra/images/russir18pavel.jpg" rel="nofollow"&gt;&lt;img src="/~hiemstra/images/russir18pavel.jpg" border="0" height="160" width="213" /&gt;&lt;/a&gt;&lt;br /&gt;Back in St. Petersburg: Pavel in front of the Church of the Savior on Blood.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[
<p>A small photo impression of the Russian Summer School in Information Retrieval:</p>

<p><a href="/~hiemstra/images/russir01canal.jpg" rel="nofollow"><img src="/~hiemstra/images/russir01canal.jpg" border="0" height="200" width="267" /></a><br />A nice canal in St. Petersburg</p>

<p><a href="/~hiemstra/images/russir06pavel.jpg" rel="nofollow"><img src="/~hiemstra/images/russir06pavel.jpg" border="0" height="200" width="106" /></a><br />Last minute organizational phone call by Pavel</p>

<p><a href="/~hiemstra/images/russir07hermitage.jpg" rel="nofollow"><img src="/~hiemstra/images/russir07hermitage.jpg" border="0" height="200" width="187" /></a><br />The Hermitage</p>

<p><a href="/~hiemstra/images/russir02arrival.jpg" rel="nofollow"><img src="/~hiemstra/images/russir02arrival.jpg" border="0" height="267" width="200" /></a><br />6:00 am local time: Jimmi arrives in Petrozavodsk (4 hours before lectures)</p>

<p><a href="/~hiemstra/images/russir03sergey.jpg" rel="nofollow"><img src="/~hiemstra/images/russir03sergey.jpg" border="0" height="267" width="118" align="top" /></a>
<a href="/~hiemstra/images/russir04pavel.jpg" rel="nofollow"><img src="/~hiemstra/images/russir04pavel.jpg" border="0" height="267" width="124" /></a>
<a href="/~hiemstra/images/russir12kseniya.jpg" rel="nofollow"><img src="/~hiemstra/images/russir12kseniya.jpg" border="0" height="267" width="150" /></a>
<br />Boat trip with Sergey, Pavel, and Kseniya</p>

<p><a href="/~hiemstra/images/russir05music.jpg" rel="nofollow"><img src="/~hiemstra/images/russir05music.jpg" border="0" height="188" width="267" /></a><br />Karelian folk music and dance at the banquet</p>

<p><a href="/~hiemstra/images/russir08tree.jpg" rel="nofollow"><img src="/~hiemstra/images/russir08tree.jpg" border="0" height="200" width="267" /></a><br />Sunday trip: decorated tree</p>

<p><a href="/~hiemstra/images/russir09source.jpg" rel="nofollow"><img src="/~hiemstra/images/russir09source.jpg" border="0" height="200" width="267" /></a><br />Mineral water&#8230;</p>

<p><a href="/~hiemstra/images/russir10source2.jpg" rel="nofollow"><img src="/~hiemstra/images/russir10source2.jpg" border="0" height="200" width="267" /></a><br />&#8230;no tap water</p>

<p><a href="/~hiemstra/images/russir11taste.jpg" rel="nofollow"><img src="/~hiemstra/images/russir11taste.jpg" border="0" height="267" width="200" /></a><br />tastes rather, err, minerally</p>

<p><a href="/~hiemstra/images/russir14me.jpg" rel="nofollow"><img src="/~hiemstra/images/russir14me.jpg" border="0" height="160" width="213" /></a><br />Me and a waterfall</p>

<p><a href="/~hiemstra/images/russir16church2.jpg" rel="nofollow"><img src="/~hiemstra/images/russir16church2.jpg" border="0" height="227" width="160" /></a><br />Wooden church</p>

<p><a href="/~hiemstra/images/russir17lenin.jpg" rel="nofollow"><img src="/~hiemstra/images/russir17lenin.jpg" border="0" height="160" width="213" /></a><br />This guy is still here</p>

<p><a href="/~hiemstra/images/russir18pavel.jpg" rel="nofollow"><img src="/~hiemstra/images/russir18pavel.jpg" border="0" height="160" width="213" /></a><br />Back in St. Petersburg: Pavel in front of the Church of the Savior on Blood.</p>

]]></content:encoded>
				</item>
	<item>
		<title>Comment on Susan Dumais won the Salton award by What?</title>
		<link>http://wwwhome.cs.utwente.nl/~hiemstra/2009/susan-dumais-won-the-salton-award.html#comment-1010</link>
		<pubDate>Tue, 25 Aug 2009 02:52:25 +0000</pubDate>
		<guid>http://wwwhome.cs.utwente.nl/~hiemstra/2009/susan-dumais-won-the-salton-award.html#comment-1010</guid>
					<description>Incomprehensible. What contributions did she really make to the field of IR? She wasn't even the first author of LSA</description>
		<content:encoded><![CDATA[Incomprehensible. What contributions did she really make to the field of IR? She wasn&#8217;t even the first author of LSA
]]></content:encoded>
				</item>
	<item>
		<title>Comment on OpenSearch: share your search results by Djoerd Hiemstra</title>
		<link>http://wwwhome.cs.utwente.nl/~hiemstra/2008/opensearch-share-your-search-results.html#comment-1004</link>
		<pubDate>Thu, 13 Aug 2009 09:44:12 +0000</pubDate>
		<guid>http://wwwhome.cs.utwente.nl/~hiemstra/2008/opensearch-share-your-search-results.html#comment-1004</guid>
					<description>Interestingly, as an afterthought on this post. OpenSearch seems to be taken up by many important sites, for instance Twitter: 
http://search.twitter.com/search.atom?q=twente, or Flickr: 
http://api.flickr.com/services/feeds/photos_public.gne?tags=universiteit,twente
Although,  they do not provide the OpenSearch description file (see: http://www.cs.utwente.nl/~hiemstra/?feed=opensearch-description), nor do they follow the standard exactly, for instance: 
 http://en.wikipedia.org/w/api.php?format=xml&#038;action=opensearch&#038;search=twente</description>
		<content:encoded><![CDATA[Interestingly, as an afterthought on this post. OpenSearch seems to be taken up by many important sites, for instance Twitter: 
<a href='http://search.twitter.com/search.atom?q=twente,' rel='nofollow'>http://search.twitter.com/search.atom?q=twente,</a> or Flickr: 
<a href='http://api.flickr.com/services/feeds/photos_public.gne?tags=universiteit,twente' rel='nofollow'>http://api.flickr.com/services/feeds/photos_public.gne?tags=universiteit,twente</a>
Although,  they do not provide the OpenSearch description file (see: <a href='http://www.cs.utwente.nl/~hiemstra/?feed=opensearch-description' rel='nofollow'>http://www.cs.utwente.nl/~hiemstra/?feed=opensearch-description</a>), nor do they follow the standard exactly, for instance: 
 <a href='http://en.wikipedia.org/w/api.php?format=xml&#038;action=opensearch&#038;search=twente' rel='nofollow'>http://en.wikipedia.org/w/api.php?format=xml&#038;action=opensearch&#038;search=twente</a>
]]></content:encoded>
				</item>
	<item>
		<title>Comment on The Combination and Evaluation of Query Performance Prediction Methods by Djoerd Hiemstra</title>
		<link>http://wwwhome.cs.utwente.nl/~hiemstra/2008/the-combination-and-evaluation-of-query-performance-prediction-methods.html#comment-942</link>
		<pubDate>Wed, 22 Apr 2009 14:02:18 +0000</pubDate>
		<guid>http://wwwhome.cs.utwente.nl/~hiemstra/2008/the-combination-and-evaluation-of-query-performance-prediction-methods.html#comment-942</guid>
					<description>Woops, thanks for noting. I corrected the link. Best,  Djoerd.</description>
		<content:encoded><![CDATA[Woops, thanks for noting. I corrected the link. Best,  Djoerd.
]]></content:encoded>
				</item>
	<item>
		<title>Comment on The Combination and Evaluation of Query Performance Prediction Methods by Guillaume Corriveau</title>
		<link>http://wwwhome.cs.utwente.nl/~hiemstra/2008/the-combination-and-evaluation-of-query-performance-prediction-methods.html#comment-941</link>
		<pubDate>Tue, 21 Apr 2009 16:38:55 +0000</pubDate>
		<guid>http://wwwhome.cs.utwente.nl/~hiemstra/2008/the-combination-and-evaluation-of-query-performance-prediction-methods.html#comment-941</guid>
					<description>The pdf file is not the paper describe by this abstract... I would like if you can send me the paper :The Combination and Evaluation of Query Performance Prediction Methods.

Thanks

Guillaume Corriveau</description>
		<content:encoded><![CDATA[The pdf file is not the paper describe by this abstract&#8230; I would like if you can send me the paper :The Combination and Evaluation of Query Performance Prediction Methods.

Thanks

Guillaume Corriveau
]]></content:encoded>
				</item>
	<item>
		<title>Comment on Reind van de Riet passed away by Gio Wiederhold</title>
		<link>http://wwwhome.cs.utwente.nl/~hiemstra/2008/reind-van-de-riet-passed-away.html#comment-884</link>
		<pubDate>Sat, 27 Dec 2008 02:58:24 +0000</pubDate>
		<guid>http://wwwhome.cs.utwente.nl/~hiemstra/2008/reind-van-de-riet-passed-away.html#comment-884</guid>
					<description>Reind's death is a great shock to us all. He was our house guest 9 Dec-13 Dec 2008, and we had a very pleasant time.  A nice lunch with our grandson at Fishermen's wharf, a day in the redwoods with a little hike with our other grandkids, a short presentation at Stanford, a meeting with Terry Winograd, joining the annual emeriti reception hosted by John Hennessy, meeting with Don Knuth, his wife Jill, and other faculty there, a Baroque concert at Herbts, and on the morning of his departure listening to the organist at St. Mary's preparing for the Sunday concert. 

So we covered many of his wide-ranging interests, but we are sad not being able to repeat it when Voy and I are in Holland next June.

He was always so proud of having devoted his life to the VU, attracting students and faculty that are now well-known throughout. 

My best wishes and condolences to all of you.

Gio</description>
		<content:encoded><![CDATA[Reind&#8217;s death is a great shock to us all. He was our house guest 9 Dec-13 Dec 2008, and we had a very pleasant time.  A nice lunch with our grandson at Fishermen&#8217;s wharf, a day in the redwoods with a little hike with our other grandkids, a short presentation at Stanford, a meeting with Terry Winograd, joining the annual emeriti reception hosted by John Hennessy, meeting with Don Knuth, his wife Jill, and other faculty there, a Baroque concert at Herbts, and on the morning of his departure listening to the organist at St. Mary&#8217;s preparing for the Sunday concert. 

So we covered many of his wide-ranging interests, but we are sad not being able to repeat it when Voy and I are in Holland next June.

He was always so proud of having devoted his life to the VU, attracting students and faculty that are now well-known throughout. 

My best wishes and condolences to all of you.

Gio
]]></content:encoded>
				</item>
	<item>
		<title>Comment on Structured Text Retrieval Models by Chan</title>
		<link>http://wwwhome.cs.utwente.nl/~hiemstra/2008/structured-text-retrieval-models.html#comment-586</link>
		<pubDate>Sun, 13 Apr 2008 11:21:34 +0000</pubDate>
		<guid>http://wwwhome.cs.utwente.nl/~hiemstra/2008/structured-text-retrieval-models.html#comment-586</guid>
					<description>Respected Sir
I am Chan from Pakistan. Currently doing MPhil in Computer Science. I got your article on Structure Document Retrieval and found it a very good for the begginners like me to start with the basic concepts.
I appreciate your contribution in the IRS field.
Sir i want to know about current research issues/problems or areas currently work is in progress where. Especiaaly i will be delighted to know about most current Problems/research areas in Structured Document Retrieval Models. I studied your article, where u talked about explicit/implicit , static/dynamic structure?
Tell me are these the current research areas or already done with.
or Any other kind guidance from you
with regards
Chan
Pakistan</description>
		<content:encoded><![CDATA[Respected Sir
I am Chan from Pakistan. Currently doing MPhil in Computer Science. I got your article on Structure Document Retrieval and found it a very good for the begginners like me to start with the basic concepts.
I appreciate your contribution in the IRS field.
Sir i want to know about current research issues/problems or areas currently work is in progress where. Especiaaly i will be delighted to know about most current Problems/research areas in Structured Document Retrieval Models. I studied your article, where u talked about explicit/implicit , static/dynamic structure?
Tell me are these the current research areas or already done with.
or Any other kind guidance from you
with regards
Chan
Pakistan
]]></content:encoded>
				</item>
</channel>
</rss>
