<!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>NonDisclosureGrid: A Multimodal Privacy-Preserving Document Representation for Automated Document Processing</article-title>
      </title-group>
      <contrib-group>
        <contrib contrib-type="author">
          <string-name>Claudio Paonessa</string-name>
          <email>claudio.paonessa@fhnw.ch</email>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Windisch</string-name>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Switzerland</string-name>
        </contrib>
        <contrib contrib-type="editor">
          <string-name>Lugano, Switzerland</string-name>
        </contrib>
        <aff id="aff0">
          <label>0</label>
          <institution>Institute for Data Science, FHNW University of Applied Sciences and Arts Northwestern Switzerland, School of Engineering</institution>
          ,
          <addr-line>Bahnhofstrasse 6</addr-line>
        </aff>
      </contrib-group>
      <abstract>
        <p>We propose a novel type of document representation that preserves textual, visual, and spatial information without containing any sensitive data. We achieve this by transforming the original visual and textual data into simplified encodings. These pieces of non-sensitive information are combined into a tensor to form the NonDisclosureGrid (NDGrid). We demonstrate its capabilities on information extraction tasks and show, that our representation matches the performance of state-of-the-art representations and even outperforms them in specific cases.</p>
      </abstract>
      <kwd-group>
        <kwd>Document</kwd>
      </kwd-group>
    </article-meta>
  </front>
  <body>
    <sec id="sec-1">
      <title>-</title>
      <p>1. Introduction
wards successful digitization for many businesses
worldwide. The goal is to transform unstructured or
semistructured information into a structured form for various
downstream tasks, hence streamlining administrative
procedures in banking, medicine, and many other
domains.</p>
      <p>Because of the typically sensitive nature of the data
used for document processing, the data available to train
state-of-the-art systems is limited. Private companies
are often obliged to delete documents collected from
customers after a certain time period and may not share the
data with providers specialized in automated document
processing at all. This restriction prevents them from
training and continuously improving machine learning
models.</p>
    </sec>
    <sec id="sec-2">
      <title>2. Related</title>
    </sec>
    <sec id="sec-3">
      <title>Work</title>
      <p>A lot of the current progress in the field of document
understanding builds upon the combination of spatial and
textual information into a common document
representation. This is often achieved using grid-based methods,
which preserve the 2D layout of the document and
directly embed textual information into the representation.
The models can use textual information in an embedded
form and still take advantage of the 2D correlations of the
document. These methods encode the text in embedding
vectors and transpose these vectors into corresponding
pixels of the grid.</p>
      <p>
        BERTgrid [
        <xref ref-type="bibr" rid="ref2">2</xref>
        ] is a special case of the Wordgrid [
        <xref ref-type="bibr" rid="ref1">1</xref>
        ]. It
uses contextualized word embeddings from BERT [
        <xref ref-type="bibr" rid="ref3">3</xref>
        ].
Because BERT acts on a word-piece level, the text in the
document needs to be tokenized into word pieces first. A
line-by-line serialized version of the document can then
be fed into a pre-trained BERT language model.
      </p>
    </sec>
    <sec id="sec-4">
      <title>3. NonDisclosureGrid</title>
      <p>Based on the assumption that simplified encodings can
replace the original information in documents and still
retain utility for model training, we define components
to transform the original data into non-sensitive
informational pieces. Some components are based on textual
information, and some represent purely visual parts of
the document.</p>
      <sec id="sec-4-1">
        <title>3.1. Textual Features</title>
        <p>State-of-the-art grid-based representations embed the
text more or less directly into the grid. Because the
character-level encoding and the word or subword
embeddings can potentially contain sensitive information,
we need to develop other approaches to incorporate
textual information.</p>
        <p>Layout-only is a binary text mask and the simplest
component in our novel representation. This layer
contion in the 2D grid based on the token bounding boxes
Category
Contains alphabetic (a-z, A-Z)
Contains numeric (0-9)
Contains non-alphanumeric</p>
        <p>Value
(1, _, _)
(_, 1, _)
(_, _, 1)
 = (  ,   , ℎ ,   ) the associated bounding box of the
  = {
1, if ∃ such as (, ) ≺  
0, otherwise</p>
        <p>(1)
where ≺ means the point (, ) lies within the bounding
 ≤   + ℎ ).
box   (formally: (, ) ≺</p>
        <p>⟺   ≤  ≤   +   ∧   ≤</p>
        <p>
          Alphanumeric Categorization is a strongly simpli- dividing line to separate content or tabular structures. To
ifed text encoding. In our approach, we encode a
token into a three-dimensional binary vector. These three
ifnd lines in document scans, we use the line segment
detector implementation from OpenCV [
          <xref ref-type="bibr" rid="ref7">7</xref>
          ], which follows
components are 1 if the token contains at least one al- the algorithm described in Gioi et al. [
          <xref ref-type="bibr" rid="ref8">8</xref>
          ]. To prevent
dis
        </p>
        <p>The idea behind this approach is that the key infor- into a binary mask.
detected from OCR. This reduces the document to its spa- lower than the original embedding dimensions.
Nevphabetic character, a numeric character, and one other
non-alphanumeric character, respectively. This encoding
is summarized in Table 1.
mation relevant for tasks like information extraction
often has consistent underlying character properties.</p>
        <p>For example, the extraction of monetary values from
invoices can be supported if we know which tokens
contain numbers; e.g., 65.90 or 23.– would, with our
approach, most of the time be encoded with (0, 1, 1) (no
alphabetic but both numeric and non-alphanumeric
characters).</p>
        <p>
          Locality-sensitive hashing (LSH) [
          <xref ref-type="bibr" rid="ref5 ref6">5, 6</xref>
          ] is a family
of hashing techniques with a high chance of the hashes
of similar inputs being the same. These techniques can
be used for data clustering and eficient nearest neighbor
search.
        </p>
        <p>One possible implementation is LSH based on
hyperplanes. For this, we randomly sample  hyperplanes in
the original input space. For each sample in the original
space we determine if it’s on the left or right of each
hyperplane, resulting in a  dimensional boolean vector
which forms our hash. We thus reduce word embeddings
to a  dimensional binary vector, as every hyperplane
randomly splits the embedding space into two categories.</p>
        <p>The idea behind this hashing is to have textual
information without the possibility of reconstructing the original
text in the document.</p>
        <p>
          In our experiments we apply this method to BERT
embeddings [
          <xref ref-type="bibr" rid="ref3">3</xref>
          ] with  set to 10 and 100 respectively.
        </p>
        <p>One could argue that depending on the number of
hyperplanes, this hash could enable the reconstruction
of the original text. We do not expect this to be an
issue with the number of hyperplanes chosen significantly
ertheless, this is still an outstanding matter and needs
further investigation.</p>
      </sec>
      <sec id="sec-4-2">
        <title>3.2. Visual Features</title>
        <p>Visually-rich documents contain valuable information
outside of detected textual information. Visual elements
are incorporated into documents to increase their
readability for humans. Hence, downstream tasks in
automatic document processing can benefit from these
visual features.</p>
        <p>Line mask is a method to incorporate line segments
into a one-channel binary mask. A line in a document can
be part of a rectangular box around textual elements or a
closing textual information, we only include lines with a
length of at least 10% of the document width. With
mathematic rounding, the determined lines are incorporated</p>
      </sec>
    </sec>
    <sec id="sec-5">
      <title>4. Key Information Extraction</title>
      <p>The automated extraction of key-value information from
document scans such as invoices, receipts, or forms can
decrease the manual labor needed for many business
workflows. We use this task to compare our novel
approach to state-of-the-art representations.</p>
      <sec id="sec-5-1">
        <title>4.1. Datasets</title>
        <p>Our work is evaluated on three public datasets covering
forms and invoices, the two most common applications
for document understanding systems.</p>
        <p>
          FUNSD [
          <xref ref-type="bibr" rid="ref9">9</xref>
          ] is an English dataset for form
understanding. The dataset contains noisy scanned form pages and
consists of 149 training samples and 50 test samples. Each
token in the documents is labeled with one of four
diferent classes: Header, Question, Answer, Other.
        </p>
        <p>
          XFUND [
          <xref ref-type="bibr" rid="ref10">10</xref>
          ] is a multilanguage form understanding
benchmark with matching classes to the FUNSD dataset.
The underlying dataset contains human-labeled forms
with key-value pairs in 7 languages: Chinese, Japanese,
Spanish, French, Italian, German, Portuguese. Because of
diferent character sets we do not use the Chinese and
Japanese samples from this dataset. We end up with 745
training samples and 250 test samples.
        </p>
        <p>
          RVL-CDIP Layout [
          <xref ref-type="bibr" rid="ref11">11</xref>
          ] is derived from the RVL-CDIP
classification dataset [
          <xref ref-type="bibr" rid="ref12">12</xref>
          ] and consists of 520 scanned
invoice document pages in English. Each token on a
page is labeled with one of 6 diferent classes. We split
the dataset into 416 training samples and 104 test samples.
We focus on the fields Receiver, Supplier, Invoice info, and
Total.
        </p>
      </sec>
      <sec id="sec-5-2">
        <title>4.2. Model Architecture</title>
        <p>
          We replicate the chargrid-net architecture from Katti et al.
[
          <xref ref-type="bibr" rid="ref1">1</xref>
          ]. This model is a fully convolutional neural network
with an encoder-decoder architecture using
downsampling in the encoder and a reversion of the downsampling
based on stride-2 transposed convolutions in the decoder.
In contrast to the two parallel decoders in the original
model, we only use the semantic segmentation decoder,
which concludes in a pixel-level classification for the
number of target classes.
        </p>
        <p>
          Replicated from the loss used in Katti et al. [
          <xref ref-type="bibr" rid="ref1">1</xref>
          ], we
counter the strong class imbalance between background
pixels and actual relevant pixels with static aggressive
class weighting following Paszke et al. [
          <xref ref-type="bibr" rid="ref13">13</xref>
          ].
4.3. Evaluation Measure
mation extraction task, we use the Word Accuracy Rate
(WAR) [
          <xref ref-type="bibr" rid="ref1 ref4">1, 4</xref>
          ]. Similar to the Levenshtein distance it counts
the number of substitutions, insertions, and deletions
between the ground truth and the prediction. We report
the WAR for each given field and overall. The instances
are pooled across the entire test set. WAR is defined as
follows:
        </p>
        <p>WAR = 1 −
#[ins.] + #[del.] + #[sub.]

where  is the total number of tokens of a specific field
(2)
in the ground truth instance.</p>
      </sec>
    </sec>
    <sec id="sec-6">
      <title>5. Experiments and Results</title>
      <p>In the following we show quantitative results of our
proposed document representation. First we show the
impact of single components by carry out an ablation study
We report the results of the ablation study in Figure 1. We
experimented with diferent combinations of our
developed components: Layout-only (LA), Alphanumeric
Categorization (AN), Locality-sensitive hashing (LSH), and
the Line mask (LI). For the FUNSD and XFUND datasets,
we additionaly compare LSH components with 10 and
100 hyperplanes, denoted as LSH(10) and LSH(100),
respectively.</p>
    </sec>
    <sec id="sec-7">
      <title>6. Discussion</title>
      <p>
        To evaluate the model performance for the key infor- to estimate impact of LSH (5, 6, 7) are only carried out for
followed by a comparison among Chargrid [
        <xref ref-type="bibr" rid="ref1">1</xref>
        ] and BERT- In the ablation study, we show how we can increase the
grid [
        <xref ref-type="bibr" rid="ref2">2</xref>
        ]. As a baseline we use the 3-channel RGB image
model performance by combining our non-sensitive
comconsistent over the analyzed datasets. Diferent dataset
key fields. Our approach often matches and, on specific
ifelds, even outperforms the BERTgrid performance. The
results support the hypothesis that a generalized and
fundamentally simplified representation still contains
enough information to be used in automated document
processing.
      </p>
    </sec>
    <sec id="sec-8">
      <title>7. Conclusion</title>
      <p>sizes seem to be influential when it comes to the impact of
the components. When using the Line mask (LI) in
combination with Layout-only (LA) and the Alphanumeric
Categorization (AN), the model performance increases
significantly. The Line mask (LI) without the
Alphanumeric Categorization seems to be less efective or, in the
case of the RVL-CDIP Layout dataset, even worse than
the Layout-only (LA) by itself. Combining all
components, including LSH with 100 hyperplanes, yields the
best model performance for all three datasets. The LSH
component with 100 hyperplanes does perform worse
when not combined with the other components.</p>
      <p>Except for the header fields in the FUNSD dataset, the
BERTgrid outperforms the image and the Chargrid on all</p>
    </sec>
  </body>
  <back>
    <ref-list>
      <ref id="ref1">
        <mixed-citation>
          [1]
          <string-name>
            <given-names>A. R.</given-names>
            <surname>Katti</surname>
          </string-name>
          ,
          <string-name>
            <given-names>C.</given-names>
            <surname>Reisswig</surname>
          </string-name>
          ,
          <string-name>
            <given-names>C.</given-names>
            <surname>Guder</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            <surname>Brarda</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            <surname>Bickel</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Höhne</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J. B.</given-names>
            <surname>Faddoul</surname>
          </string-name>
          , Chargrid:
          <article-title>Towards understanding 2d documents</article-title>
          , CoRR abs/
          <year>1809</year>
          .08799 (
          <year>2018</year>
          ). URL: http://arxiv.org/ abs/
          <year>1809</year>
          .08799. arXiv:
          <year>1809</year>
          .08799.
        </mixed-citation>
      </ref>
      <ref id="ref2">
        <mixed-citation>
          [2]
          <string-name>
            <given-names>T. I.</given-names>
            <surname>Denk</surname>
          </string-name>
          ,
          <string-name>
            <given-names>C.</given-names>
            <surname>Reisswig</surname>
          </string-name>
          , Bertgrid:
          <article-title>Contextualized embedding for 2d document representation and understanding</article-title>
          , CoRR abs/
          <year>1909</year>
          .04948 (
          <year>2019</year>
          ). URL: http://arxiv.org/abs/
          <year>1909</year>
          .04948. arXiv:
          <year>1909</year>
          .04948.
        </mixed-citation>
      </ref>
      <ref id="ref3">
        <mixed-citation>
          [3]
          <string-name>
            <given-names>J.</given-names>
            <surname>Devlin</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Chang</surname>
          </string-name>
          ,
          <string-name>
            <given-names>K.</given-names>
            <surname>Lee</surname>
          </string-name>
          ,
          <string-name>
            <given-names>K.</given-names>
            <surname>Toutanova</surname>
          </string-name>
          ,
          <article-title>BERT: pre-training of deep bidirectional transformers for language understanding</article-title>
          , CoRR abs/
          <year>1810</year>
          .04805 (
          <year>2018</year>
          ). URL: http://arxiv.org/ abs/
          <year>1810</year>
          .04805. arXiv:
          <year>1810</year>
          .04805.
        </mixed-citation>
      </ref>
      <ref id="ref4">
        <mixed-citation>
          [4]
          <string-name>
            <given-names>M.</given-names>
            <surname>Kerroumi</surname>
          </string-name>
          ,
          <string-name>
            <given-names>O.</given-names>
            <surname>Sayem</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Shabou</surname>
          </string-name>
          , Visualwordgrid:
          <article-title>Information extraction from scanned documents using A multimodal approach</article-title>
          , CoRR abs/
          <year>2010</year>
          .02358 (
          <year>2020</year>
          ). URL: https://arxiv.org/abs/
          <year>2010</year>
          .02358. arXiv:
          <year>2010</year>
          .02358.
        </mixed-citation>
      </ref>
      <ref id="ref5">
        <mixed-citation>
          [5]
          <string-name>
            <given-names>P.</given-names>
            <surname>Indyk</surname>
          </string-name>
          ,
          <string-name>
            <given-names>R.</given-names>
            <surname>Motwani</surname>
          </string-name>
          ,
          <article-title>Approximate nearest neighbors: Towards removing the curse of dimensionality</article-title>
          ,
          <source>in: Proceedings of the Thirtieth Annual ACM Symposium on Theory of Computing</source>
          , STOC '98,
          <string-name>
            <surname>Association</surname>
          </string-name>
          for Computing Machinery, New York, NY, USA,
          <year>1998</year>
          , p.
          <fpage>604</fpage>
          -
          <lpage>613</lpage>
          . URL: https://doi. org/10.1145/276698.276876. doi:
          <volume>10</volume>
          .1145/276698. 276876.
        </mixed-citation>
      </ref>
      <ref id="ref6">
        <mixed-citation>
          [6]
          <string-name>
            <given-names>A.</given-names>
            <surname>Gionis</surname>
          </string-name>
          ,
          <string-name>
            <given-names>P.</given-names>
            <surname>Indyk</surname>
          </string-name>
          ,
          <string-name>
            <given-names>R.</given-names>
            <surname>Motwani</surname>
          </string-name>
          ,
          <article-title>Similarity search in high dimensions via hashing</article-title>
          ,
          <source>in: Proceedings of the 25th International Conference on Very Large Data Bases</source>
          , VLDB '
          <fpage>99</fpage>
          , Morgan Kaufmann Publishers Inc., San Francisco, CA, USA,
          <year>1999</year>
          , p.
          <fpage>518</fpage>
          -
          <lpage>529</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref7">
        <mixed-citation>
          [7]
          <string-name>
            <given-names>G.</given-names>
            <surname>Bradski</surname>
          </string-name>
          , The OpenCV Library, Dr.
          <source>Dobb's Journal of Software Tools</source>
          (
          <year>2000</year>
          ).
        </mixed-citation>
      </ref>
      <ref id="ref8">
        <mixed-citation>
          [8]
          <string-name>
            <given-names>R.</given-names>
            <surname>Gioi</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Jakubowicz</surname>
          </string-name>
          ,
          <string-name>
            <surname>J.-M. Morel</surname>
          </string-name>
          , G. Randall,
          <article-title>Lsd: A line segment detector</article-title>
          ,
          <source>Image Processing On Line</source>
          <volume>2</volume>
          (
          <year>2012</year>
          )
          <fpage>35</fpage>
          -
          <lpage>55</lpage>
          . doi:
          <volume>10</volume>
          .5201/ipol.
          <year>2012</year>
          .
          <article-title>gjmr-lsd.</article-title>
        </mixed-citation>
      </ref>
      <ref id="ref9">
        <mixed-citation>
          [9]
          <string-name>
            <surname>J.-P. T. Guillaume</surname>
            <given-names>Jaume</given-names>
          </string-name>
          , Hazim Kemal Ekenel,
          <article-title>Funsd: A dataset for form understanding in noisy scanned documents</article-title>
          , in: Accepted to ICDAR-OST,
          <year>2019</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref10">
        <mixed-citation>
          [10]
          <string-name>
            <given-names>Y.</given-names>
            <surname>Xu</surname>
          </string-name>
          ,
          <string-name>
            <given-names>T.</given-names>
            <surname>Lv</surname>
          </string-name>
          ,
          <string-name>
            <given-names>L.</given-names>
            <surname>Cui</surname>
          </string-name>
          ,
          <string-name>
            <given-names>G.</given-names>
            <surname>Wang</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Y.</given-names>
            <surname>Lu</surname>
          </string-name>
          ,
          <string-name>
            <given-names>D.</given-names>
            <surname>Florencio</surname>
          </string-name>
          ,
          <string-name>
            <given-names>C.</given-names>
            <surname>Zhang</surname>
          </string-name>
          ,
          <string-name>
            <given-names>F.</given-names>
            <surname>Wei</surname>
          </string-name>
          , Layoutxlm:
          <article-title>Multimodal pretraining for multilingual visually-rich document understanding (</article-title>
          <year>2021</year>
          ). arXiv:
          <volume>2104</volume>
          .
          <fpage>08836</fpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref11">
        <mixed-citation>
          [11]
          <string-name>
            <given-names>P.</given-names>
            <surname>Riba</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Dutta</surname>
          </string-name>
          ,
          <string-name>
            <given-names>L.</given-names>
            <surname>Goldmann</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Fornés</surname>
          </string-name>
          ,
          <string-name>
            <given-names>O.</given-names>
            <surname>Ramos</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Lladós</surname>
          </string-name>
          ,
          <article-title>Table detection in invoice documents by graph neural networks</article-title>
          ,
          <source>in: 2019 International Conference on Document Analysis and Recognition (ICDAR)</source>
          ,
          <year>2019</year>
          , pp.
          <fpage>122</fpage>
          -
          <lpage>127</lpage>
          . doi:
          <volume>10</volume>
          .1109/ICDAR.
          <year>2019</year>
          .
          <volume>00028</volume>
          .
        </mixed-citation>
      </ref>
      <ref id="ref12">
        <mixed-citation>
          [12]
          <string-name>
            <given-names>A. W.</given-names>
            <surname>Harley</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Ufkes</surname>
          </string-name>
          ,
          <string-name>
            <given-names>K. G.</given-names>
            <surname>Derpanis</surname>
          </string-name>
          ,
          <article-title>Evaluation of deep convolutional nets for document image classiifcation and retrieval</article-title>
          ,
          <source>in: International Conference on Document Analysis and Recognition</source>
          ,
          <year>2015</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref13">
        <mixed-citation>
          [13]
          <string-name>
            <given-names>A.</given-names>
            <surname>Paszke</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Chaurasia</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            <surname>Kim</surname>
          </string-name>
          , E. Culurciello,
          <article-title>Enet: A deep neural network architecture for real-time semantic segmentation</article-title>
          ,
          <year>2016</year>
          . arXiv:
          <volume>1606</volume>
          .
          <fpage>02147</fpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref14">
        <mixed-citation>
          [14]
          <string-name>
            <given-names>T.</given-names>
            <surname>Wolf</surname>
          </string-name>
          ,
          <string-name>
            <given-names>L.</given-names>
            <surname>Debut</surname>
          </string-name>
          ,
          <string-name>
            <given-names>V.</given-names>
            <surname>Sanh</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Chaumond</surname>
          </string-name>
          ,
          <string-name>
            <given-names>C.</given-names>
            <surname>Delangue</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Moi</surname>
          </string-name>
          ,
          <string-name>
            <given-names>P.</given-names>
            <surname>Cistac</surname>
          </string-name>
          ,
          <string-name>
            <given-names>T.</given-names>
            <surname>Rault</surname>
          </string-name>
          ,
          <string-name>
            <given-names>R.</given-names>
            <surname>Louf</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Funtowicz</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Davison</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            <surname>Shleifer</surname>
          </string-name>
          , P. von Platen, C. Ma,
          <string-name>
            <given-names>Y.</given-names>
            <surname>Jernite</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Plu</surname>
          </string-name>
          ,
          <string-name>
            <given-names>C.</given-names>
            <surname>Xu</surname>
          </string-name>
          ,
          <string-name>
            <given-names>T. L.</given-names>
            <surname>Scao</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            <surname>Gugger</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Drame</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Q.</given-names>
            <surname>Lhoest</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A. M.</given-names>
            <surname>Rush</surname>
          </string-name>
          , Transformers:
          <article-title>State-of-the-art natural language processing</article-title>
          ,
          <source>in: Proceedings of the 2020 Conference on Empirical Methods in Natural Language Processing: System Demonstrations</source>
          ,
          <article-title>Association for Computational Linguistics</article-title>
          , Online,
          <year>2020</year>
          , pp.
          <fpage>38</fpage>
          -
          <lpage>45</lpage>
          . URL: https:// www.aclweb.org/anthology/2020.emnlp-demos.
          <volume>6</volume>
          .
        </mixed-citation>
      </ref>
    </ref-list>
  </back>
</article>