<?xml version="1.0" encoding="UTF-8"?>
<TEI xml:space="preserve" xmlns="http://www.tei-c.org/ns/1.0" 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
xsi:schemaLocation="http://www.tei-c.org/ns/1.0 https://raw.githubusercontent.com/kermitt2/grobid/master/grobid-home/schemas/xsd/Grobid.xsd"
 xmlns:xlink="http://www.w3.org/1999/xlink">
	<teiHeader xml:lang="en">
		<fileDesc>
			<titleStmt>
				<title level="a" type="main">Exploiting Tree Kernels for High Performance Chemical Induced Disease Relation Extraction</title>
			</titleStmt>
			<publicationStmt>
				<publisher/>
				<availability status="unknown"><licence/></availability>
			</publicationStmt>
			<sourceDesc>
				<biblStruct>
					<analytic>
						<author>
							<persName><forename type="first">Nagesh</forename><forename type="middle">C</forename><surname>Panyam</surname></persName>
							<email>npanyam@student.unimelb.edu.au</email>
							<affiliation key="aff0">
								<orgName type="department">Department of Computing and Information Systems</orgName>
								<orgName type="institution">The University of Melbourne</orgName>
								<address>
									<country key="AU">Australia</country>
								</address>
							</affiliation>
						</author>
						<author>
							<persName><forename type="first">Karin</forename><surname>Verspoor</surname></persName>
							<email>karin.verspoor@unimelb.edu.au</email>
							<affiliation key="aff0">
								<orgName type="department">Department of Computing and Information Systems</orgName>
								<orgName type="institution">The University of Melbourne</orgName>
								<address>
									<country key="AU">Australia</country>
								</address>
							</affiliation>
						</author>
						<author>
							<persName><forename type="first">Trevor</forename><surname>Cohn</surname></persName>
							<email>t.cohn@unimelb.edu.au</email>
							<affiliation key="aff0">
								<orgName type="department">Department of Computing and Information Systems</orgName>
								<orgName type="institution">The University of Melbourne</orgName>
								<address>
									<country key="AU">Australia</country>
								</address>
							</affiliation>
						</author>
						<author>
							<persName><forename type="first">Kotagiri</forename><surname>Ramamohanarao</surname></persName>
							<email>kotagiri@unimelb.edu.au</email>
							<affiliation key="aff0">
								<orgName type="department">Department of Computing and Information Systems</orgName>
								<orgName type="institution">The University of Melbourne</orgName>
								<address>
									<country key="AU">Australia</country>
								</address>
							</affiliation>
						</author>
						<title level="a" type="main">Exploiting Tree Kernels for High Performance Chemical Induced Disease Relation Extraction</title>
					</analytic>
					<monogr>
						<imprint>
							<date/>
						</imprint>
					</monogr>
					<idno type="MD5">6144CFF543333A881A4717EA6E4FCBA3</idno>
				</biblStruct>
			</sourceDesc>
		</fileDesc>
		<encodingDesc>
			<appInfo>
				<application version="0.7.2" ident="GROBID" when="2023-03-24T20:55+0000">
					<desc>GROBID - A machine learning software for extracting information from scholarly documents</desc>
					<ref target="https://github.com/kermitt2/grobid"/>
				</application>
			</appInfo>
		</encodingDesc>
		<profileDesc>
			<abstract>
<div xmlns="http://www.tei-c.org/ns/1.0"><p>Machine learning approaches based on supervised classification have emerged as effective methods for Biomedical relation extraction such as the Chemical-Induced-Disease (CID) task. These approaches owe their success to a rich set of features crafted from the lexical and syntactic regularities in the text. Kernel methods are an effective alternative to manual feature engineering and have been successfully used in similar tasks such as text classification.</p><p>In this paper, we study the effectiveness of tree kernels for Chemical-Disease relation extraction. Our experiments demonstrate that subset tree kernels increase the F-score to 61.7% as compared to 57.9% achieved with simple feature engineering. We also describe the strengths and shortcomings of tree kernel approaches for the CID relation extraction task.</p></div>
			</abstract>
		</profileDesc>
	</teiHeader>
	<text xml:lang="en">
		<body>
<div xmlns="http://www.tei-c.org/ns/1.0"><head n="1">Introduction</head><p>Scientific publications in the fields of biomedical and life sciences are vast and growing fast <ref type="bibr" target="#b9">(Haas et al., 2014)</ref>. Prior research has shown that Chemicals and Diseases and their relationships are among the most searched topics by PubMed users <ref type="bibr" target="#b8">(Dogan et al., 2009)</ref>, due to their importance in applications such as toxicology, drug discovery and safety surveillance. Efforts to manually curate and extract these important concepts such as Chemicals and Diseases and their relationships have led to the creation of structured databases such as the Comparative Toxicogenomics Database (CTD) <ref type="bibr" target="#b7">(Davis et al., 2012)</ref>. However, manual curation is unlikely to scale <ref type="bibr" target="#b1">(Baumgartner et al., 2007)</ref> and has stimulated research interest in automated relation extraction.</p><p>The recent shared task for Chemical-Induced-Disease relation extraction (CID) organized by BioCreative-V <ref type="bibr" target="#b17">(Wei et al., 2015)</ref>, has made available a large body of annotated PubMed abstracts for the valuable Chemical-Disease relations. The shared task revealed that CID relation extraction is a difficult task with best reported systems achieving an F-score of about 57%. Study of the participating teams' approaches reveals that most approaches (14 out of 18) were based on Support Vector Machines (SVMs) <ref type="bibr" target="#b4">(Burges, 1998)</ref>, modeling relation extraction as a supervised classification problem. Most of these systems obtain their performance through a rich feature set that is manually crafted by studying the syntactic and lexical regularities in the text. Substantial performance boost is also drawn from custom heuristics such as postprocessing rules <ref type="bibr" target="#b18">(Zhou et al., 2016)</ref>. Designing such an effective relation extraction system involves extensive feature engineering and domain expertise.</p><p>Kernel methods in NLP <ref type="bibr" target="#b6">(Collins and Duffy, 2001)</ref> have been designed precisely to address this problem of manual feature engineering. These methods enable an efficient and comprehensive exploration of a very high dimensional feature space and to automatically adapt to the dominant patterns expressed in the training set.</p><p>In our work, we show that kernel methods can be used for boosting relation extraction performance without having to manually engineer additional features. We demonstrate through experiments that combining tree kernels over constituent parses with simple lexical and syntactic features can substantially enhance the performance of the CID task. We also discuss the strengths and weaknesses of these methods which can assist in the design of better methods in the future.</p><p>Our system is developed in the context of the CID subtask described in BioCreative-V <ref type="bibr" target="#b17">(Wei et al., 2015)</ref>. Many teams, including the top scoring team <ref type="bibr" target="#b17">(Wei et al., 2015)</ref>, model the CID task as a supervised binary classification problem. In addition to the annotated PubMed abstracts, alternate sources of information such as the Chemical Toxicology Database (CTD) <ref type="bibr" target="#b7">(Davis et al., 2012)</ref> were used. Similar biomedical relation extraction tasks that have been studied are drug-drug interaction <ref type="bibr" target="#b2">(Bjorne et al., 2011)</ref> and protein-protein interaction <ref type="bibr" target="#b11">(Lan et al., 2009)</ref>. A subsequence kernel was presented by <ref type="bibr" target="#b3">(Bunescu and Mooney, 2005)</ref> for protein-protein interaction extraction. Richer kernels that use constituent parses or dependency structures are studied in <ref type="bibr" target="#b5">(Chowdhury et al., 2011;</ref><ref type="bibr" target="#b0">Airola et al., 2008)</ref> for the protein-protein interaction extraction. Recent approaches have focused on broadening the scope of word matching from a simple lexical match to more complex semantic matching <ref type="bibr" target="#b16">(Saleh et al., 2014)</ref>. The suitability of these methods for the CID task remains to be explored.</p></div>
<div xmlns="http://www.tei-c.org/ns/1.0"><head n="3">Approach</head><p>Our goal is to minimize task specific and domain specific feature engineering. We therefore explore the power of domain independent techniques such as kernel methods for effective relation extraction. Kernel methods automatically explore a large feature space and can reduce the need for rich hand crafted features. In our system, we do not employ any preprocessing or custom filtering techniques. We use simple text based features and a knowledge base (CTD) look up as our primary feature set. Further knowledge extraction from text is accomplished through tree kernels.</p><p>We cast the CID relation extraction as a binary classification problem. The input to the classifier is a pair of chemical and disease mentions. From the set of predicted relation mentions, we extract their normalized entity ids (MeSH Ids) and add it to the final list of Chemical-Disease relations. We built and tested two types of classifiers, namely linear classifier and tree kernel classifier. The linear classifier uses a flat list of simple features. The tree kernel classifier uses kernel methods over constituent parse trees of input sentences. The detailed steps are described below: We used a Support Vector Machine (SVM) with linear kernel from Scikit <ref type="bibr" target="#b15">(Pedregosa et al., 2011)</ref> to classify candidate entity pairs. The predicted (C-D) pairs from the sentence level and document level classifiers are combined to form the final list of document level CID relations. We refer to this system as "Linear Classifier".</p><formula xml:id="formula_0">3.1</formula></div>
<div xmlns="http://www.tei-c.org/ns/1.0"><head n="3.2">Tree Kernel Classifier</head><p>Kernel methods have gained wide spread acceptance, because they allow direct computation of similarity (dot product) between two examples in an implicitly mapped high dimensional Entity focus is incorporated by prefixing special tags such as "pre", "mid", "post", "Chemical" and "Disease". . space <ref type="bibr" target="#b6">(Collins and Duffy, 2001;</ref><ref type="bibr">Zelenko et al., 2002)</ref>. A tree kernel implicitly maps a given tree into a very high dimensional feature space of tree fragments, as illustrated with an example in Figure <ref type="figure" target="#fig_0">1</ref>. The kernel score between two trees is the count of common tree fragments between them. We used tree kernels over constituent parse trees of sentences, to efficiently compute the syntactic similarity between two sentences. Different variants of the tree kernels are proposed based on what constitutes a tree fragment, such as subtrees or subsets of nodes. Efficient algorithms with linear time complexity in the average case are presented in <ref type="bibr" target="#b14">(Moschitti, 2006b)</ref>. The formal definition of the tree kernel is discussed below.</p><p>Given two trees T 1 and T 2 and the set of all possible tree fragments F = {f 1 , f 2 , . . .}, an indicator function I i (n) is defined which evaluates to 1 if the fragment f i is rooted at node n and 0 other-wise. The unnormalized kernel score is given by</p><formula xml:id="formula_1">k (T 1 , T 2 ) = n 1 ∈N T 1 n 2 ∈N T 2 ∆(n1, n2)</formula><p>where N T 1 and N T 2 are the sets of nodes of T 1 and T 2 respectively and ∆(n1, n2) = |F | i=1 I i (n 1 )I i (n 2 ). The normalized kernel score is given by</p><formula xml:id="formula_2">K(T 1 , T 2 ) = k (T 1 , T 2 ) k (T 1 , T 1 ) • k (T 2 , T 2 )</formula><p>We experimented with subtree and subset tree kernels over constituent parse trees and found subset tree kernels to be superior for our task. In the rest of the paper, we mean subset tree kernel when we refer to tree kernels. We used Stanford CoreNLP <ref type="bibr" target="#b12">(Manning et al., 2014)</ref> to generate the constituent parse trees. For tree kernels we use the SVM-LIGHT-TK toolkit<ref type="foot" target="#foot_0">1</ref>  <ref type="bibr" target="#b13">(Moschitti, 2006a)</ref> that offers kernel implementation within SVM<ref type="foot" target="#foot_1">2</ref>  <ref type="bibr" target="#b10">(Joachims, 1999)</ref>. For each intrasentence (C-D) pair we get a single parse tree and for each intersentence pair we get a forest of two constituent parse trees, from each sentence containing one of the two entity mentions.</p><p>The contribution from flat features as defined in the section 3.1 can be combined with tree kernels by linearly combining the dot products of the flat feature vectors and the tree kernel. That is, the kernel for the new classifier (linear + tree kernel) is computed as the sum of the linear kernel over flat features and the tree kernel over the constituent parse trees. We report results for these classifiers, namely Linear, Tree Kernel and Linear + Tree Kernel classifier in Section 4.</p></div>
<div xmlns="http://www.tei-c.org/ns/1.0"><head n="3.2.1">Tree kernels with entity focus</head><p>Tree kernels attempt to classify a sentence in its entirety and in its default form are unaware of the entity mentions in the sentence. This approach is suitable if our goal is to simply detect if a sentence expresses a relation or not. However, to render greater focus on the entity mentions, we can preprocess the sentence to highlight the location of a word with reference to entity mentions. We prefixed all words in the sentence with "pre", "mid", and "post" tags, based on whether they are located prior to, in between, or post entity mentions, before generating the constituent parse trees.</p></div>
<div xmlns="http://www.tei-c.org/ns/1.0"><head n="4">Evaluation</head></div>
<div xmlns="http://www.tei-c.org/ns/1.0"><head n="4.1">Dataset and Evaluation metrics</head><p>We work with the dataset provided by BioCreative-V <ref type="bibr" target="#b17">(Wei et al., 2015)</ref>. It comprises 3 subsets, referred to as training, development and test set. Each subset consists of 500 PubMed articles (Title and Abstract only), that are fully annotated with Chemical and Disease mentions and the CID relations. Our goal is to extract Chemical-Disease relations at the document (PubMed abstract) level and the metrics are standard Precision (P), Recall (R) and F1 measure ( 2P R P +R ).</p></div>
<div xmlns="http://www.tei-c.org/ns/1.0"><head n="4.2">Results</head><p>We measure the effectiveness of our relation extraction system over the provided test data set, as set out in the CID task. We use the standard entity annotations provided with the data set. Given the limited annotated data, we decided to use both the training and development data set for classifier training with default settings and no custom parameter tuning. Results for intersentence, intrasentence and the full set of (C-D) pairs are presented for linear classifier, tree kernel classifier and their combination, in Table <ref type="table" target="#tab_1">1</ref>. We also present the results for the Linear classifier without the CTD feature. Finally, the table also contains the results reported in a prior work by <ref type="bibr" target="#b18">(Zhou et al., 2016)</ref> for the CID task. A comparative study with this prior work is presented in Section 5.</p><p>To summarize, our final system (linear + tree kernel) achieves an F-score of 61.7% over the CID test data. Note that the combination of linear and tree kernels outperforms the linear and tree kernel classifiers individually. The Table also reveals the substantial contribution of the CTD look up feature towards the linear classifier's performance.</p></div>
<div xmlns="http://www.tei-c.org/ns/1.0"><head n="5">Discussion</head><p>Comparison with prior art. Previously published results in the CID BioCreative-V task used custom entity recognition tools. Therefore, their CID performance is not directly comparable without replicating their entity annotation process. A more accurate comparison can be made with <ref type="bibr" target="#b18">(Zhou et al., 2016)</ref> who follow a similar evaluation process. Their system uses gold standard entity annotations and is trained on the CID training and development datasets and evaluated on the CID test data. They report an F-score of 61.3%. Significantly, their system relies on task specific post-processing rules, without which their F1 score drops to 56.0%. Our system performs better (61.7%), reflecting a substantive advantage in precision, without using heuristics or task specific rules.</p><p>Effectiveness of Tree Kernels. We note that tree kernels can significantly improve the performance of CID relation extraction as illustrated in the results. Also, this additional performance is obtained using PubMed abstracts and not external information sources. These results suggest that a greater amount of information exists in annotated text that is easier to extract with tree kernels as compared to manual feature mining for richer patterns. Further, tree kernels have an effect of increasing the precision of the classifiers, specially for intersentence cases. This is likely due to the fact that tree kernels enable stringent comparison of sentence structures (constituent parse trees) as compared to the lenient approach of bag of words matching with linear kernels.</p><p>Further enhancements. Incorporating entity focus to tree kernels (section 3.2.1) produced a slight improvement (to 61.7% from 61.0%). This approach is likely to be beneficial for sentences that express multiple relations (&gt; 1) between multiple entity pairs. In the CID dataset, we found that sentences expressing multiple relations constitute around 14%, 15% and 14% of training, development and test datasets respectively. Alternate approaches that discriminate parts of the sentence based on the relation expressed are likely to further improve the performance.</p><p>In the context of intersentence (C-D) pairs, we are currently using only the two sentences s i , s j that contain the entity mentions. However, the actual relationship might be collectively expressed by any subset of the sentences in the document. We attempted to model the whole of the document as a forest of parse trees of all its sentences, but did not observe any improvement in performance. For the CID task where more than 30% of the (C-D) pairs cross sentence boundaries, effective intersentence relation extraction remains a challenge.</p></div>
<div xmlns="http://www.tei-c.org/ns/1.0"><head n="6">Summary and Conclusion</head><p>In this work, we show that tree kernels were very effective in CID relation extraction and boosted F1 score to 61.7% as compared to 57.9% achieved with a linear classifier using simple handcrafted features alone. In future work, we seek to improve intersentence relation extraction from documents.</p></div><figure xmlns="http://www.tei-c.org/ns/1.0" xml:id="fig_0"><head>Figure 1 :</head><label>1</label><figDesc>Figure1: Illustration for the sentence "Cyclic dysosmia induced by PZA (Pyrazinamide)": a) Full constituent parse tree. b) Few of its fragments (implicitly) considered by the subset tree kernel. Entity focus is incorporated by prefixing special tags such as "pre", "mid", "post", "Chemical" and "Disease". .</figDesc></figure>
<figure xmlns="http://www.tei-c.org/ns/1.0" type="table" xml:id="tab_0"><head></head><label></label><figDesc>Linear classifier1. Every chemical mention (C) that appears in the article is paired with every other disease mention (D) to generate an entity pair (C-D) for classification. An entity pair in which both the entity mentions are within a sentence are referred to as intrasentence pairs, and those that cross a sentence boundary are referred to as intersentence pairs. The full test data is the union of intrasentence and inter-</figDesc><table><row><cell>sentence entity pairs.</cell></row><row><cell>2. Intersentence and intrasentence pairs are</cell></row><row><cell>grouped separately for training and testing</cell></row><row><cell>with two separate classifiers. No further fil-</cell></row><row><cell>tering or post-processing of (C-D) pairs is</cell></row><row><cell>performed.</cell></row><row><cell>3. At training time, we label a (C-D) pair as pos-</cell></row><row><cell>itive if there exists a valid CID relation be-</cell></row><row><cell>tween these entities, using the relation anno-</cell></row><row><cell>tations. At test time, the label is inferred from</cell></row><row><cell>the classifier output.</cell></row><row><cell>4. Features for intrasentence pairs include</cell></row><row><cell>verbs, bag of words, POS tags, dependency</cell></row><row><cell>parse and the token distance between entity</cell></row><row><cell>mentions in the sentence.</cell></row><row><cell>5. Features for intersentence pairs include the</cell></row><row><cell>POS tags and bag of words of the two sen-</cell></row><row><cell>tences containing entity mentions, distance</cell></row><row><cell>(number of sentences) between them, statisti-</cell></row><row><cell>cal features of the entity mentions in the doc-</cell></row><row><cell>ument (frequency of mentions), entity fre-</cell></row><row><cell>quencies and zonal information (document</cell></row><row><cell>zone containing the mentions).</cell></row><row><cell>6. We use the Chemical Toxicology</cell></row><row><cell>Database (Davis et al., 2012) to gener-</cell></row><row><cell>ate a binary feature I</cell></row></table><note>ctd (C, D) that evaluates to 1 if the (C-D) pair is known to be related in the CTD database and 0 otherwise.</note></figure>
<figure xmlns="http://www.tei-c.org/ns/1.0" type="table" xml:id="tab_1"><head>Table 1 :</head><label>1</label><figDesc>Results on CID test data for Linear classifier (Lin), Tree Kernel (TK) and their combination (Lin+TK). The performance of the linear classifier without CTD feature (Lin -CTD) is also shown.</figDesc><table><row><cell>Test Data</cell><cell>Classifier</cell><cell>P</cell><cell>R</cell><cell>F1</cell></row><row><cell cols="5">Intrasentence Lin -CTD 54.1 71.5 61.6</cell></row><row><cell cols="2">Intrasentence Lin</cell><cell cols="3">58.2 75.6 65.8</cell></row><row><cell cols="2">Intrasentence TK</cell><cell cols="3">55.7 53.6 54.6</cell></row><row><cell cols="2">Intrasentence Lin + TK</cell><cell cols="3">63.3 75.4 68.8</cell></row><row><cell cols="5">Intersentence Lin -CTD 26.9 35.1 30.4</cell></row><row><cell cols="2">Intersentence Lin</cell><cell cols="3">33.7 39.8 36.5</cell></row><row><cell cols="2">Intersentence TK</cell><cell cols="2">53.8 2.3</cell><cell>4.5</cell></row><row><cell cols="2">Intersentence Lin + TK</cell><cell cols="3">65.9 20.0 30.8</cell></row><row><cell>Full test</cell><cell cols="4">Lin -CTD 46.5 61.3 52.9</cell></row><row><cell>Full test</cell><cell>Lin</cell><cell cols="3">57.8 65.6 57.9</cell></row><row><cell>Full test</cell><cell>TK</cell><cell cols="3">55.7 39.2 46.0</cell></row><row><cell>Full test</cell><cell cols="4">Lin + TK 63.6 59.8 61.7</cell></row><row><cell>Full test</cell><cell>(Zhou et al., 2016)</cell><cell cols="3">55.6 68.4 61.3</cell></row></table></figure>
			<note xmlns="http://www.tei-c.org/ns/1.0" place="foot" n="1" xml:id="foot_0">http://disi.unitn.it/moschitti/Tree-Kernel.htm</note>
			<note xmlns="http://www.tei-c.org/ns/1.0" place="foot" n="2" xml:id="foot_1">http://svmlight.joachims.org/</note>
		</body>
		<back>
			<div type="references">

				<listBibl>

<biblStruct xml:id="b0">
	<analytic>
		<title level="a" type="main">A graph kernel for protein-protein interaction extraction</title>
		<author>
			<persName><forename type="first">Antti</forename><surname>Airola</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Sampo</forename><surname>Pyysalo</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Jari</forename><surname>Björne</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Tapio</forename><surname>Pahikkala</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Filip</forename><surname>Ginter</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Tapio</forename><surname>Salakoski</surname></persName>
		</author>
	</analytic>
	<monogr>
		<title level="m">Proceedings of the workshop on current trends in biomedical natural language processing</title>
				<meeting>the workshop on current trends in biomedical natural language processing</meeting>
		<imprint>
			<publisher>Association for Computational Linguistics</publisher>
			<date type="published" when="2008">2008</date>
			<biblScope unit="page" from="1" to="9" />
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b1">
	<analytic>
		<title level="a" type="main">Manual curation is not sufficient for annotation of genomic databases</title>
		<author>
			<persName><forename type="first">William</forename><forename type="middle">A</forename><surname>Baumgartner</surname></persName>
		</author>
		<author>
			<persName><forename type="first">K</forename><surname>Bretonnel Cohen</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Lynne</forename><forename type="middle">M</forename><surname>Fox</surname></persName>
		</author>
		<author>
			<persName><forename type="first">George</forename><surname>Acquaah-Mensah</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Lawrence</forename><surname>Hunter</surname></persName>
		</author>
	</analytic>
	<monogr>
		<title level="j">Bioinformatics</title>
		<imprint>
			<biblScope unit="volume">23</biblScope>
			<biblScope unit="issue">13</biblScope>
			<biblScope unit="page" from="41" to="48" />
			<date type="published" when="2007">2007</date>
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b2">
	<analytic>
		<title level="a" type="main">Drug-drug interaction extraction from biomedical texts with SVM and RLS classifiers</title>
		<author>
			<persName><forename type="first">Jari</forename><surname>Bjorne</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Antti</forename><surname>Airola</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Tapio</forename><surname>Pahikkala</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Tapio</forename><surname>Salakoski</surname></persName>
		</author>
	</analytic>
	<monogr>
		<title level="m">CEUR Workshop Proceedings</title>
				<imprint>
			<date type="published" when="2011">2011</date>
			<biblScope unit="volume">761</biblScope>
			<biblScope unit="page" from="35" to="42" />
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b3">
	<analytic>
		<title level="a" type="main">Subsequence kernels for relation extraction</title>
		<author>
			<persName><forename type="first">C</forename><surname>Razvan</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Raymond</forename><forename type="middle">J</forename><surname>Bunescu</surname></persName>
		</author>
		<author>
			<persName><surname>Mooney</surname></persName>
		</author>
	</analytic>
	<monogr>
		<title level="m">NIPS</title>
				<imprint>
			<date type="published" when="2005">2005</date>
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b4">
	<analytic>
		<title level="a" type="main">A tutorial on support vector machines for pattern recognition</title>
		<author>
			<persName><forename type="first">J</forename><forename type="middle">C</forename><surname>Christopher</surname></persName>
		</author>
		<author>
			<persName><surname>Burges</surname></persName>
		</author>
	</analytic>
	<monogr>
		<title level="j">Data mining and knowledge discovery</title>
		<imprint>
			<biblScope unit="volume">2</biblScope>
			<biblScope unit="issue">2</biblScope>
			<biblScope unit="page" from="121" to="167" />
			<date type="published" when="1998">1998</date>
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b5">
	<analytic>
		<title level="a" type="main">A Study on Dependency Tree Kernels for Automatic Extraction of Protein-Protein Interaction</title>
		<author>
			<persName><forename type="first">Faisal</forename><surname>Mahbub Chowdhury</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Alberto</forename><surname>Lavelli</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Alessandro</forename><surname>Moschitti</surname></persName>
		</author>
	</analytic>
	<monogr>
		<title level="j">BioNLP</title>
		<imprint>
			<biblScope unit="page" from="124" to="133" />
			<date type="published" when="2011">2011. 2011. 2011</date>
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b6">
	<analytic>
		<title level="a" type="main">Convolution kernels for natural language</title>
		<author>
			<persName><forename type="first">Michael</forename><surname>Collins</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Nigel</forename><surname>Duffy</surname></persName>
		</author>
	</analytic>
	<monogr>
		<title level="m">Advances in neural information processing systems</title>
				<imprint>
			<date type="published" when="2001">2001</date>
			<biblScope unit="page" from="625" to="632" />
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b7">
	<analytic>
		<title level="a" type="main">The comparative toxicogenomics database: update</title>
		<author>
			<persName><forename type="first">Allan</forename><surname>Peter</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Davis</forename></persName>
		</author>
		<author>
			<persName><forename type="first">Cynthia</forename><forename type="middle">Grondin</forename><surname>Murphy</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Robin</forename><surname>Johnson</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Jean</forename><forename type="middle">M</forename><surname>Lay</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Kelley</forename><surname>Lennon-Hopkins</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Cynthia</forename><surname>Saraceni-Richards</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Daniela</forename><surname>Sciaky</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Benjamin</forename><forename type="middle">L</forename><surname>King</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Thomas</forename><forename type="middle">C</forename><surname>Michael C Rosenstein</surname></persName>
		</author>
		<author>
			<persName><surname>Wiegers</surname></persName>
		</author>
	</analytic>
	<monogr>
		<title level="j">Nucleic acids research</title>
		<imprint>
			<biblScope unit="page">994</biblScope>
			<date type="published" when="2012">2012. 2013</date>
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b8">
	<analytic>
		<title level="a" type="main">Understanding pubmed R user search behavior through log analysis</title>
		<author>
			<persName><forename type="first">Rezarta</forename><surname>Islamaj Dogan</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Craig</forename><surname>Murray</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Aurélie</forename><surname>Névéol</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Zhiyong</forename><surname>Lu</surname></persName>
		</author>
	</analytic>
	<monogr>
		<title level="j">Database</title>
		<imprint>
			<biblScope unit="page">18</biblScope>
			<date type="published" when="2009">2009. 2009</date>
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b9">
	<analytic>
		<title level="a" type="main">The ibm research accelerated discovery lab</title>
		<author>
			<persName><forename type="first">Laura</forename><surname>Haas</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Melissa</forename><surname>Cefkin</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Cheryl</forename><surname>Kieliszewski</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Wil</forename><surname>Plouffe</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Mary</forename><surname>Roth</surname></persName>
		</author>
	</analytic>
	<monogr>
		<title level="j">SIGMOD Rec</title>
		<imprint>
			<biblScope unit="volume">43</biblScope>
			<biblScope unit="issue">2</biblScope>
			<biblScope unit="page" from="41" to="48" />
			<date type="published" when="2014-12">2014. December</date>
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b10">
	<monogr>
		<author>
			<persName><forename type="first">Thorsten</forename><surname>Joachims</surname></persName>
		</author>
		<title level="m">Advances in kernel methods. chapter Making Large-scale Support Vector Machine Learning Practical</title>
				<meeting><address><addrLine>Cambridge, MA, USA</addrLine></address></meeting>
		<imprint>
			<publisher>MIT Press</publisher>
			<date type="published" when="1999">1999</date>
			<biblScope unit="page" from="169" to="184" />
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b11">
	<analytic>
		<title level="a" type="main">Feature generation and representations for protein-protein interaction classification</title>
		<author>
			<persName><forename type="first">Man</forename><surname>Lan</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Chew</forename><surname>Lim Tan</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Jian</forename><surname>Su</surname></persName>
		</author>
	</analytic>
	<monogr>
		<title level="j">Journal of Biomedical Informatics</title>
		<imprint>
			<biblScope unit="volume">42</biblScope>
			<biblScope unit="page" from="866" to="872" />
			<date type="published" when="2009">2009</date>
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b12">
	<analytic>
		<title level="a" type="main">The stanford corenlp natural language processing toolkit</title>
		<author>
			<persName><forename type="first">Mihai</forename><surname>Christopher D Manning</surname></persName>
		</author>
		<author>
			<persName><forename type="first">John</forename><surname>Surdeanu</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Jenny</forename><surname>Bauer</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Steven</forename><forename type="middle">J</forename><surname>Finkel</surname></persName>
		</author>
		<author>
			<persName><forename type="first">David</forename><surname>Bethard</surname></persName>
		</author>
		<author>
			<persName><surname>Mc-Closky</surname></persName>
		</author>
	</analytic>
	<monogr>
		<title level="m">Proceedings of 52nd Annual Meeting of the Association for Computational Linguistics: System Demonstrations</title>
				<meeting>52nd Annual Meeting of the Association for Computational Linguistics: System Demonstrations</meeting>
		<imprint>
			<date type="published" when="2014">2014</date>
			<biblScope unit="page" from="55" to="60" />
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b13">
	<analytic>
		<title level="a" type="main">Efficient convolution kernels for dependency and constituent syntactic trees</title>
		<author>
			<persName><forename type="first">Alessandro</forename><surname>Moschitti</surname></persName>
		</author>
	</analytic>
	<monogr>
		<title level="m">Machine Learning: ECML 2006</title>
				<imprint>
			<publisher>Springer</publisher>
			<date type="published" when="2006">2006a</date>
			<biblScope unit="page" from="318" to="329" />
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b14">
	<analytic>
		<title level="a" type="main">Making tree kernels practical for natural language learning</title>
		<author>
			<persName><forename type="first">Alessandro</forename><surname>Moschitti</surname></persName>
		</author>
	</analytic>
	<monogr>
		<title level="m">EACL</title>
				<imprint>
			<date type="published" when="2006">2006b</date>
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b15">
	<analytic>
		<title level="a" type="main">Scikit-learn: Machine learning in python</title>
		<author>
			<persName><forename type="first">Fabian</forename><surname>Pedregosa</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Gaël</forename><surname>Varoquaux</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Alexandre</forename><surname>Gramfort</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Vincent</forename><surname>Michel</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Bertrand</forename><surname>Thirion</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Olivier</forename><surname>Grisel</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Mathieu</forename><surname>Blondel</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Peter</forename><surname>Prettenhofer</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Ron</forename><surname>Weiss</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Vincent</forename><surname>Dubourg</surname></persName>
		</author>
	</analytic>
	<monogr>
		<title level="j">The Journal of Machine Learning Research</title>
		<imprint>
			<biblScope unit="volume">12</biblScope>
			<biblScope unit="page" from="2825" to="2830" />
			<date type="published" when="2011">2011</date>
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b16">
	<analytic>
		<title level="a" type="main">Semantic Kernels for Semantic Parsing</title>
		<author>
			<persName><forename type="first">Alessandro</forename><surname>Saleh</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Preslav</forename><surname>Moschitti</surname></persName>
		</author>
		<author>
			<persName><surname>Nakov</surname></persName>
		</author>
		<author>
			<persName><surname>Màrquez</surname></persName>
		</author>
		<author>
			<persName><surname>Joty</surname></persName>
		</author>
	</analytic>
	<monogr>
		<title level="m">Proceedings of the 2014 Conference on Empirical Methods in Natural Language Processing (EMNLP)</title>
				<meeting>the 2014 Conference on Empirical Methods in Natural Language Processing (EMNLP)</meeting>
		<imprint>
			<date type="published" when="2014">2014</date>
			<biblScope unit="page" from="436" to="442" />
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b17">
	<analytic>
		<title level="a" type="main">Overview of the biocreative v chemical disease relation (cdr) task</title>
		<author>
			<persName><forename type="first">Chih-Hsuan</forename><surname>Wei</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Yifan</forename><surname>Peng</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Robert</forename><surname>Leaman</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Allan</forename><forename type="middle">Peter</forename><surname>Davis</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Carolyn</forename><forename type="middle">J</forename><surname>Mattingly</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Jiao</forename><surname>Li</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Thomas</forename><forename type="middle">C</forename><surname>Wiegers</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Zhiyong</forename><surname>Lu</surname></persName>
		</author>
	</analytic>
	<monogr>
		<title level="m">Proceedings of the fifth BioCreative challenge evaluation workshop</title>
				<meeting>the fifth BioCreative challenge evaluation workshop<address><addrLine>Sevilla, Spain</addrLine></address></meeting>
		<imprint>
			<publisher>Chinatsu Aone, and Anthony Richardella</publisher>
			<date type="published" when="2002">2015. 2002</date>
			<biblScope unit="volume">3</biblScope>
			<biblScope unit="page" from="1083" to="1106" />
		</imprint>
	</monogr>
	<note>Kernel methods for relation extraction</note>
</biblStruct>

<biblStruct xml:id="b18">
	<analytic>
		<title level="a" type="main">Exploiting syntactic and semantics information for chemical-disease relation extraction</title>
		<author>
			<persName><forename type="first">Huiwei</forename><surname>Zhou</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Huijie</forename><surname>Deng</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Long</forename><surname>Chen</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Yunlong</forename><surname>Yang</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Chen</forename><surname>Jia</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Degen</forename><surname>Huang</surname></persName>
		</author>
	</analytic>
	<monogr>
		<title level="j">Database</title>
		<imprint>
			<biblScope unit="page">48</biblScope>
			<date type="published" when="2016">2016. 2016</date>
		</imprint>
	</monogr>
</biblStruct>

				</listBibl>
			</div>
		</back>
	</text>
</TEI>
