Skip to main content
zenodorestricted

PAN19 Authorship Analysis: Style Change Detection

<p>This is the data set for the <a href="http://pan.webis.de/clef19/pan19-web/style-change-detection.html">Style Change Detection task</a>&nbsp;of <a href="http://pan.webis.de/clef19/pan19-web/">PAN@CLEF 2019</a>.</p> <p>The goal of the style change detection task is to identify text positions within a given multi-author document at which the author switches. Detecting these positions is a crucial part of the authorship identification process, and for multi-author document analysis in general. Note that, for this task, we make the assumption that a change in writing style always signifies a change in author.</p> <p><strong>Tasks</strong></p> <p>Given a document, we ask participants to answer the following two questions:</p> <ul> <li>Was the given document written by multiple authors? (task 1)</li> <li>For each pair of consecutive paragraphs in the given document: is there a style change between these paragraphs? (task 2)</li> </ul> <p>In other words, the goal is to determine whether the given document contains style changes and if it indeed does, we aim to find the position of the change in the document (between paragraphs).</p> <p>All documents are provided in English and may contain zero up to ten style changes, resulting from at most three different authors. However, style changes may only occur between paragraphs (i.e., a single paragraph is always authored by a single author and does not contain any style changes).</p> <p><strong>Data</strong></p> <p>To develop and then test your algorithms, two data sets including ground truth information are provided. Those data sets differ in their topical breadth (i.e., the number of different topics that are covered in the documents contained).&nbsp;dataset-narrow&nbsp;contains texts from a relatively narrow set of subjects matters (all related to technology), whereas&nbsp;dataset-wide&nbsp;adds additional subject areas to that (travel, philosophy, economics, history, etc.).</p> <p>Both of those data sets are split into three parts:</p> <ul> <li><em>training set:</em>&nbsp;Contains 50% of the whole data set and includes ground truth data. Use this set to develop and train your models.</li> <li><em>validation set:</em>&nbsp;Contains 25% of the whole data set and includes ground truth data. Use this set to evaluate and optimize your models.</li> <li><em>test set:</em>&nbsp;Contains 25% of the whole data set. For the documents on the test set, you are not given ground truth data. This set is used for evaluation.</li> </ul> <p><br> <strong>Input Format</strong></p> <p>Both dataset-narrow and dataset-wide are based on user posts from various sites of the StackExchange network, covering different topics. We refer to each input problem (i.e., the document for which to detect style changes) by an ID, which is subsequently also used to identify the submitted solution to this input problem.</p> <p>The structure of the provided datasets is as follows:</p> <p>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;</p> <pre><code class="language-json">train/     dataset-narrow/     dataset-wide/ validation/     dataset-narrow/     dataset-wide/ test/     dataset-narrow/     dataset-wide/</code></pre> <p>&nbsp;</p> <p>For each problem instance&nbsp;X&nbsp;(i.e., each input document), two files are provided:</p> <p>problem-X.txt&nbsp;contains the actual text, where paragraphs are denoted by&nbsp;\n\n.<br> truth-problem-X.json&nbsp;contains the ground truth, i.e., the correct solution in JSON format:</p> <pre><code class="language-json">{     "authors": NUMBER_OF_AUTHORS,     "structure": ORDER_OF_AUTHORS,     "site": SOURCE_SITE,     "multi-author": RESULT_TASK1,     "changes": RESULT_ARRAY_TASK2 }</code></pre> <p>The result for task 1 (key &quot;multi-author&quot;) is a binary value (1 if the document is multi-authored, 0 if the document is single-authored). The result for task 2 (key &quot;changes&quot;) is represented as an array, holding a binary for each pair of consecutive paragraphs within the document (0 if there was no style change, 1 if there was a style change). If the document is single-authored, the solution to task 2 is an array filled with 0s. Furthermore, we provide the order of authors contained in the document (e.g.,&nbsp;[A1, A2, A1]&nbsp;for a two-author document), the total number of authors and the Stackoverflow site the texts were extracted from (i.e., topic).</p> <p>An example of a multi-author document, where there was a style change between the third and fourth paragraph could look as follows (we only list the two relevant key/value pairs here):&nbsp;</p> <pre><code class="language-json">{     "multi-author": 1,     "changes": [0,0,1,...] }</code></pre> <p>A single-author document would have the following form (again, only listing the two relevant key/value pairs):</p> <pre><code class="language-json">{     "multi-author": 0,     "changes": [0,0,0,...] }</code></pre> <p>&nbsp;</p>

ShareScore

20/100

Overall dataset sharing score

Score breakdown

These five areas show where the dataset supports — or may limit — practical reuse.

Stewardship
8
Harmonization
8
Access
0
Reuse readiness
0
Engagement
4

Topics