<!DOCTYPE article PUBLIC "-//NLM//DTD JATS (Z39.96) Journal Archiving and Interchange DTD v1.0 20120330//EN" "JATS-archivearticle1.dtd">
<article xmlns:xlink="http://www.w3.org/1999/xlink">
  <front>
    <journal-meta />
    <article-meta>
      <title-group>
        <article-title>Functional Structure Recognition of Scientific Documents in Information Science</article-title>
      </title-group>
      <contrib-group>
        <contrib contrib-type="author">
          <string-name>Dayu Yan</string-name>
          <xref ref-type="aff" rid="aff0">0</xref>
          <xref ref-type="aff" rid="aff1">1</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Si Shen</string-name>
          <email>shensi@njust.edu.cn</email>
          <xref ref-type="aff" rid="aff0">0</xref>
          <xref ref-type="aff" rid="aff1">1</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Dongbo Wang</string-name>
          <email>db.wang@njau.edu.cn</email>
        </contrib>
        <aff id="aff0">
          <label>0</label>
          <institution>College of Information Management, Nanjing Agricultural University</institution>
          ,
          <addr-line>Nanjing, China, 210000</addr-line>
        </aff>
        <aff id="aff1">
          <label>1</label>
          <institution>School of Economics &amp; Management, Nanjing University of Science and Technology</institution>
          ,
          <addr-line>Nanjing, China, 210000</addr-line>
        </aff>
      </contrib-group>
      <abstract>
        <p>The recognition of the functional structure can help to understand the logical structure and content structure of the text, understand the text from a deep level, and further realize the academic big data analysis and data mining. In this study, the academic full text is taken as the research object, and the papers published in JASIST journals from 2010 to 2020 are selected to conduct a comparison experiment on the four models of Prompt, SciBERT, LSTM and TextCNN. The results showed that Prompt model had the best recognition effect.</p>
      </abstract>
    </article-meta>
  </front>
  <body>
    <sec id="sec-1">
      <title>1. Introduction</title>
      <p>Automatic recognition of the functional
structure of academic texts is an important issue in the
field of natural language processing ( Lu, et al.,
2018 ). On the one hand, it can make the logical
structure of a paper clearer and present in a
finegrained way, which can enable researchers to
retrieve the required literature information faster
and save time. On the other hand, it helps to
standardize the structure of the paper. At present,
machine learning and deep learning have become the
mainstream methods of paragraph structure
recognition.</p>
      <p>Traditional machine algorithms mainly
include support vector machine, naive Bayes,
Logistic regression and K- nearest neighbour
algorithm. TUAROB et al. (2015) compared two
models, naive Bayes and support vector machine, to
divide chapter boundaries of academic literature.
Since Hinton et al.(2006) put forward the concept
of deep learning in 2006, in addition to these
models based on traditional machine learning, the
research on the use of deep models has gradually
deepened. Tkaczyk et al. (2015) proposed a
system based on modular open source flow to extract
metadata in the paper. However, the proposal of
pre-training language model makes the
representation effect of word vector to a higher level. Ren
et al. (2017) fully studied the structural features of
academic texts, and combined with convolutional
neural network, proposed an automatic functional
structure detector to identify the structure of
academic texts. The BERT model is excellent, but
fine-tuning requires a lot of data and
computational power, and not enough data is available for
all scenarios. The prompt based downstream tasks
have recently become a boon to small sample
learning. Prompt allows the model input to be
modified to bring downstream tasks closer to the
pre-trained model.</p>
      <p>Therefore, Prompt, SciBERT, LSTM and
TextCNN models were selected in this research
for comparative experiments. The optimal
recognition model is sought and the influence of
different models on structure function recognition is
discussed.</p>
      <sec id="sec-1-1">
        <title>2. Corpus &amp; Method</title>
      </sec>
    </sec>
    <sec id="sec-2">
      <title>2.1. Data Source &amp; Data Annotation</title>
      <p>This research obtained all the full texts of
academic papers published in Journal of the
Association for Information Science and Technology
(JASIST ) from 2010 to 2020 by using self-made
Python program.</p>
      <p>As for data annotation, in this paper, the
collected 2232 articles are divided into text according
to paragraph as the basic unit, and the structure of
these paragraphs is marked. Combined with
previous research on the functional structure of
academic texts, this paper divides the structure and
function of academic texts into five parts:
"introduction", "relevant research", "method",
"experiment" and "conclusion", which are represented by
"I", "R", "M", "E" and "C" respectively. The
specific labeling process is as follows: BERT model
is first invoked to complete automatic functional
structure labeling of academic full-text data from
2010 to 2020. In order to ensure the accuracy of
labeling, manual verification is required. After
manual review and collation, preliminary text data
is obtained. The number of marked paragraphs of
each structure is shown in Table1 below .
Table 1 Basic Information of the Corpus</p>
      <p>Prompt reconstructs the template for different
tasks, inputs human-made rules into the
pre-training model, and makes the model better understand
human instructions, bridging the gap between the
training process and downstream tasks. SciBERT
is a BERT pre-trained using a total of 1.14 million
scientific papers in biomedical (82%) and
computer science (12%) directions and may be more
suitable for natural language processing tasks in
the direction of scientific papers. LSTM is a
variant of RNN. RNN can only have Short-Term
Memory due to the disappearance of gradient.
Compared with RNN network, LSTM network
combines short-term memory with long-term
memory by adding additional state c and using
gate control. And to some extent, it solves the
problem of disappearing gradient. TextCNN, as
the name implies, is CNN for text tasks. Each
word is mapped to a word vector by embedding,
and then input to sofxmax layer through
convolution layer and max-pooling layer to realize text
classification.</p>
      <sec id="sec-2-1">
        <title>3. Experiment</title>
        <p>
          The main parameters of Prompt are as follows:
epochs is 10, learning_rate is 1e-5, max_len is
512.The main parameters of SciBERT are as
follows: max_len is 128, epochs is 3, learning_rate is
2e-5, num_attention_heads is 12, hidden_size is
300. LSTM parameters are as follows: max_len is
512, epochs is10, and learning_rate is 0.005. The
main parameters of TextCNN are as
follows :epochs is 5, filter_sizes is (
          <xref ref-type="bibr" rid="ref3 ref4 ref5">3,4,5</xref>
          ). In this
paper, P (precision), R (recall), f1 (F1-score) and
macro average of five paragraph functional
structure recognition are used as evaluation indicators
to measure the performance of these four deep
learning models.
        </p>
        <p>Table 2. Results of 10-Fold Cross-Validation</p>
        <sec id="sec-2-1-1">
          <title>Model</title>
        </sec>
        <sec id="sec-2-1-2">
          <title>Precision</title>
        </sec>
        <sec id="sec-2-1-3">
          <title>Recall F1-Value</title>
          <p>
            From the perspective of various structural
functions, the effect of the introduction is the best, and
the average of the three indicators can reach 95%,
followed by the conclusion and method, and the
effect of related research is the worst. The reasons
are as follows: (
            <xref ref-type="bibr" rid="ref1">1</xref>
            ) In the function of relevant
research, the role of paragraphs is to summarize the
current research status at home and abroad, sort
out the research context, discover new research
questions, and provide theoretical support for the
following research. However, it overlaps with the
following methods to a certain extent. (
            <xref ref-type="bibr" rid="ref2">2</xref>
            ) The
experimental function partially overlaps with the
method function to a certain extent, which leads
to the lack of effect of experimental function.
Introduction, conclusion and other functional
structure repetition degree is low, so the effect is better.
          </p>
        </sec>
      </sec>
    </sec>
    <sec id="sec-3">
      <title>4. Conclusion &amp; Future Work</title>
      <p>In the experiment of functional structure
recognition of the full text, the overall
performance of the functional structure Prompt on the
test set is the best, because the model input the
prompt information, can be more fully mining the
semantic knowledge in the pre-training model.
Secondly, from the view of the recognition effect
of each structure, Prompt has the best
performance in the introduction, related studies,
methods, experiments, conclusions, showing the strong
learning ability of the model, as well as a wide
range of application prospects.</p>
    </sec>
    <sec id="sec-4">
      <title>5. References</title>
    </sec>
  </body>
  <back>
    <ref-list>
      <ref id="ref1">
        <mixed-citation>
          [1]
          <string-name>
            <surname>Lu</surname>
            ,
            <given-names>W.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Huang</surname>
            ,
            <given-names>Y.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Bu</surname>
            ,
            <given-names>Y.</given-names>
          </string-name>
          , et al.(
          <year>2018</year>
          ).
          <article-title>Functional structure identification of scientific documents in computer science</article-title>
          . Scientometrics,
          <volume>115</volume>
          (
          <issue>1</issue>
          ),
          <fpage>463</fpage>
          -
          <lpage>486</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref2">
        <mixed-citation>
          [2]
          <string-name>
            <surname>Shen</surname>
            <given-names>S</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Jiang</surname>
            <given-names>C</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Hu</surname>
            <given-names>H</given-names>
          </string-name>
          , et al. (
          <year>2022</year>
          ).
          <article-title>A model for the identification of the functional structures of unstructured abstracts in the social sciences</article-title>
          .
          <source>The Electronic Library</source>
          ,
          <volume>40</volume>
          (
          <issue>6</issue>
          ):
          <fpage>680</fpage>
          -
          <lpage>697</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref3">
        <mixed-citation>
          [3]
          <string-name>
            <surname>Tuarob</surname>
            <given-names>S</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Mitra</surname>
            <given-names>P</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Giles</surname>
            <given-names>C L</given-names>
          </string-name>
          .(
          <year>2015</year>
          ).
          <article-title>A hybrid approach to discover semantic hierarchical sections in scholarly documents.2015 13th international conference on document analysis and recognition (ICDAR)</article-title>
          . IEEE,
          <fpage>1081</fpage>
          -
          <lpage>1085</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref4">
        <mixed-citation>
          [4]
          <string-name>
            <surname>Hinton</surname>
            ,
            <given-names>G. E.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Salakhutdinov</surname>
            ,
            <given-names>R. R.</given-names>
          </string-name>
          (
          <year>2006</year>
          ).
          <article-title>Reducing the dimensionality of data with neural networks</article-title>
          .
          <source>science</source>
          ,
          <volume>313</volume>
          (
          <issue>5786</issue>
          ):
          <fpage>504</fpage>
          -
          <lpage>507</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref5">
        <mixed-citation>
          [5] Tkaczy,k. D.,
          <string-name>
            <surname>Szostek</surname>
            ,
            <given-names>P</given-names>
          </string-name>
          , Fedoryszak,
          <string-name>
            <surname>M.</surname>
          </string-name>
          , et al. (
          <year>2015</year>
          ).
          <article-title>CERMINE: automatic extraction of structured metadata from scientific literature</article-title>
          .
          <source>International Journal on Document Analysis and Recognition (IJDAR)</source>
          ,
          <volume>18</volume>
          (
          <issue>4</issue>
          ):
          <fpage>317</fpage>
          -
          <lpage>335</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref6">
        <mixed-citation>
          [6]
          <string-name>
            <surname>Ren</surname>
            ,
            <given-names>X.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Zhou</surname>
            ,
            <given-names>Y.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Huang</surname>
            ,
            <given-names>Z.</given-names>
          </string-name>
          , et al.(
          <year>2017</year>
          ).
          <article-title>A novel functional structure feature extractor for Chinese scene text detection and recognition</article-title>
          .
          <source>IEEE Access</source>
          ,
          <volume>5</volume>
          :
          <fpage>3193</fpage>
          -
          <lpage>3204</lpage>
          .
        </mixed-citation>
      </ref>
    </ref-list>
  </back>
</article>