<?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">Authorship Verification Using Convolutional Neural Network Notebook for PAN at CLEF 2022</title>
			</titleStmt>
			<publicationStmt>
				<publisher/>
				<availability status="unknown"><licence/></availability>
			</publicationStmt>
			<sourceDesc>
				<biblStruct>
					<analytic>
						<author>
							<persName><forename type="first">Yihui</forename><surname>Ye</surname></persName>
							<affiliation key="aff0">
								<orgName type="institution">Foshan University</orgName>
								<address>
									<settlement>Foshan</settlement>
									<country key="CN">China</country>
								</address>
							</affiliation>
						</author>
						<author>
							<persName><forename type="first">Zeyang</forename><surname>Peng</surname></persName>
							<affiliation key="aff0">
								<orgName type="institution">Foshan University</orgName>
								<address>
									<settlement>Foshan</settlement>
									<country key="CN">China</country>
								</address>
							</affiliation>
						</author>
						<author>
							<persName><forename type="first">Mingjie</forename><surname>Huang</surname></persName>
							<affiliation key="aff0">
								<orgName type="institution">Foshan University</orgName>
								<address>
									<settlement>Foshan</settlement>
									<country key="CN">China</country>
								</address>
							</affiliation>
						</author>
						<author>
							<persName><forename type="first">Leilei</forename><surname>Kong</surname></persName>
							<affiliation key="aff0">
								<orgName type="institution">Foshan University</orgName>
								<address>
									<settlement>Foshan</settlement>
									<country key="CN">China</country>
								</address>
							</affiliation>
						</author>
						<author>
							<persName><forename type="first">Zhongyuan</forename><surname>Han</surname></persName>
							<affiliation key="aff0">
								<orgName type="institution">Foshan University</orgName>
								<address>
									<settlement>Foshan</settlement>
									<country key="CN">China</country>
								</address>
							</affiliation>
						</author>
						<title level="a" type="main">Authorship Verification Using Convolutional Neural Network Notebook for PAN at CLEF 2022</title>
					</analytic>
					<monogr>
						<imprint>
							<date/>
						</imprint>
					</monogr>
					<idno type="MD5">E56FC976BAC326D292A80EB29F4D4EE0</idno>
				</biblStruct>
			</sourceDesc>
		</fileDesc>
		<encodingDesc>
			<appInfo>
				<application version="0.7.2" ident="GROBID" when="2023-03-24T03:29+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>
			<textClass>
				<keywords>
					<term>Pre-trained model</term>
					<term>TextCNN</term>
					<term>Data reorganization</term>
					<term>Authorship verification</term>
				</keywords>
			</textClass>
			<abstract>
<div xmlns="http://www.tei-c.org/ns/1.0"><p>The PAN@CLEF 2022 Authorship Verification[8]  is the task of determining if two texts are written by the same author based on comparing the texts' writing styles. In this work, we propose a model that blends Bert and TextCNN[6]  features and raises a data reorganization method to increase model training data to improve performance.</p></div>
			</abstract>
		</profileDesc>
	</teiHeader>
	<text xml:lang="en">
		<body>
<div xmlns="http://www.tei-c.org/ns/1.0"><head>Introduction</head><p>Authorship verification can be applied to plagiarism detection, paper duplication checking, etc. Authorship verification is a category of text classification tasks, which can be regarded as a fundamental problem of NLP, that is, to determine whether the same author writes two texts. The work presented in this paper was developed as a solution for the Authorship verification task of the competition PAN@CLEF 2022. Unlike the previous year, this year's task dataset contains four types of text: essay, text_message, email, and memo.</p><p>Different from the previous year, the overall distribution of this year's texts tends to be short. We try to blend the Pre-trained model Bert, which has performed well in natural language processing, with TextCNN, which is suitable for dealing with a short text. Our work proposes an authorship verification model based on Pre-training and TextCNN. Firstly, we used a pre-trained model to initially extract the author's writing style features of the text. Secondly, we used the TextCNN to extract the texts' style features and complete the authorship verification task. Meanwhile, we propose a data reorganization method to obtain a large amount of training data. The model is trained through a more enormous amount of training data to improve the judgment ability of the model further.</p></div>
<div xmlns="http://www.tei-c.org/ns/1.0"><head n="2.">Datasets</head><p>The PAN@CLEF 2022 Authorship verification task dataset contains 12,264 text pairs and labels. The meaning of the label is whether the two texts are written by the same author. If it is, it will be 1. If not, it will be 0. This year's texts consist of four types, essay, text_message, email, and memo. There are six combinations of text pairs, and their distribution types and quantities are shown in Table <ref type="table" target="#tab_0">1</ref>.</p><p>1 CLEF 2022 -Conference and Labs of the Evaluation Forum, September 5-8, 2022, Bologna, Italy EMAIL:oldsport996@gmail.com(A. 1); hanyong2005@fosu.edu.cn(A. 2)(*corresponding author); pengzeyang008@163.com(A. 3); mingjiehuang007@163.com(A. 4); kongleilei@fosu.edu.cn(A. 5); hanzhongyuan@fosu.edu.cn(A. 6); ORCID: 0000-0002-7369-7537 (A. 1); 0000-0002-9416-2398 (A. 2); 0000-0002-8605-4426 (A. 3); 0000-0002-0889-5027 (A. 4); 0000-0002-4636-3507(A. 5); 0000-0001-8960-9872(A. 6) This year, the authorship verification task focused on the scene of the open domain set and applied cross-text type recognition.</p></div>
<div xmlns="http://www.tei-c.org/ns/1.0"><head n="3.">Method 3.1.Dataset Preprocessing</head><p>All the texts in the training data contain a total of 56 authors. Each author has written hundreds of texts, by collecting all the texts written by each author, recombining these texts and assigning labels to generate new training samples.</p><p>The texts with the same author label are placed in the same list, and a total of 56 lists are established. The texts in each list are connected in pairs to obtain training samples with a label of 1. The texts in different lists are combined in pairs to get training samples with a label of 0.</p><p>Suppose The texts of different authors are much more than the text pairs of the same author. When expanding the training data, we adopt different text pairing strategies. Firstly, we pair all the texts under each author to obtain samples of the same author. The first text of the same author is paired with the second text, and the second text is paired with the third text until the penultimate text is paired with the last text. Secondly, we pair the first text of the first author with the first text of the second author, the first text of the first author with the first text of the third author, until the first author and the first text is matched with the last The first text of one author is paired, then the first text of the second author is paired.The first text of the third author and so on, until the first text is matched in a loop. In the same circle, the second text of the first author is matched with the second text of the third author. For the text pairs generated by different author combinations, we apply the first 17 texts of each author to combine. For the specific combination strategy, please refer to the figure below. The figure below illustrates the process of matching text pairs with six authors. Before entering the data into the model, we first remove all emojis in the text. Secondly, we eliminate the angle brackets in the text and the messages in the angle brackets.</p></div>
<div xmlns="http://www.tei-c.org/ns/1.0"><head>3.2.Network Architecture</head><p>The structure of TextCNN is the same as that of CNN. The TextCNN model is a variant of the CNN model <ref type="bibr" target="#b3">[4]</ref>. TextCNN uses one-dimensional convolution to obtain the n-gram feature representation.</p><p>We use BERT-Base, Cased:12-Layer, 768-hidden, 12-heads, 110M parameters. There are 12 Transformers in total.</p><p>Firstly we take out each layer of the CLS features of the 12 Transformer layers one by one and add them together to calculate the mean value. Secondly, we take out each layer of the Embedding vector of the 12-layer Transformer layer and send it to TextCNN one by one. After TextCNN outputs the features one after another, they will be added together to calculate their average value. Thirdly, we concatenate the averaged CLS features with the averaged TextCNN features. Finally, the concatenated result is fed into two fully connected layers to output the classified result. The Network architecture is shown in Figure <ref type="figure" target="#fig_1">2</ref>. </p></div>
<div xmlns="http://www.tei-c.org/ns/1.0"><head>4.</head><p>Experiments and Results</p></div>
<div xmlns="http://www.tei-c.org/ns/1.0"><head>4.1.Experimental Setting</head><p>In this work, we use Keras to construct the Network Architecture. We make use of a three-layer convolution network. Firstly, we set the features map to 256 and the convolution kernels to 3, 4, and 5 , respectively. Secondly, The convolution output of each layer is fed into a GolbalAveragePolling layer. Thirdly, the first and second convolution network layer is activated by ReLU. Finally, we concatenated the pooled outputs of each layer and sent the concatenated result to a layer with a dropout rate of 0.2.</p><p>The output vector corresponding to the CLS symbol is used as the semantic representation of the entire text. The head of the shallow transformer means the shallow semantic representation, and the head of the deep transformer means the deep semantic representation. The CNN network has advantages in processing short text classification. We intend to average the heads of each layer of transformers and then input them into the CNN network to extract text features further. This model is constructed according to this idea.</p><p>We obtained 41,192 new text pairs by data reorganization as the training set. At the same time, we used 11,000 text pairs from the official data as part of the training set and 1,264 text pairs as the validation set.</p><p>The maximum length of the token we send the combination of text1 and text2 to bert is set to 128. In the last part of the network, the first fully connected layer output hidden size is set to 320, and its activation is ReLU. The second fully connected layer output hidden size is set to 2, and its activation is Softmax. We train ten epochs with the model, and its optimization is Adam with a 2e-5 learning rate.</p><p>For the final classification, we set the classification score between 0.35 and 0.65 as 0.5 as a nonjudgment sample.</p></div>
<div xmlns="http://www.tei-c.org/ns/1.0"><head>4.2.Results</head><p>To verify the impact of data reorganization on model performance. We split all texts of 6 authors into a validation set on the official dataset. At this time, the text on the training set contains 50 authors, and the validation set includes six authors. Table <ref type="table" target="#tab_3">3</ref> shows the final evaluation of the TIRA platform. Our model name is denoted as ye22. </p></div>
<div xmlns="http://www.tei-c.org/ns/1.0"><head n="5.">Conclusion</head><p>In this work, we propose a method that data reorganization to augment training data and a model using Bert blend TextCNN features to solve the Authorship verification task in the PAN@CLEF 2022. This model has been experimented on the test dataset, and the result is AUC=0.542, c@1=0.526, f_05_u=0.461, F1=0.398, Brier=0.565, overall=0.499.</p><p>It can be seen from the results that our model does not perform well on the open domain authorship verification task, and in the follow-up work, we should try more efficient methods to extract the features of each text. In our work, the model with more training data leads to better performance, a breakthrough point our approach tries to improve this year.</p></div>
<div xmlns="http://www.tei-c.org/ns/1.0"><head>6.</head></div><figure xmlns="http://www.tei-c.org/ns/1.0" xml:id="fig_0"><head>Figure 1 :</head><label>1</label><figDesc>Figure 1:Augmented data texts pair matching strategy We obtain 49,112 new training samples, including 24,472 new samples with label 1 and 24,640 new samples with label 0.Before entering the data into the model, we first remove all emojis in the text. Secondly, we eliminate the angle brackets in the text and the messages in the angle brackets.</figDesc><graphic coords="3,86.16,72.00,417.96,368.88" type="bitmap" /></figure>
<figure xmlns="http://www.tei-c.org/ns/1.0" xml:id="fig_1"><head>Figure 2 :</head><label>2</label><figDesc>Figure 2:Network Architect diagram for our model</figDesc><graphic coords="4,86.16,72.00,450.72,439.20" type="bitmap" /></figure>
<figure xmlns="http://www.tei-c.org/ns/1.0" type="table" xml:id="tab_0"><head>Table 1</head><label>1</label><figDesc>The detail of the PAN@CLEF 2022 Authorship verification task dataset</figDesc><table><row><cell>Text1 type</cell><cell>Text2 type</cell><cell>Quantity</cell></row><row><cell>essay</cell><cell>text_message</cell><cell>1,182</cell></row><row><cell>essay</cell><cell>email</cell><cell>1,618</cell></row><row><cell>essay</cell><cell>memo</cell><cell>186</cell></row><row><cell>email</cell><cell>text_message</cell><cell>7,484</cell></row><row><cell>memo</cell><cell>text_message</cell><cell>780</cell></row><row><cell>memo</cell><cell>email</cell><cell>1,014</cell></row></table></figure>
<figure xmlns="http://www.tei-c.org/ns/1.0" type="table" xml:id="tab_2"><head></head><label></label><figDesc>It can be observed that with the increase in the training sample, the model's performance has improved.</figDesc><table><row><cell>Tab.le 2</cell><cell></cell><cell></cell><cell></cell><cell></cell><cell></cell><cell></cell></row><row><cell cols="3">Validation results on the official training dataset</cell><cell></cell><cell></cell><cell></cell><cell></cell></row><row><cell>Strategy</cell><cell>AUC</cell><cell>c@1</cell><cell>f_05_u</cell><cell>F1</cell><cell>Brier</cell><cell>Overall</cell></row><row><cell>Without</cell><cell>0.692</cell><cell>0.682</cell><cell>0.504</cell><cell>0.482</cell><cell>0.713</cell><cell>0.614</cell></row><row><cell>Data reorganization</cell><cell></cell><cell></cell><cell></cell><cell></cell><cell></cell><cell></cell></row><row><cell cols="2">Data reorganization 0.791</cell><cell>0.753</cell><cell>0.613</cell><cell>0.556</cell><cell>0.776</cell><cell>0.698</cell></row></table></figure>
<figure xmlns="http://www.tei-c.org/ns/1.0" type="table" xml:id="tab_3"><head>Table 3</head><label>3</label><figDesc>Final results on the test dataset.</figDesc><table><row><cell>Team</cell><cell>AUC</cell><cell>c@1</cell><cell>f_05_u</cell><cell>F1</cell><cell>Brier</cell><cell>Overall</cell></row><row><cell>ye22</cell><cell>0.542</cell><cell>0.526</cell><cell>0.461</cell><cell>0.398</cell><cell>0.565</cell><cell>0.499</cell></row></table></figure>
		</body>
		<back>

			<div type="acknowledgement">
<div xmlns="http://www.tei-c.org/ns/1.0"><head>Acknowledgments</head><p>This work is supported by the Social Science Foundation of Guangdong Province (No. GD20CTS02).</p></div>
			</div>

			<div type="annex">
<div xmlns="http://www.tei-c.org/ns/1.0"><head>7.</head></div>			</div>
			<div type="references">

				<listBibl>

<biblStruct xml:id="b0">
	<analytic>
		<title level="a" type="main">Bertgcn: Transductive text classification by combining GCN and bert</title>
		<author>
			<persName><forename type="first">Y</forename><surname>Lin</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Y</forename><surname>Meng</surname></persName>
		</author>
		<author>
			<persName><forename type="first">X</forename><surname>Sun</surname></persName>
		</author>
		<idno type="arXiv">arXiv:2105.05727</idno>
	</analytic>
	<monogr>
		<title level="j">J</title>
		<imprint>
			<date type="published" when="2021">2021</date>
		</imprint>
	</monogr>
	<note type="report_type">arXiv preprint</note>
</biblStruct>

<biblStruct xml:id="b1">
	<analytic>
		<title level="a" type="main">Encoding text information by pre-trained model for authorship verification</title>
		<author>
			<persName><forename type="first">Z</forename><surname>Peng</surname></persName>
		</author>
		<author>
			<persName><forename type="first">L</forename><surname>Kong</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Z</forename><surname>Zhang</surname></persName>
		</author>
	</analytic>
	<monogr>
		<title level="m">Special issue: Digital Libraries</title>
				<editor>
			<persName><forename type="first">J</forename><surname>Cohen</surname></persName>
		</editor>
		<imprint>
			<date type="published" when="1996">2021. 1996</date>
			<biblScope unit="volume">39</biblScope>
		</imprint>
	</monogr>
	<note>//CLEF</note>
</biblStruct>

<biblStruct xml:id="b2">
	<analytic>
		<title level="a" type="main">Pre-training of deep bidirectional transformers for language understanding</title>
		<author>
			<persName><forename type="first">J</forename><surname>Devlin</surname></persName>
		</author>
		<author>
			<persName><forename type="first">M</forename><forename type="middle">W</forename><surname>Chang</surname></persName>
		</author>
		<author>
			<persName><forename type="first">K</forename><surname>Lee</surname></persName>
		</author>
		<idno type="arXiv">arXiv:1810.04805</idno>
		<idno>arXiv:1810.04805</idno>
	</analytic>
	<monogr>
		<title level="m">Pre-training of deep bidirectional transformers for language understanding</title>
				<imprint>
			<date type="published" when="2018">2018</date>
		</imprint>
	</monogr>
	<note type="report_type">arXiv preprint</note>
	<note>J</note>
</biblStruct>

<biblStruct xml:id="b3">
	<analytic>
		<title level="a" type="main">Research on short text classification based on textcnn</title>
		<author>
			<persName><forename type="first">T</forename><surname>Zhang</surname></persName>
		</author>
		<author>
			<persName><forename type="first">F</forename><surname>You</surname></persName>
		</author>
	</analytic>
	<monogr>
		<title level="m">Journal of Physics: Conference Series</title>
				<imprint>
			<publisher>IOP Publishing</publisher>
			<date type="published" when="2021">2021</date>
			<biblScope unit="volume">1757</biblScope>
			<biblScope unit="page">12092</biblScope>
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b4">
	<monogr>
		<title level="m" type="main">Financial sentiment analysis based on pre-training and textcnn[C]//Chinese Intelligent Systems Conference</title>
		<author>
			<persName><forename type="first">X</forename><surname>Yuan</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Y</forename><surname>Li</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Z</forename><surname>Xue</surname></persName>
		</author>
		<imprint>
			<date type="published" when="2020">2020</date>
			<publisher>Springer</publisher>
			<biblScope unit="page" from="48" to="56" />
			<pubPlace>Singapore</pubPlace>
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b5">
	<analytic>
		<title level="a" type="main">Convolutional neural networks for sentence classification</title>
		<author>
			<persName><forename type="first">Y</forename><surname>Kim</surname></persName>
		</author>
	</analytic>
	<monogr>
		<title level="m">EMNLP</title>
				<imprint>
			<date type="published" when="2014">2014</date>
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b6">
	<monogr>
		<title level="m" type="main">Overview of PAN 2022: Authorship Verification, Profiling Irony and Stereotype Spreaders, Style Change Detection, and Trigger Detection: Extended Abstract</title>
		<author>
			<persName><forename type="first">Janek</forename><forename type="middle">&amp;</forename><surname>Bevendorff</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Berta</forename><forename type="middle">&amp;</forename><surname>Chulvi</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Elisabetta</forename><forename type="middle">&amp;</forename><surname>Fersini</surname></persName>
		</author>
		<author>
			<persName><surname>Heini</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Mike</forename><forename type="middle">&amp;</forename><surname>Kestemont</surname></persName>
		</author>
		<author>
			<persName><surname>Kredens</surname></persName>
		</author>
		<author>
			<persName><surname>Krzysztof</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Maximilian</forename><forename type="middle">&amp;</forename><surname>Mayerl</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Reyner</forename><forename type="middle">&amp;</forename><surname>Ortega-Bueno</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Piotr</forename><forename type="middle">&amp;</forename><surname>Pęzik</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Martin &amp; Rangel</forename><surname>Potthast</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Francisco</forename><forename type="middle">&amp;</forename><surname>Pardo</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Paolo</forename><forename type="middle">&amp;</forename><surname>Rosso</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Efstathios</forename><forename type="middle">&amp;</forename><surname>Stamatatos</surname></persName>
		</author>
		<author>
			<persName><surname>Stein</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Matti</forename><forename type="middle">&amp;</forename><surname>Benno &amp; Wiegmann</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Magdalena</forename><forename type="middle">&amp;</forename><surname>Wolska</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Eva</forename><surname>Zangerle</surname></persName>
		</author>
		<idno type="DOI">10.1007/978-3-030-99739-7_42</idno>
		<imprint>
			<date type="published" when="2022">2022</date>
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b7">
	<analytic>
		<title level="a" type="main">Overview of PAN 2022: Authorship Verification, Profiling Irony and Stereotype Spreaders, and Style Change Detection</title>
		<author>
			<persName><forename type="first">J</forename><surname>Bevendorff</surname></persName>
		</author>
		<author>
			<persName><forename type="first">B</forename><surname>Chulvi</surname></persName>
		</author>
		<author>
			<persName><forename type="first">E</forename><surname>Fersini</surname></persName>
		</author>
		<author>
			<persName><forename type="first">A</forename><surname>Heini</surname></persName>
		</author>
		<author>
			<persName><forename type="first">M</forename><surname>Kestemont</surname></persName>
		</author>
		<author>
			<persName><forename type="first">K</forename><surname>Kredens</surname></persName>
		</author>
		<author>
			<persName><forename type="first">M</forename><surname>Mayerl</surname></persName>
		</author>
		<author>
			<persName><forename type="first">R</forename><surname>Ortega-Bueno</surname></persName>
		</author>
		<author>
			<persName><forename type="first">P</forename><surname>Pezik</surname></persName>
		</author>
		<author>
			<persName><forename type="first">M</forename><surname>Potthast</surname></persName>
		</author>
		<author>
			<persName><forename type="first">F</forename><surname>Rangel</surname></persName>
		</author>
		<author>
			<persName><forename type="first">P</forename><surname>Rosso</surname></persName>
		</author>
		<author>
			<persName><forename type="first">E</forename><surname>Stamatatos</surname></persName>
		</author>
		<author>
			<persName><forename type="first">B</forename><surname>Stein</surname></persName>
		</author>
		<author>
			<persName><forename type="first">M</forename><surname>Wiegmann</surname></persName>
		</author>
		<author>
			<persName><forename type="first">M</forename><surname>Wolska</surname></persName>
		</author>
		<author>
			<persName><forename type="first">E</forename><surname>Zangerle</surname></persName>
		</author>
	</analytic>
	<monogr>
		<title level="m">Proceedings of the Thirteenth International Conference of the CLEF Association (CLEF 2022)</title>
				<editor>
			<persName><forename type="first">A</forename><forename type="middle">B</forename><surname>Cedeno</surname></persName>
		</editor>
		<editor>
			<persName><forename type="first">G</forename><forename type="middle">D S</forename><surname>Martino</surname></persName>
		</editor>
		<editor>
			<persName><forename type="first">M</forename><forename type="middle">D</forename><surname>Esposti</surname></persName>
		</editor>
		<editor>
			<persName><forename type="first">F</forename><surname>Sebastiani</surname></persName>
		</editor>
		<editor>
			<persName><forename type="first">C</forename><surname>Macdonald</surname></persName>
		</editor>
		<editor>
			<persName><forename type="first">G</forename><surname>Pasi</surname></persName>
		</editor>
		<editor>
			<persName><forename type="first">A</forename><surname>Hanbury</surname></persName>
		</editor>
		<editor>
			<persName><forename type="first">M</forename><surname>Potthast</surname></persName>
		</editor>
		<editor>
			<persName><forename type="first">G</forename><surname>Faggioli</surname></persName>
		</editor>
		<editor>
			<persName><forename type="first">N</forename><surname>Ferro</surname></persName>
		</editor>
		<meeting>the Thirteenth International Conference of the CLEF Association (CLEF 2022)</meeting>
		<imprint>
			<publisher>Springer</publisher>
			<date type="published" when="2022">2022</date>
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b8">
	<analytic>
		<title level="a" type="main">Overview of the Authorship Verification Task at PAN</title>
		<author>
			<persName><forename type="first">E</forename><surname>Stamatatos</surname></persName>
		</author>
		<author>
			<persName><forename type="first">M</forename><surname>Kestemont</surname></persName>
		</author>
		<author>
			<persName><forename type="first">K</forename><surname>Kredens</surname></persName>
		</author>
		<author>
			<persName><forename type="first">P</forename><surname>Pezik</surname></persName>
		</author>
		<author>
			<persName><forename type="first">A</forename><surname>Heini</surname></persName>
		</author>
		<author>
			<persName><forename type="first">J</forename><surname>Bevendorff</surname></persName>
		</author>
		<author>
			<persName><forename type="first">M</forename><surname>Potthast</surname></persName>
		</author>
		<author>
			<persName><forename type="first">B</forename><surname>Stein</surname></persName>
		</author>
		<ptr target="CEUR-WS.org" />
	</analytic>
	<monogr>
		<title level="m">Working Notes of CLEF 2022 -Conference and Labs of the Evaluation Forum</title>
				<imprint>
			<date type="published" when="2022">2022. 2022</date>
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b9">
	<analytic>
		<title level="a" type="main">TIRA Integrated Research Architecture</title>
		<author>
			<persName><forename type="first">M</forename><surname>Potthast</surname></persName>
		</author>
		<author>
			<persName><forename type="first">T</forename><surname>Gollub</surname></persName>
		</author>
		<author>
			<persName><forename type="first">M</forename><surname>Wiegmann</surname></persName>
		</author>
		<author>
			<persName><forename type="first">B</forename><surname>Stein</surname></persName>
		</author>
	</analytic>
	<monogr>
		<title level="m">Information Retrieval Evaluation in a Changing World, ser. The Information Retrieval Series</title>
				<editor>
			<persName><forename type="first">N</forename><surname>Ferro</surname></persName>
		</editor>
		<editor>
			<persName><forename type="first">C</forename><surname>Peters</surname></persName>
		</editor>
		<meeting><address><addrLine>Berlin Heidelberg New York</addrLine></address></meeting>
		<imprint>
			<publisher>Springer</publisher>
			<date type="published" when="2019-09">Sep. 2019</date>
		</imprint>
	</monogr>
</biblStruct>

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