<?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>gnTEAM &#187; Search Results  &#187;  &#8220;Conditional Random Fields&#8221;</title>
	<atom:link href="http://gnteam.cs.manchester.ac.uk/search/%22Conditional+Random+Fields%22/feed/rss2" rel="self" type="application/rss+xml" />
	<link>http://gnteam.cs.manchester.ac.uk</link>
	<description>Text extraction, analytics, mining</description>
	<lastBuildDate>Fri, 05 Mar 2021 17:44:55 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>https://wordpress.org/?v=4.2.37</generator>
	<item>
		<title>Temporal expression extraction with extensive feature type selection and a posteriori label adjustment</title>
		<link>http://gnteam.cs.manchester.ac.uk/publication/297998-temporal/</link>
		<comments>http://gnteam.cs.manchester.ac.uk/publication/297998-temporal/#comments</comments>
		<pubDate>Mon, 07 Mar 2016 11:11:15 +0000</pubDate>
		<dc:creator><![CDATA[mbelousov]]></dc:creator>
		
		<guid isPermaLink="false">http://gnteam.cs.manchester.ac.uk/?post_type=publication&#038;p=1642</guid>
		<description><![CDATA[<p>The post <a rel="nofollow" href="http://gnteam.cs.manchester.ac.uk/publication/297998-temporal/">Temporal expression extraction with extensive feature type selection and a posteriori label adjustment</a> appeared first on <a rel="nofollow" href="http://gnteam.cs.manchester.ac.uk">gnTEAM</a>.</p>
]]></description>
				<content:encoded><![CDATA[<p>The post <a rel="nofollow" href="http://gnteam.cs.manchester.ac.uk/publication/297998-temporal/">Temporal expression extraction with extensive feature type selection and a posteriori label adjustment</a> appeared first on <a rel="nofollow" href="http://gnteam.cs.manchester.ac.uk">gnTEAM</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://gnteam.cs.manchester.ac.uk/publication/297998-temporal/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CliNER</title>
		<link>http://gnteam.cs.manchester.ac.uk/resources/cliner/</link>
		<comments>http://gnteam.cs.manchester.ac.uk/resources/cliner/#comments</comments>
		<pubDate>Wed, 10 Feb 2016 13:07:39 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		
		<guid isPermaLink="false">http://gnteam.cs.manchester.ac.uk/resources/cliner/</guid>
		<description><![CDATA[<p>About CliNER CliNER is a command line tool for identification of mentions of four categories of clinically relevant events: Problems, Tests, Treatments and Clinical Departments. It also recognises and normalises clinical temporal expressions. It was developed as part of the i2b2 2012 text mining challenge and therefore has been trained&#8230; </p>
<p>The post <a rel="nofollow" href="http://gnteam.cs.manchester.ac.uk/resources/cliner/">CliNER</a> appeared first on <a rel="nofollow" href="http://gnteam.cs.manchester.ac.uk">gnTEAM</a>.</p>
]]></description>
				<content:encoded><![CDATA[<h2>About CliNER</h2>
<p>CliNER is a command line tool for identification of mentions of four categories of clinically relevant events: Problems, Tests, Treatments and Clinical Departments. It also recognises and normalises clinical temporal expressions. It was developed as part of the <a href="https://www.i2b2.org/NLP/TemporalRelations/">i2b2 2012 text mining challenge</a> and therefore has been trained and optimised on the i2b2 data.</p>
<p>For example, for input:</p>
<p align="center">He had surgery about 3 weeks ago and had the lining cleaned and a biopsy was performed.</p>
<p>CliNER will produce the following output (stand-off):</p>
<div class="xml">
<pre>&lt;?xml version="1.0" encoding="UTF-8" ?&gt;
&lt;ClinicalNarrativeTemporalAnnotation&gt;
&lt;TEXT&gt;&lt;![CDATA[
He had surgery about 3 weeks ago and had the lining cleaned and a biopsy was performed.
]]&gt;&lt;/TEXT&gt;
&lt;TAGS&gt;
&lt;EVENT id="E1" start="65" end="73" text="a biopsy" modality="FACTUAL" polarity="POS" type="TEST" /&gt;
&lt;EVENT id="E1" start="8" end="15" text="surgery" modality="FACTUAL" polarity="POS" type="TREATMENT" /&gt;
&lt;TIMEX3 id="T1" start="22" end="33" text="3 weeks ago" type="DATE" val="2014-07-29" mod="NA" /&gt;
&lt;/TAGS&gt;
</pre>
</div>
<p>System Architecture</p>
<ul>
<li>Implemented in Java, using <a href="http://ctakes.apache.org/">cTAKES</a>, <a href="http://crfpp.googlecode.com/">CRF++</a> and <a href="https://github.com/filannim/clinical-norma">Clinical NorMA</a></li>
<li>Support for multiple formats, currently supporting:
<ul>
<li>standoff XML</li>
<li>character offset-based format</li>
</ul>
</li>
</ul>
<p>Algorithm details<br />
Conditional random fields with IO scheme and five groups of features:</p>
<ul>
<li>Lexical features included the token itself, its lemma, and POS tag, as well as lemmas and POS tags of the surrounding tokens. Each token was also assigned features from its associated chunk (phrase): the type of phrase (nominal, verbal, etc), tense and aspect (if the phrase was verbal), the location of the token within the chunk (beginning or inside), and the presence of negation.</li>
<li>Domain features capture mentions of specific clinical/healthcare concepts. Mentions of Problem, Test, and Treatment (as generated by cTAKES) were assigned to the token.</li>
<li>Semantic role features model dependencies between the token and associated verb. Each token is assigned the role, the verb, and their combination (eg, ‘object+perform’) in order to capture particular verb–role preferences.</li>
<li>Section type feature represents the section type in which the token appeared.</li>
<li>Temporal expression (TE) features represent five features that indicated the presence of the five common types of constituents of TEs in a given token.</li>
</ul>
<p>More details on the architecture and the performance of the tool can be found in the paper below. Please cite this publication if you use CliNER:</p>
<p>Kovačević, A., Dehghan, A., Filannino, M., Keane, J. A., &amp; Nenadic, G. (2013). Combining rules and machine learning for extraction of temporal expressions and events from clinical narratives. <em>Journal of the American Medical Informatics Association</em>, 20(5), 859-866.</p>
<div>Contact <a href="http://gnteam.cs.manchester.ac.uk/staff/akovacevic/">Aleksandar Kovacevic</a> (<a href="http://informatika.ftn.uns.ac.rs/AleksandarKovacevic/">http://informatika.ftn.uns.ac.rs/AleksandarKovacevic/</a>, <a href="mailto:kocha78@gmail.com">kocha78@gmail</a>) with any questions, bugs and/or suggestions.</div>
<p>The post <a rel="nofollow" href="http://gnteam.cs.manchester.ac.uk/resources/cliner/">CliNER</a> appeared first on <a rel="nofollow" href="http://gnteam.cs.manchester.ac.uk">gnTEAM</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://gnteam.cs.manchester.ac.uk/resources/cliner/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Good Results in BioNLP 2009 Challenge</title>
		<link>http://gnteam.cs.manchester.ac.uk/challenges/bionlp2009/</link>
		<comments>http://gnteam.cs.manchester.ac.uk/challenges/bionlp2009/#comments</comments>
		<pubDate>Tue, 23 Jun 2015 12:00:27 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		
		<guid isPermaLink="false">http://gnode.dev/?page_id=75</guid>
		<description><![CDATA[<p>Our TEAM took part in the BioNLP 2009 Shared task on Event Extraction, organised by the Genia group. The main aim of the challenge was the extraction of bio-events from the literature, focusing particularly on molecular events involving proteins and genes. The shared task was designed to address a semantically rich information extraction&#8230; </p>
<p>The post <a rel="nofollow" href="http://gnteam.cs.manchester.ac.uk/challenges/bionlp2009/">Good Results in BioNLP 2009 Challenge</a> appeared first on <a rel="nofollow" href="http://gnteam.cs.manchester.ac.uk">gnTEAM</a>.</p>
]]></description>
				<content:encoded><![CDATA[<p>Our TEAM took part in the <a href="http://www-tsujii.is.s.u-tokyo.ac.jp/GENIA/SharedTask/" target="_blank">BioNLP 2009 Shared task</a> on <strong>Event Extraction</strong>, organised by the Genia group. The main aim of the challenge was the extraction of bio-events from the literature, focusing particularly on molecular events involving proteins and genes. The shared task was designed to address a semantically rich information extraction problem as a whole, divided into three subtasks. We took part in Task 1: <strong>Event detection and characterisation</strong>.</p>
<p>There were more than 40 teams who expressed initial interest in participating in the Challenge. Final submissions were received from 24 teams who completed task 1, and six teams each of tasks 2 and 3. The results for our TEAM show that we were right in the middle of the table (12th out of 24 teams), with good results on non-regulation events (8th for the F-score).</p>
<p>More details</p>
<ul>
<li><a href="http://www-tsujii.is.s.u-tokyo.ac.jp/GENIA/SharedTask/results/results-master.html" target="_blank">Detailed ranking results (our pseudonym is UNIMAN)</a></li>
<li>F. Sarafraz, J. Eales, R. Mohammadi, J. Dickerson, D. Robertson, G. Nenadic: <a href="http://gnode1.mib.man.ac.uk/Sarafraz_et_al.pdf" target="_blank"><b>Biomedical Event Detection using Rules, Conditional Random Fields and Parse Tree Distances</b> </a>, Proceedings of the BioNLP shared task 2009 (in press)</li>
</ul>
<p>Links:</p>
<ul>
<li><a href="http://www-tsujii.is.s.u-tokyo.ac.jp/GENIA/SharedTask/" target="_blank">BioNLP 2009 shared task</a></li>
<li><a href="http://compbio.uchsc.edu/BioNLP2009/index.shtml" target="_blank">BioNLP 2009 Workshop</a></li>
</ul>
<p>The post <a rel="nofollow" href="http://gnteam.cs.manchester.ac.uk/challenges/bionlp2009/">Good Results in BioNLP 2009 Challenge</a> appeared first on <a rel="nofollow" href="http://gnteam.cs.manchester.ac.uk">gnTEAM</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://gnteam.cs.manchester.ac.uk/challenges/bionlp2009/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Combining rules and machine learning for extraction of temporal expressions and events from clinical narratives</title>
		<link>http://gnteam.cs.manchester.ac.uk/publication/192467-combining/</link>
		<comments>http://gnteam.cs.manchester.ac.uk/publication/192467-combining/#comments</comments>
		<pubDate>Tue, 10 Nov 2015 11:46:27 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		
		<guid isPermaLink="false">http://localhost/~mbelousov/wp/?post_type=publication&#038;p=1466</guid>
		<description><![CDATA[<p>The post <a rel="nofollow" href="http://gnteam.cs.manchester.ac.uk/publication/192467-combining/">Combining rules and machine learning for extraction of temporal expressions and events from clinical narratives</a> appeared first on <a rel="nofollow" href="http://gnteam.cs.manchester.ac.uk">gnTEAM</a>.</p>
]]></description>
				<content:encoded><![CDATA[<p>The post <a rel="nofollow" href="http://gnteam.cs.manchester.ac.uk/publication/192467-combining/">Combining rules and machine learning for extraction of temporal expressions and events from clinical narratives</a> appeared first on <a rel="nofollow" href="http://gnteam.cs.manchester.ac.uk">gnTEAM</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://gnteam.cs.manchester.ac.uk/publication/192467-combining/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mining methodologies from NLP publications: A case study in automatic terminology recognition</title>
		<link>http://gnteam.cs.manchester.ac.uk/publication/151544-mining/</link>
		<comments>http://gnteam.cs.manchester.ac.uk/publication/151544-mining/#comments</comments>
		<pubDate>Tue, 10 Nov 2015 11:46:27 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		
		<guid isPermaLink="false">http://localhost/~mbelousov/wp/?post_type=publication&#038;p=1474</guid>
		<description><![CDATA[<p>The post <a rel="nofollow" href="http://gnteam.cs.manchester.ac.uk/publication/151544-mining/">Mining methodologies from NLP publications: A case study in automatic terminology recognition</a> appeared first on <a rel="nofollow" href="http://gnteam.cs.manchester.ac.uk">gnTEAM</a>.</p>
]]></description>
				<content:encoded><![CDATA[<p>The post <a rel="nofollow" href="http://gnteam.cs.manchester.ac.uk/publication/151544-mining/">Mining methodologies from NLP publications: A case study in automatic terminology recognition</a> appeared first on <a rel="nofollow" href="http://gnteam.cs.manchester.ac.uk">gnTEAM</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://gnteam.cs.manchester.ac.uk/publication/151544-mining/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Biomedical Event Detection using Rules, Conditional Random Fields and Parse Tree Distances</title>
		<link>http://gnteam.cs.manchester.ac.uk/publication/51901-biomedical/</link>
		<comments>http://gnteam.cs.manchester.ac.uk/publication/51901-biomedical/#comments</comments>
		<pubDate>Tue, 10 Nov 2015 11:46:04 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		
		<guid isPermaLink="false">http://localhost/~mbelousov/wp/?post_type=publication&#038;p=1494</guid>
		<description><![CDATA[<p>The post <a rel="nofollow" href="http://gnteam.cs.manchester.ac.uk/publication/51901-biomedical/">Biomedical Event Detection using Rules, Conditional Random Fields and Parse Tree Distances</a> appeared first on <a rel="nofollow" href="http://gnteam.cs.manchester.ac.uk">gnTEAM</a>.</p>
]]></description>
				<content:encoded><![CDATA[<p>The post <a rel="nofollow" href="http://gnteam.cs.manchester.ac.uk/publication/51901-biomedical/">Biomedical Event Detection using Rules, Conditional Random Fields and Parse Tree Distances</a> appeared first on <a rel="nofollow" href="http://gnteam.cs.manchester.ac.uk">gnTEAM</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://gnteam.cs.manchester.ac.uk/publication/51901-biomedical/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Good Results in BioNLP 2009 Challenge</title>
		<link>http://gnteam.cs.manchester.ac.uk/good-results-in-bionlp-2009-challenge/</link>
		<comments>http://gnteam.cs.manchester.ac.uk/good-results-in-bionlp-2009-challenge/#comments</comments>
		<pubDate>Sat, 01 Aug 2009 12:06:12 +0000</pubDate>
		<dc:creator><![CDATA[gnenadic]]></dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[bionlp]]></category>
		<category><![CDATA[Event Extraction]]></category>

		<guid isPermaLink="false">http://gnode.dev/?p=154</guid>
		<description><![CDATA[<p>Our TEAM took part in the BioNLP 2009 Shared task on Event Extraction, organised by the Genia group. The main aim of the challenge was the extraction of bio-events from the literature, focusing particularly on molecular events involving proteins and genes. The shared task was designed to address a semantically rich information extraction&#8230; </p>
<p>The post <a rel="nofollow" href="http://gnteam.cs.manchester.ac.uk/good-results-in-bionlp-2009-challenge/">Good Results in BioNLP 2009 Challenge</a> appeared first on <a rel="nofollow" href="http://gnteam.cs.manchester.ac.uk">gnTEAM</a>.</p>
]]></description>
				<content:encoded><![CDATA[<p>Our TEAM took part in the <a href="http://www-tsujii.is.s.u-tokyo.ac.jp/GENIA/SharedTask/" target="_blank">BioNLP 2009 Shared task</a> on <strong>Event Extraction</strong>, organised by the Genia group. The main aim of the challenge was the extraction of bio-events from the literature, focusing particularly on molecular events involving proteins and genes. The shared task was designed to address a semantically rich information extraction problem as a whole, divided into three subtasks. We took part in Task 1: <strong>Event detection and characterisation</strong>.</p>
<p>There were more than 40 teams who expressed initial interest in participating in the Challenge. Final submissions were received from 24 teams who completed task 1, and six teams each of tasks 2 and 3. The results for our TEAM show that we were right in the middle of the table (12th out of 24 teams), with good results on non-regulation events (8th for the F-score).</p>
<p>More details</p>
<ul>
<li><a href="http://www-tsujii.is.s.u-tokyo.ac.jp/GENIA/SharedTask/results/results-master.html" target="_blank">Detailed ranking results (our pseudonym is UNIMAN)</a></li>
<li>F. Sarafraz, J. Eales, R. Mohammadi, J. Dickerson, D. Robertson, G. Nenadic: <a href="http://gnode1.mib.man.ac.uk/Sarafraz_et_al.pdf" target="_blank"><b>Biomedical Event Detection using Rules, Conditional Random Fields and Parse Tree Distances</b> </a>, Proceedings of the BioNLP shared task 2009 (in press)</li>
</ul>
<p>Links:</p>
<ul>
<li><a href="http://www-tsujii.is.s.u-tokyo.ac.jp/GENIA/SharedTask/" target="_blank">BioNLP 2009 shared task</a></li>
<li><a href="http://compbio.uchsc.edu/BioNLP2009/index.shtml" target="_blank">BioNLP 2009 Workshop</a></li>
</ul>
<p>The post <a rel="nofollow" href="http://gnteam.cs.manchester.ac.uk/good-results-in-bionlp-2009-challenge/">Good Results in BioNLP 2009 Challenge</a> appeared first on <a rel="nofollow" href="http://gnteam.cs.manchester.ac.uk">gnTEAM</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://gnteam.cs.manchester.ac.uk/good-results-in-bionlp-2009-challenge/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
