<!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>Dialog Clustering: a Framework for Automatic Text Clustering?</article-title>
      </title-group>
      <contrib-group>
        <contrib contrib-type="author">
          <string-name>Noovle S.p.A</string-name>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Milan</string-name>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Italy https://www.noovle.com/en/</string-name>
        </contrib>
      </contrib-group>
      <abstract>
        <p>Despite the recent advances in Natural Language Processing techniques, when it comes to unsupervised applications, such as text clustering, many critical issues arise, as evaluating the results of an unsupervised algorithm or making an unsupervised algorithm work in an automatic fashion. In this research we propose an innovative framework based on machine learning for the creation of a system capable of addressing these critical issues. The framework consists of four main steps: a step for converting text into embedding, a step to reduce the dimensionality of the generated embedding, a step for clustering data and, nally, a step to evaluate the results obtained and selecting the best clustering produced. Each of these steps uses di erent models equipped with a mechanism for identifying and automatically selecting hyperparameters. Our framework guarantees good performance in clustering text without an a-priori knowledge of the data. Observing the results it can be seen how the subdivisions of the dataset vary according to the models used in the di erent steps of the proposed system and how groups focused on speci c themes are identi ed.</p>
      </abstract>
      <kwd-group>
        <kwd>Natural Language Processing</kwd>
        <kwd>Text Clustering</kwd>
        <kwd>Dimensionality Reduction</kwd>
        <kwd>Text Embedding</kwd>
      </kwd-group>
    </article-meta>
  </front>
  <body>
    <sec id="sec-1">
      <title>-</title>
      <p>
        In recent years, thanks to the advances in Natural Language Processing (NLP)
techniques [1{3], an ever increasing number of text applications, as part-of-speech
tagging [
        <xref ref-type="bibr" rid="ref6">6</xref>
        ], text classi cation [
        <xref ref-type="bibr" rid="ref4">4</xref>
        ], document summarization [
        <xref ref-type="bibr" rid="ref4">4</xref>
        ], named entity
recognition [
        <xref ref-type="bibr" rid="ref7">7</xref>
        ], text clustering [
        <xref ref-type="bibr" rid="ref9">9</xref>
        ], machine translation and chatbots, have been
developed [
        <xref ref-type="bibr" rid="ref5">5</xref>
        ]. Among these, the use of chatbots has been very popular since
its inception in 1960. In the past several years, giant companies have invested
in arti cial intelligence and developed conversational engines (such as Google
DialogFlow, Amazon Lex, Azure Bot Service) that allow customers to create
their own personalized dialog system [
        <xref ref-type="bibr" rid="ref8">8</xref>
        ]. However, the design of the
conversational ow is complex, often error-prone and incomplete [
        <xref ref-type="bibr" rid="ref65">65</xref>
        ]. To enhance their
creation many companies make use of existing unstructured corpora of text,
coming from real conversations with customers but, the exploration and exploitation
of such corpora is di cult, since data is unstructured and noisy. A better
understanding of such data can be obtained by using unsupervised machine learning
algorithms, such as clustering, which, indeed, aims at detecting patterns and
getting insights from data. Text clustering applications, given their unsupervised
nature, however are not always directly measurable and need to involve humans
to explain the results. Thus, the goal of this research is that of developing a
methodology for creating text clustering addressing these issues and trying to
automate a process that has until now been manual. This research is driven by
the business need of a partner company that aims at creating an application to
continuously improve an existing conversational customer service agent able to
assist customers to manage and maintain the machine they produce. The goal is
that of collecting all the chatbot's fallbacks (i.e. questions to which the chatbot
is not able to give and answer) and use them subsequently to derive new intents
to re-train the chatbot. Thus, we design a methodology to automatically
create and evaluate clusters of text coming from conversations, in order to derive
from the corpus new possible intents. The developed framework is composed of
a multi-step pipeline with an embedding step for creating text embeddings, a
dimensionality reduction step, a clustering step and a nal evaluation to select
and evaluate the clusterings produced. The rest of this paper is organized as
follows. In Chapter 2 an overview of the state of the art is presented, with a
focus on text embedding, dimensionality reduction and clustering. In Chapter 3
the pipeline that enables the creation of the automatic clustering framework is
de ned and in Chapter 4 the experimental results obtained are shown. Finally
in Chapter 5 some conclusive marks.
2
      </p>
    </sec>
    <sec id="sec-2">
      <title>State of the Art</title>
      <p>
        In the context of text clustering [
        <xref ref-type="bibr" rid="ref9">9</xref>
        ], the critical points for the realization of a
clustering system are three: the conversion of the text into a set of features,
a.k.a embedding, the dimensionality reduction of the features and the clustering
algorithm itself [
        <xref ref-type="bibr" rid="ref10">10</xref>
        ]. In the following we focus on these main issues.
2.1
      </p>
      <sec id="sec-2-1">
        <title>Text Embedding</title>
        <p>
          The representation of words and documents is a fundamental activity in NLP
applications and for years the predominant methodology for this task has been that
of the Vector Space Model (VSM) [
          <xref ref-type="bibr" rid="ref11">11</xref>
          ]. The intuition is to produce an encoding
of words and documents in t-dimensional vectors, where each element represents
a unique term contained in the documents. VSM can be performed considering
global information (i.e. all the corpus of text) often via a co-occurrence matrix,
or local information (i.e. words and their context within a sentence) via the use
of neural networks. One of the rst approaches to global information-based VSM
is the calculation of the term frequency - inverse document frequency (TF-IDF)
statistic which, given a corpus of texts, weights the values of the t-dimensional
vector with respect to the word in the document, and with respect to the
frequency in all documents of the corpus [
          <xref ref-type="bibr" rid="ref12">12</xref>
          ]. More recently GloVe [
          <xref ref-type="bibr" rid="ref14">14</xref>
          ] has been
introduced, which performs an encoding of semantic relationships between words
by leveraging the intuition that co-occurrence relationships between word pairs
are more informative than simple counting. On the other hand, the rst
important contributions to modern local information-based VSM were the continuous
bag-of-words (CBOW) and the skip-gram (SG) models [
          <xref ref-type="bibr" rid="ref15">15</xref>
          ]. These models have
been used for the development and dissemination of Word2Vec [
          <xref ref-type="bibr" rid="ref16 ref17">16, 17</xref>
          ] a model
that leverages neural networks' hidden layers representation of the feature. In
2016 Facebook Inc published FastText [
          <xref ref-type="bibr" rid="ref18">18</xref>
          ], where they proposed to use the
n-grams [
          <xref ref-type="bibr" rid="ref19 ref20">19, 20</xref>
          ], thus including in the embedding the morphology and the
composition of words. In 2018 three important models have been published: ELMo
[
          <xref ref-type="bibr" rid="ref21 ref22">21, 22</xref>
          ], a bidirectional Long Short Term Memory (LSTM) model, Universal
Sentence Encoder (USE) [
          <xref ref-type="bibr" rid="ref48">48</xref>
          ], a model developed speci cally for the production of
sentence embedding and Bidirectional Encoder Representations for Transformers
(BERT) [
          <xref ref-type="bibr" rid="ref23">23</xref>
          ], a Google's model pre-trained on Wikipedia and BooksCorpus [
          <xref ref-type="bibr" rid="ref49">49</xref>
          ]
that uses transformers [
          <xref ref-type="bibr" rid="ref24 ref25">24, 25</xref>
          ] in a bidirectional architecture based on Recurrent
Neural Network (RNN) that implements an attention mechanism for contextual
representations of sentences. Following BERT there have been several models
trained on other corpora, as AlBERTo [
          <xref ref-type="bibr" rid="ref26">26</xref>
          ], a model speci cally for the italian
language.
2.2
        </p>
      </sec>
      <sec id="sec-2-2">
        <title>Dimensionality Reduction</title>
        <p>
          Dimensionality reduction is the process of transforming multidimensional
variables from vector spaces (VS) with a large number of dimensions to VSs with
a signi cantly reduced number of dimensions so that the intrinsic and most
signi cant properties of the variables are preserved [
          <xref ref-type="bibr" rid="ref28">28</xref>
          ]. One of the best known
dimensionality reduction techniques is Principal Component Analysis (PCA)
[
          <xref ref-type="bibr" rid="ref27 ref29">27, 29</xref>
          ] a statistical technique that determines the principal components (PC)
by carrying out a linear transformation of the variables such as to maximize
the variance [
          <xref ref-type="bibr" rid="ref30">30</xref>
          ]. PCA has proven to be e ective in many applications even if,
however, since it does not take into account the distribution of data sets it has
been extended to Kernel PCA which is the reformulation of PCA obtained by
applying a kernel function, used in order to take advantage of the kernel trick
[
          <xref ref-type="bibr" rid="ref31 ref32">31, 32</xref>
          ]. Other e ective approaches are Isomap [
          <xref ref-type="bibr" rid="ref33">33</xref>
          ] and UMAP [
          <xref ref-type="bibr" rid="ref34">34</xref>
          ], which are
manifold-based dimensionality reduction methods. Finally, more recently,
Autoencoders [
          <xref ref-type="bibr" rid="ref35">35</xref>
          ], based on multiple feed-forward neural networks have also been
applied to reduce the dimensionality of the data. The main criticality in the
use of autoencoders to reduce dimensionality lies in the training process of the
neural network which requires a large dataset.
2.3
        </p>
      </sec>
      <sec id="sec-2-3">
        <title>Clustering</title>
        <p>
          Clustering is an unsupervised machine learning technique that aims at grouping
data points into two or more sets so that data in the same set are closer to each
other with respect to the data points in the other set [
          <xref ref-type="bibr" rid="ref36 ref37 ref39">36, 37, 39</xref>
          ]. The clustering
models are mainly divided into 8 categories as described in Table 1.
base their theory by designating the data K-means [
          <xref ref-type="bibr" rid="ref39">39</xref>
          ]
center as the corresponding cluster center
build hierarchical relationships between BIRCH [
          <xref ref-type="bibr" rid="ref40">40</xref>
          ], CURE and
the data to be clustered and, on the ba- ROCK [
          <xref ref-type="bibr" rid="ref36">36</xref>
          ]
sis of these, they separate the datar
Fuzzy theory based on the idea that the discrete value FCM [
          <xref ref-type="bibr" rid="ref41">41</xref>
          ] and FCS [
          <xref ref-type="bibr" rid="ref42">42</xref>
          ]
based of belonging to a cluster, 0, 1, is to be
replaced with the continuous interval [
          <xref ref-type="bibr" rid="ref1">0, 1</xref>
          ]
in order to describe the relationships of
belonging of data to clusters
Distribution base the clustering of data on the statisti- Gaussian Mixture Model
based cal distribution of features (GMM) [
          <xref ref-type="bibr" rid="ref43">43</xref>
          ]
Density based base their output on the idea that regions DBSCAN [
          <xref ref-type="bibr" rid="ref44">44</xref>
          ], OPTICS [
          <xref ref-type="bibr" rid="ref45">45</xref>
          ]
with high density are those that contain and Mean-shift [
          <xref ref-type="bibr" rid="ref46">46</xref>
          ]
data belonging to the same cluster
Graph theory based on graphs, where nodes are the data CLICK [
          <xref ref-type="bibr" rid="ref36">36</xref>
          ]
based and links are the relationships between the
        </p>
        <p>
          data
Grid based change the original data space into a grid STING and CLIQUE [
          <xref ref-type="bibr" rid="ref47">47</xref>
          ]
structure
Fractal based based on fractal theory FC [
          <xref ref-type="bibr" rid="ref36">36</xref>
          ]
        </p>
        <p>Partition based models have low complexity but they have poor performance
in case of non-convex data or with many outliers and, as hierarchy based models,
they require the number of clusters to be de ned in advance. Fuzzy theory based
models, on the other hand, have poor scalability and strong sensitivity to the
hyperparameters of the models. On the contrary, the distribution based models
have a higher scalability but they strongly depend on the hyperparameters too.
The same holds for density based models, which however are very e cient and
suitable for data with arbitrary topologies. Graph theory based models have high
accuracy and e ciency of clustering, however the complexity increases signi
cantly as the complexity of the graph increases. Grid-based models are highly
scalable and characterized by low complexity but the output is very sensitive to
the granularity (mesh size). Finally, fractal theory based models have the
advantage of having linear complexity with the number of data, however they are
not enough performing to compete with the other clustering techniques.
3</p>
      </sec>
    </sec>
    <sec id="sec-3">
      <title>Methodology</title>
      <p>To understand how to create a system that, starting from a corpus of text, trains
di erent clustering models using hyper parameter optimization techniques and
selects the best ones based on a series of combined evaluation metrics, it is rstly
necessary to focus on the dataset provided to implement the solution.
3.1</p>
      <sec id="sec-3-1">
        <title>Dataset Description</title>
        <p>The available dataset is associated with a virtual agent structured in intents,
according to the business needs of the partner company.The dataset is composed of
1297 phrases, used by the conversational engine for training the model,
representative of 140 intents with an average number of training phrases for each intent
equal to 9.26. The main topics concern document management, the resolution
of problems encountered with machinery, contract management and restoration
operations.
3.2</p>
      </sec>
      <sec id="sec-3-2">
        <title>Clustering Pipelines</title>
        <p>The results of the clustering system are computed by pipelines Pi, which are
dened by the set of models implemented and their con gurations. More formally:
Pi =</p>
        <p>Eel; Ddm; Ccn
(1)
where Ee 2 fE1; :::; EE g is the e-th embedding model and Eel 2 Ee1; :::; EeL is
the l-th con guration of the model Ee; Dd is the d-th dimensionality reduction
model and Ddm is the m-th con guration; Cc is the c-th clustering model and
Ccn is the n-th con guration. At the end of the executions of all the pipelines
di erent clusterings are obtained which are analyzed and evaluated in order to
choose the ones that best adhere to the data, that is, those that have the best
evaluation.
3.3</p>
      </sec>
      <sec id="sec-3-3">
        <title>Embedding</title>
        <p>
          The rst step of the proposed methodology is represented by the application
of a set of the embedding models to the input dataset. This step is carried
out over a dataset cleaned via stop words elimination and pre-processed via
stemming, in order to reduce the noise present in the data. At this step three
di erent embeddings are carried out: BERT, AlBERTo and USE. These models,
indeed, represent the state of the art for embedding production and, moreover,
they are equipped with tools suitable to support their industrialization. Indeed
all the models are written in Python [
          <xref ref-type="bibr" rid="ref51">51</xref>
          ] and uses the TensorFlow framework
[
          <xref ref-type="bibr" rid="ref52">52</xref>
          ] which, through theTensorFlow Hub module [
          <xref ref-type="bibr" rid="ref53">53</xref>
          ] (except for ALBERTo [
          <xref ref-type="bibr" rid="ref56">56</xref>
          ]),
allows to download the pre-trained models (BERT [
          <xref ref-type="bibr" rid="ref54">54</xref>
          ], ALBERTo and USE [
          <xref ref-type="bibr" rid="ref57">57</xref>
          ])
and the pre-processing [
          <xref ref-type="bibr" rid="ref55 ref56">55, 56</xref>
          ] used for tokenization. BERT expects the inputs
to be pre-processed and structured according to speci c requirements. For each
input phrase it is required to divide the words into sequences of tokens and to add
the token [CLS] at the beginning of the sequence and the token [SEP] at the end.
BERT uses the WordPiece tokenizer [
          <xref ref-type="bibr" rid="ref50">50</xref>
          ], whose vocabulary is initialized with
all individual characters and augmented with the most frequent and probable
word combinations. AlBERTo implements both the model and the tokenization
and pre-processing. USE is a model based on the Transformer architecture that
transforms the sentences into 512-dimensional embeddings.
3.4
        </p>
      </sec>
      <sec id="sec-3-4">
        <title>Dimensionality reduction</title>
        <p>
          The second step of the proposed methodology is represented by the application
of a set of dimensionality reduction models to each of the embedding produced
at the previous step. At this step three di erent dimensionality reduction
techniques are implemented PCA, Kernel PCA and UMAP. With respect to
hyperparameters selection, these model can be of two di erent types: subject to hyper
parameter tuning (auto-tunable), i.e. there is a methodology to automatically
select the optimal hyperparameters, or not subject to hyperparameters tuning
(non-auto-tunable), i.e. there is not a methodology to automatically select the
optimal hyperparameters. The same considerations hold for the clustering
algorithms. Following the execution of the dimensionality reduction model, the
standardization of the features is performed to project the data into a uniform
and independent space from the pipeline for the next step of clustering.
PCA The rst dimensionality reduction model used by the proposed system
uses the implementation of the Incremental PCA [
          <xref ref-type="bibr" rid="ref58">58</xref>
          ] which, di erently from
PCA, does not process all the dataset in a single run, but computes the PC
incrementally, thus limiting the use of the required memory without placing
constraints on the size of the dataset. This method is non-auto-tunable, thus to
determine the number of principal components to reduce the dimensionality, we
select all and only the main components that describe the 90% of the variance.
The data is processed in blocks of 5000.
        </p>
        <p>
          Kernel PCA As mentioned, Kernel PCA is an extension of the PCA
dimensionality reduction model based on the use of kernel methods. Kernel PCA is
auto-tunable, i.e. the best con guration among all those available can be
automatically searched. The methodology applied for the identi cation and
automatic selection of hyperparameters of the kernel PCA algorithm is a variant of
the one presented in [
          <xref ref-type="bibr" rid="ref59">59</xref>
          ]. Speci cally, after de ning K1; :::KK kernel PCA con
gurations to be explored during hyper-parameter tuning, the set of con gurations
is selected such that:
That is, de ned the original dataset X, for each con guration Ki; 1
the i-th con guration is applied such that:
i
Kkjk = arg
        </p>
        <p>max score(Ki)
ij1 i K
Ii = kernelP CA(Ki; X)
(2)
K
Once the image Ii of X is obtained through the kernel function de ned by
the con guration Ki, the eigenvalues and eigenvectors of Ii are computed. If the
number of eigenvalues Ni required to describe 90% of the variance of Ii is greater
than the number of components of the original feature space, a very low score
is assigned, otherwise, the new feature space IiNi obtained by applying Kernel
PCA with the con guration KNi = (Ki; Ni) is calculated. The selection of the
i
best set of hyperparameters is done by evaluating the reconstruction error. An
inverse image Zi of the variable IiNi is de ned such that:</p>
        <p>Zi = H 1(IiNi )
Ei = d(X; Zi)</p>
        <p>X</p>
        <p>X
1 n jXj 1 m Ni
where H 1 is the function that determines the inverse image. The reconstruction
error is calculated as:
where d(X; Zi) is the Manhattan distance. Following the calculation of the
reconstruction error, the score associated with the con guration is calculated as
follows:</p>
        <p>Kijscorei =</p>
        <p>Ei(n; m)
(6)</p>
        <p>An application problem that arises with Kernel PCA in cases where the size
of the input is high is how to mediate the management of parallelization of
executions with the management of available memory. To meet this need we
compute an heuristics based on the available memory, the number of available
processors and the size of the input.</p>
        <p>
          UMAP Finally, UMAP [
          <xref ref-type="bibr" rid="ref34">34</xref>
          ], is a dimensionality reduction model based on the
theoretical framework of Reimann geometry and topological algebra that builds
a high-dimensional graph where the weights of the links between two nodes
represent their probability of being connected. The connectivity of the graph
is determined by de ning a circle around each node and connecting those with
overlapping circles. UMAP guarantees the conservation of the local structure
through a mechanism that binds the connection of each point to the one closest
to it. Following the construction of the high-dimensional graph, UMAP optimizes
its structure to reduce the components and creates an analogous graph of reduced
dimensionality as similar as possible to the one originally created. This module
is non-auto-tunable, thus we set two con gurations chosen empirically: the rst
foresees to implement the model with the parameter n neighbors equal to 5 and
n components equal to 30, the second foresees to set n neighbors equal to 15 and
n components equal to 50.
3.5
        </p>
      </sec>
      <sec id="sec-3-5">
        <title>Clustering</title>
        <p>The third step of the methodology is that of the computation of a set of clustering
algorithms for each dataset produced by the dimensionality reduction step. Given
the large number of models available for clustering, for each clustering method,
(4)
(5)
it is necessary to have a methodology for automatic selection of the optimal
con guration of the hyperparameters. For this reason, we decided to implement
only auto-tunable clustering algorithms.</p>
        <p>
          K-means K-Means [
          <xref ref-type="bibr" rid="ref39">39</xref>
          ] bases its clustering strategy on the updating of cluster
centroids through an iterative process carried out until convergence. The process
of convergence of the algorithm performs initialization (1), assignment of clusters
(2) and updating of centroids (3). While the initialization, which involves the
random assignment of the centroids, is performed only once, the step of assigning
the data to the nearest centroid and that of recomputing the position of the
centroids are carried out until the di erence between the last centroids obtained
and those calculated at the previous iteration is negligible, i.e. when convergence
is reached. K-Means, requires the de nition of the number of clusters in advance,
thus we implement an optimization process to determine the best number of
clusters. The process involves performing di erent clustering each with a di erent
and progressive number of clusters. For each clustering the distances of the points
from the centroid of the cluster to which they have been assigned are calculated.
Finally, the Within Cluster Sum of Squares (WCSS) value of each con guration
is calculated as the sum for all clusters of the sum of the square Manhattan
distance from each point to the centroid of the cluster it is assigned. Given the
set of WCSSs for each clustering produced (with di erent number of clusters) the
elbow point is sought through the implementation of the kneedle algorithm [
          <xref ref-type="bibr" rid="ref60">60</xref>
          ],
then the best con guration is identi ed and, consequently, the optimal number
of clusters.
        </p>
        <p>
          OPTICS OPTICS [
          <xref ref-type="bibr" rid="ref45">45</xref>
          ] is based on the following strategy: a point belongs to a
cluster if it is close to other points belonging to that cluster. The key parameter
of OPTICS is minPts which identi es the minimum number of points required to
de ne a cluster. Thanks to minPts, OPTICS de nes three types of points: core
points, border points and outliers. The core points are those points that are close
to at least minPts points, the border points are those reachable from a core point
but which have no minPts points. The outliers, on the other hand, are the points
that are neither core points nor border points. To de ne minPts we develop an
automatic mechanism that involves the execution of di erent con gurations that
explore the clustering determined with di erent minPts and then the assignment
of a score determined through the analysis of a general evaluator as described
in Paragraph 3.6.
        </p>
        <p>
          Spectral Clustering Spectral Clustering [
          <xref ref-type="bibr" rid="ref39">39</xref>
          ] is a graph based model that
determines how to cluster data by analyzing the spectrum of the similarity matrix.
Given an enumerated set of data points, the similarity matrix may be de ned
as a symmetric matrix A, where Ai;j &gt; 0 represents a measure of the similarity
between data points with indices i and j. The general approach to spectral
clustering is to use K-means on the relevant eigenvectors of the Laplacian matrix
of A. The eigenvectors that are relevant are the ones that correspond to the
smallest eigenvalues of the Laplacian except for the smallest eigenvalue which
will have a value of 0. One of the open themes of Spectral Clustering is managing
data at multiple scales. For this reason we introduce a local scaling mechanism,
originally presented in [
          <xref ref-type="bibr" rid="ref61">61</xref>
          ], to improve data representation. The introduction of
local scaling involves calculating the a nity of two points using the Manhattan
distance and the local scale obtained by applying k-nearest neighbor [
          <xref ref-type="bibr" rid="ref62">62</xref>
          ] with
k = 7 as described in [
          <xref ref-type="bibr" rid="ref61">61</xref>
          ]. Each clustering produced is then associated with a
score assigned by a general evaluator as described in Paragraph 3.6: at the end
of the iterations the clustering with the best score is chosen.
3.6
        </p>
      </sec>
      <sec id="sec-3-6">
        <title>Clustering evaluation and selection</title>
        <p>
          The unsupervised clustering system presented in this research aims at
determining the best N clustering among those produced by the I pipelines. In order to
achieve this goal we designed a general evaluator, who determines the goodness
of each clustering with respect to the characteristics of cohesion and
separation. Moreover, we designed a relative cohesion evaluator, which determines the
cohesion of clusters with respect to a clustering set and a relative separation
evaluator, which determines the separation between clusters against a clustering
set. The procedure for selecting the best clustering involves to select, among all
clusterings produced by the pipelines, just the rst 10 with the best score
assigned by the general evaluator. The relative cohesion evaluator and the relative
separation evaluator are also computed to give the user the possibility of
furtherly exploring the results and selecting the best clustering according to their
needs. As general evaluator we use the Silhouette [
          <xref ref-type="bibr" rid="ref63">63</xref>
          ] de ned as:
jCtj Ci2Ct
1 X d(x; ci)
        </p>
        <p>2
sil(xi) =
b(xi)</p>
        <p>
          a(xi)
maxfa(xi); b(xi)g
where a(xi) is the average distance of xi from the other points belonging to
the same cluster and b(xi) represents the distance between xi and the nearest
cluster, calculated as the average distance of xi from all points belonging to the
closest cluster. The range of values returned by the silhouette metric is [
          <xref ref-type="bibr" rid="ref1">-1,1</xref>
          ],
where good clustering for the point is achieved when sil(xi) ! 1 . The silhouette
score of all clustering is obtained by averaging the silhouette scores of the points
in the dataset.
        </p>
        <p>The relative cohesion evaluator determines the cohesion of the clusters
produced by a model and normalizes this value with respect to the cohesion values
of a clustering set. Given a set of clustering R1; :::; Rk, de ned Ck the clusters
created by the k-th clustering and X the dataset shared by all clusterings, the
cohesion associated with clustering t is de ned as:
(7)
(8)
where mi is the number of points belonging to the i-th cluster, ci is the centroid
of the i-th cluster and d(x; y) is the Manhattan distance. The relative cohesion
is calculated using the following equation:</p>
        <p>Similarly, the relative separation evaluator determines the separation between
clusters and normalizes that value against the separation values of a clustering
set. Thus, given ci the centroid of cluster Ci, the separation associated with
clustering is
from which to compute rel(Rt) in the same way as for relative cohesion.
4</p>
      </sec>
    </sec>
    <sec id="sec-4">
      <title>Experimental results</title>
      <p>As explained, the goal of this research is to create a framework for the automatic
creation and evaluation of text clustering. The goal is not that of producing
a unique clustering, but a set of clusterings with some descriptive evaluation
metrics that the nal user can exploit to explore the corpus of text and derive a
set of intents for the re-training of a chatbot system or even for the rst training.
Indeed, the corpus of text comes from the chatbot's fallback, i.e. a set of questions
to which the chatbot was not able to nd an answer. Thus, in order to let the
framework be usable, we design a web page that allows the user to upload the
corpus of text, run the clustering methodology and visualize just the rst 10
clusterings with best evaluation metrics. In order to visualize the results three
main plots are shown in the web page: a bar plot that show for each clustering
the number of clusters, the general evaluation score and the mean cardinality of
clusters (Figure 1 top-left); a bar plot that for a speci c clustering that can be
selected show the cardinality of each cluster (Figure 1 bottom-left); a word cloud
plot that for a speci c cluster selected from the previous bar plot shows the main
words of that cluster and the main sentences (Figure 1 top/bottom-right).</p>
      <p>After running the framework with the input dataset we have analyzed the
10 clustering produced. It is clear that the evaluation of the entire
methodology cannot be done in a quantitative way as for supervised machine learning
algorithms. Indeed, even if the dataset used for the experiment has a ground
truth (each sentence has been manually associated with an intent) we cannot
state that the only acceptable results produced by the clustering algorithms is
that de ned by the ground truth, since the goal of unsupervised algorithms is
indeed that of nding hidden structure in the original dataset. Thus, we
manually explore each clustering produced to see if the results are coherent and
it emerged that apart from some clustering with a very small number of large
clusters, the other clustering produced actually manage to divide the dataset in
group of text with the same meaning or related to the same topic. Indeed, of the
10 kept clustering, 5 are meaningful and contains speci c concept related to the
use and maintenance of the machine. These 5 clusterings have approximately 30
to 100 clusters. Of these clusterings, three have less than 50 clusters, while two
have respectively 78 and 103 clusters. These two clustering are even more ne,
since they are able to distinguish even sentences with similar word but di erent
meaning. As far as the other clustering with less than 30 clusters is concerned,
instead, they contain some very large clusters which are noisy and some small
clusters which are meaningful. Therefore, these clustering seem to be less useful
than the others. Even though the evaluations are empirical, we can state that
the methodology is able to produce meaningful clusterings and the framework
created allows to exploit such clusterings to detect topics and derive intents.</p>
      <p>
        To conclude, we also make some experiment to de ne the required hardware
needed to run the methodology. In particular, we run the methodology over a
Google Cloud Compute Engine [
        <xref ref-type="bibr" rid="ref64">64</xref>
        ] with 8 vCPUs and 32 GB of RAM. We test
the performance of the framework in terms of execution time, CPU and RAM
utilization with two di erent dataset, one with 5000 sentences and one with
20000 sentences. In Table 2 the results are shown. It can be seen that in the rst
case, the duration of the pipeline and the use of resources is limited and almost
never reach 100%. In the second case, the use of resources extremely increases and
reaches 100% of CPU utilization in 2 cases: Kernel PCA and Spectral Clustering.
Moreover, for these two algorithms, the time extremely increases. As far as the
created framework is concerned, in order to limit the use of resources, we set
a limit to the input dataset to 20000 rows, to avoid exhausting resources. This
limit is actually enough for the partner company and for the speci c use case.
      </p>
    </sec>
    <sec id="sec-5">
      <title>Conclusion and future works</title>
      <p>This study presents a methodology based on machine learning for the realization
of an unsupervised clustering system. The identi ed methodology consists of an
embedding step, composed of the non-auto-tunable models BERT, AlBERTo
and USE, a dimensionality reduction step, that consists of the non-auto-tunable
PCA and UMAP models and the auto-tunable Kernel PCA model, the clustering
step, composed of the auto-tunable K-Means, OPTICS and Spectral Clustering
models and a nal evaluation step, where the metric used to select the best
clusterings provides a score with respect to both cohesion and separation of clusters
(further evaluations are obtained through metrics that focus only on cohesion
and separation of clusters). Ultimately, the developed methodology shows good
performance with respect to the clustering goal, even though performance
considerations are empirical. In conclusion, the methodology is e ective in dividing
datasets into clusters, provides more than one clustering and accompanies the
results with the metadata of the evaluators used. In general, it appears to be a
performing system to be used in an industrial context. Its main potential and
innovativeness lies in the automatic system for selecting the hyperparameters
and the best clustering: through these mechanisms, the sequences of models and
hyperparameters that are most adherent and suitable for the dataset are
chosen. Thanks to this mechanism it is, indeed, possible to automatically obtain
the clustering of data never explored and extract useful information for business
logic. Even though the framework created works ne, some enhancement can
be performed. In particular, from the clustering logic perspective, the pipeline
can be enriched with other algorithms for the three di erent steps. However,
the main enhancement to extend the framework are related to the creation of
an auto scaling infrastructure that is able to keep the training time low by
increasing the resources, so that the framework is no limited in the dimension of
the input and does not require the user to wait for long for the creation of the
clustering.</p>
    </sec>
  </body>
  <back>
    <ref-list>
      <ref id="ref1">
        <mixed-citation>
          1.
          <string-name>
            <surname>Hindle</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Barr</surname>
            ,
            <given-names>E.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Gabel</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Su</surname>
            ,
            <given-names>Z.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Devanbu</surname>
            ,
            <given-names>P.</given-names>
          </string-name>
          :
          <article-title>On the naturalness of software</article-title>
          .
          <source>Communications of the ACM</source>
          <volume>59</volume>
          ,
          <issue>122</issue>
          {
          <fpage>131</fpage>
          (
          <year>2016</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref2">
        <mixed-citation>
          2.
          <string-name>
            <surname>Otter</surname>
            ,
            <given-names>D. W.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Medina</surname>
            ,
            <given-names>J. R.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Kalita</surname>
            ,
            <given-names>J. K.</given-names>
          </string-name>
          :
          <article-title>A Survey of the Usages of Deep Learning for Natural Language Processing</article-title>
          .
          <source>IEEE Transactions on Neural Networks and Learning Systems</source>
          <volume>32</volume>
          (
          <issue>2</issue>
          ),
          <volume>604</volume>
          {
          <fpage>624</fpage>
          (
          <year>2021</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref3">
        <mixed-citation>
          3.
          <string-name>
            <surname>Cai</surname>
            ,
            <given-names>T.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Giannopoulos</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Yu</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Kelil</surname>
            ,
            <given-names>T.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Ripley</surname>
            ,
            <given-names>B.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Kumamaru</surname>
            ,
            <given-names>K.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Rybicki</surname>
            ,
            <given-names>F.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Mitsouras</surname>
            ,
            <given-names>D.</given-names>
          </string-name>
          :
          <source>Natural Language Processing Technologies in Radiology Research and Clinical Applications. Radiographics: a review publication of the Radiological Society of North America</source>
          <volume>36</volume>
          ,
          <issue>176</issue>
          {
          <fpage>191</fpage>
          (
          <year>2016</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref4">
        <mixed-citation>
          4.
          <string-name>
            <surname>Pouyanfar</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Sadiq</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Yan</surname>
            ,
            <given-names>Y.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Tian</surname>
            ,
            <given-names>H.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Tao</surname>
            ,
            <given-names>Y.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Presa</surname>
            ,
            <given-names>R. M.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Shyu</surname>
            ,
            <given-names>M.-L.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Chen</surname>
          </string-name>
          , S.-C.,
          <string-name>
            <surname>Iyengar</surname>
            ,
            <given-names>S.:</given-names>
          </string-name>
          <article-title>A Survey on Deep Learning: Algorithms, Techniques, and Applications</article-title>
          .
          <source>ACM Computing Surveys</source>
          <volume>51</volume>
          ,
          <issue>1</issue>
          {
          <fpage>36</fpage>
          (
          <year>2018</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref5">
        <mixed-citation>
          5.
          <string-name>
            <surname>Zhang</surname>
            ,
            <given-names>X.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Zhao</surname>
            ,
            <given-names>J.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Lecun</surname>
            ,
            <given-names>Y.</given-names>
          </string-name>
          :
          <article-title>Character-level Convolutional Networks for Text Classi cation</article-title>
          .
          <source>In: Proceedings of the 28th International Conference on Neural Information Processing Systems</source>
          , pp.
          <volume>649</volume>
          {
          <fpage>657</fpage>
          . MIT Press, Cambridge, MA, USA (
          <year>2015</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref6">
        <mixed-citation>
          6.
          <string-name>
            <surname>Plank</surname>
          </string-name>
          , B.,S gaard, A.,
          <string-name>
            <surname>Goldberg</surname>
            ,
            <given-names>Y.</given-names>
          </string-name>
          :
          <article-title>Multilingual Part-of-Speech Tagging with Bidirectional Long Short-Term Memory Models and Auxiliary Loss</article-title>
          .
          <source>in: Proceedings of the 54th Annual Meeting of the Association for Computational Linguistics</source>
          , pp.
          <volume>412</volume>
          {
          <fpage>418</fpage>
          . Association for Computational Linguistics, Berlin, Germany (
          <year>2016</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref7">
        <mixed-citation>
          7.
          <string-name>
            <surname>Lample</surname>
            ,
            <given-names>G.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Ballesteros</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Subramanian</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Kawakami</surname>
            ,
            <given-names>K.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Dyer</surname>
            ,
            <given-names>C.</given-names>
          </string-name>
          :
          <article-title>Neural Architectures for Named Entity Recognition</article-title>
          .
          <source>In: Proceedings of the 2016 Conference of the North American Chapter of the Association for Computational Linguistics: Human Language Technologies</source>
          , pp.
          <volume>260</volume>
          {
          <fpage>270</fpage>
          . Association for Computational Linguistics, San Diego, California (
          <year>2016</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref8">
        <mixed-citation>
          8.
          <string-name>
            <surname>Ait-Mlouk</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Jiang</surname>
          </string-name>
          , L.:
          <article-title>KBot: A Knowledge Graph Based ChatBot for Natural Language Understanding Over Linked Data</article-title>
          .
          <source>IEEE Access</source>
          (
          <year>2020</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref9">
        <mixed-citation>
          9.
          <string-name>
            <surname>Xu</surname>
            ,
            <given-names>D.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Tian</surname>
            ,
            <given-names>Y.</given-names>
          </string-name>
          :
          <article-title>A Comprehensive Survey of Clustering Algorithms</article-title>
          .
          <source>Annals of Data Science</source>
          <volume>2</volume>
          ,
          <issue>165</issue>
          {
          <fpage>193</fpage>
          (
          <year>2015</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref10">
        <mixed-citation>
          10.
          <string-name>
            <surname>Abualigah</surname>
            ,
            <given-names>L.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Khader</surname>
            ,
            <given-names>A. T.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Al-Betar</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Hanandeh</surname>
            ,
            <given-names>E.:. Unsupervised</given-names>
          </string-name>
          <string-name>
            <surname>Text</surname>
          </string-name>
          <article-title>Feature Selection Technique Based on Particle Swarm Optimization Algorithm for Improving the Text Clustering</article-title>
          . In: Proccedings of First EAI International Conference on Computer Science and Engineering, EAI (
          <year>2017</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref11">
        <mixed-citation>
          11.
          <string-name>
            <surname>Felipe</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Geraldo</surname>
            ,
            <given-names>X.</given-names>
          </string-name>
          :
          <article-title>Word Embeddings: A Survey. arXiv preprint</article-title>
          , arXiv:
          <year>1901</year>
          .
          <volume>09069</volume>
          (
          <year>2019</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref12">
        <mixed-citation>
          12.
          <string-name>
            <surname>Qaiser</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Ali</surname>
          </string-name>
          , R.: Text Mining:
          <article-title>Use of TF-IDF to Examine the Relevance of Words to Documents</article-title>
          .
          <source>International Journal of Computer Applications</source>
          <volume>181</volume>
          (
          <issue>1</issue>
          ) (
          <year>2018</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref13">
        <mixed-citation>
          13.
          <string-name>
            <surname>Arora</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Li</surname>
            ,
            <given-names>Y.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Liang</surname>
            ,
            <given-names>Y.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Ma</surname>
            ,
            <given-names>T.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Risteski</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          :
          <article-title>A Latent Variable Model Approach to PMI-based Word Embeddings</article-title>
          .
          <source>Transactions of the Association for Computational Linguistics</source>
          <volume>4</volume>
          <fpage>385</fpage>
          -
          <lpage>399</lpage>
          (
          <year>2016</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref14">
        <mixed-citation>
          14.
          <string-name>
            <surname>Pennington</surname>
            ,
            <given-names>J.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Socher</surname>
            ,
            <given-names>R.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Manning</surname>
            ,
            <given-names>C.</given-names>
          </string-name>
          : Glove:
          <article-title>Global Vectors for Word Representation</article-title>
          . EMNLP 14
          <fpage>1532</fpage>
          -
          <lpage>1543</lpage>
          (
          <year>2014</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref15">
        <mixed-citation>
          15.
          <string-name>
            <surname>Goodfellow</surname>
            ,
            <given-names>I.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Bengio</surname>
            ,
            <given-names>Y.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Courville</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          : Deeplearning.
          <source>MITpress</source>
          (
          <year>2016</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref16">
        <mixed-citation>
          16.
          <string-name>
            <surname>Google</surname>
          </string-name>
          <article-title>Code Archive - Long-term storage for Google Code Project Hosting</article-title>
          . https://code.google.com/archive/p/word2vec/.
          <source>Last accessed 14 Sept</source>
          <year>2021</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref17">
        <mixed-citation>
          17.
          <fpage>Word2vec</fpage>
          - Wikipedia. https://it.wikipedia.org/wiki/Word2vec. Last accessed
          <issue>14</issue>
          <year>Sept 2021</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref18">
        <mixed-citation>
          18. FastText - Facebook Research. https://research.fb.com/blog/2016/08/fasttext/.
          <source>Last accessed 14 Sept</source>
          <year>2021</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref19">
        <mixed-citation>
          19.
          <string-name>
            <surname>Bojanowski</surname>
            ,
            <given-names>P.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Grave</surname>
            ,
            <given-names>E.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Joulin</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Mikolov</surname>
            ,
            <given-names>T.</given-names>
          </string-name>
          :
          <article-title>Enriching Word Vectors with Subword Information</article-title>
          .
          <source>Transactions of the Association for Computational Linguistics</source>
          <volume>5</volume>
          ,
          <issue>135</issue>
          {
          <fpage>146</fpage>
          (
          <year>2016</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref20">
        <mixed-citation>
          20.
          <string-name>
            <surname>Joulin</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Grave</surname>
            ,
            <given-names>E.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Bojanowski</surname>
            ,
            <given-names>P.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Mikolov</surname>
            ,
            <given-names>T.</given-names>
          </string-name>
          :
          <article-title>Bag of Tricks for E cient Text Classi cation</article-title>
          .
          <source>In: Proceedings of the 15th Conference of the European Chapter of the Association for Computational Linguistics</source>
          , pp.
          <volume>427</volume>
          {
          <fpage>431</fpage>
          . Association for Computational Linguistics, Valencia, Spain (
          <year>2017</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref21">
        <mixed-citation>
          21.
          <string-name>
            <surname>Peters</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Neumann</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Iyyer</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Gardner</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Clark</surname>
            ,
            <given-names>C.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Lee</surname>
            ,
            <given-names>K.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Zettlemoyer</surname>
            ,
            <given-names>L.</given-names>
          </string-name>
          :
          <article-title>Deep contextualized word representations</article-title>
          .
          <source>In: Proceedings of the 2018 Conference of the North American Chapter of the Association for Computational Linguistics: Human Language Technologies</source>
          , pp.
          <volume>2227</volume>
          {
          <fpage>2237</fpage>
          . Association for Computational Linguistics, New Orleans,
          <string-name>
            <surname>Louisiana</surname>
          </string-name>
          (
          <year>2018</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref22">
        <mixed-citation>
          22.
          <string-name>
            <surname>Qiu</surname>
            ,
            <given-names>X.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Sun</surname>
            ,
            <given-names>T.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Xu</surname>
            ,
            <given-names>Y.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Shao</surname>
            ,
            <given-names>Y.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Dai</surname>
            ,
            <given-names>N.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Huang</surname>
            ,
            <given-names>X.</given-names>
          </string-name>
          :
          <article-title>Pre-trained Models for Natural Language Processing: A Survey</article-title>
          .
          <source>Science China Technological Sciences 63</source>
          ,
          <year>1872</year>
          {
          <year>1897</year>
          (
          <year>2020</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref23">
        <mixed-citation>
          23.
          <string-name>
            <surname>Devlin</surname>
            ,
            <given-names>J.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Chang</surname>
          </string-name>
          , M.-W.,
          <string-name>
            <surname>Lee</surname>
            ,
            <given-names>K.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Toutanova</surname>
            ,
            <given-names>K.</given-names>
          </string-name>
          : BERT:
          <article-title>Pre-training of Deep Bidirectional Transformers for Language Understanding</article-title>
          .
          <source>In: Proceedings of the 2019 Conference of the North American Chapter of the Association for Computational Linguistics: Human Language Technologies</source>
          , pp.
          <volume>4171</volume>
          {
          <fpage>4186</fpage>
          . Association for Computational Linguistics, Minneapolis, Minnesota (
          <year>2018</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref24">
        <mixed-citation>
          24.
          <string-name>
            <surname>Vaswani</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Shazeer</surname>
            ,
            <given-names>N.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Parmar</surname>
            ,
            <given-names>N.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Uszkoreit</surname>
            ,
            <given-names>J.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Jones</surname>
            ,
            <given-names>L.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Gomez</surname>
            ,
            <given-names>A. N.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Kaiser</surname>
            ,
            <given-names>L.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Polosukhin</surname>
            ,
            <given-names>I.</given-names>
          </string-name>
          :
          <article-title>Attention is All You Need</article-title>
          .
          <source>ArXiv preprint</source>
          ,
          <source>arXiv:1706.03762</source>
          (
          <year>2017</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref25">
        <mixed-citation>
          25.
          <string-name>
            <surname>Hu</surname>
            ,
            <given-names>D.</given-names>
          </string-name>
          :
          <article-title>An Introductory Survey on Attention Mechanisms in NLP Problems</article-title>
          . In: Bi Y.,
          <string-name>
            <surname>Bhatia</surname>
            <given-names>R.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Kapoor</surname>
            <given-names>S</given-names>
          </string-name>
          . (eds)
          <article-title>Intelligent Systems and Applications</article-title>
          .
          <source>IntelliSys 2019. Advances in Intelligent Systems and Computing</source>
          , vol
          <volume>1038</volume>
          . Springer, Cham. https://doi.org/10.1007/978-3-
          <fpage>030</fpage>
          -29513-4
        </mixed-citation>
      </ref>
      <ref id="ref26">
        <mixed-citation>
          26.
          <string-name>
            <surname>Polignano</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Basile</surname>
            , P., de Gemmis,
            <given-names>M.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Semeraro</surname>
            ,
            <given-names>G.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Basile</surname>
          </string-name>
          , V.:
          <article-title>ALBERTO: Italian BERT Language Understanding Model for NLP Challenging Tasks Based on Tweets</article-title>
          .
          <source>In: Proceedings of the Sixth Italian Conference on Computational Linguistics</source>
          (CLiC-it
          <year>2019</year>
          ), volume
          <volume>2481</volume>
          .
          <string-name>
            <surname>CEUR</surname>
          </string-name>
          (
          <year>2019</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref27">
        <mixed-citation>
          27.
          <string-name>
            <surname>Cunningham</surname>
            ,
            <given-names>J.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Ghahramani</surname>
            ,
            <given-names>Z.</given-names>
          </string-name>
          :
          <article-title>Linear Dimensionality Reduction: Survey, Insights, and Generalizations</article-title>
          .
          <source>Journal of Machine Learning Research</source>
          <volume>16</volume>
          ,
          <volume>2859</volume>
          {
          <fpage>2900</fpage>
          (
          <year>2015</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref28">
        <mixed-citation>
          28.
          <string-name>
            <surname>Xie</surname>
            ,
            <given-names>H.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Li</surname>
            ,
            <given-names>J.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Xue</surname>
          </string-name>
          , H.:
          <article-title>A survey of dimensionality reduction techniques based on random projection</article-title>
          .
          <source>ArXiv prerprint</source>
          ,
          <source>arXiv:1706.04371</source>
          (
          <year>2017</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref29">
        <mixed-citation>
          29.
          <string-name>
            <surname>Gadekallu</surname>
            ,
            <given-names>T.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Reddy</surname>
            ,
            <given-names>P.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Lakshman</surname>
            ,
            <given-names>K.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Kaluri</surname>
            ,
            <given-names>R.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Rajput</surname>
            ,
            <given-names>D.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Srivastava</surname>
            ,
            <given-names>G.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Baker</surname>
            ,
            <given-names>T.</given-names>
          </string-name>
          :
          <article-title>Analysis of Dimensionality Reduction Techniques on Big Data</article-title>
          .
          <source>IEEE Access 8</source>
          ,
          <issue>54776</issue>
          {
          <fpage>54788</fpage>
          <lpage>2020</lpage>
        </mixed-citation>
      </ref>
      <ref id="ref30">
        <mixed-citation>
          30. Jolli e, I.,
          <string-name>
            <surname>Cadima</surname>
          </string-name>
          , J.:
          <article-title>Principal component analysis: A review and recent developments</article-title>
          .
          <source>Philosophical Transactions of the Royal Society A: Mathematical, Physical and Engineering Sciences</source>
          <volume>374</volume>
          (
          <year>2016</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref31">
        <mixed-citation>
          31.
          <string-name>
            <surname>Kim</surname>
            ,
            <given-names>C.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Klabjan</surname>
            ,
            <given-names>D.</given-names>
          </string-name>
          :
          <article-title>A Simple and Fast Algorithm for L1-norm Kernel PCA</article-title>
          .
          <source>IEEE Transactions on Pattern Analysis and Machine Intelligence</source>
          <volume>42</volume>
          (
          <issue>8</issue>
          ),
          <fpage>1842</fpage>
          -
          <lpage>1855</lpage>
          (
          <year>2019</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref32">
        <mixed-citation>
          32.
          <string-name>
            <surname>Van der Maaten</surname>
          </string-name>
          , L.,
          <string-name>
            <surname>Postma</surname>
            ,
            <given-names>E.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Herik</surname>
          </string-name>
          , H.:
          <article-title>Dimensionality Reduction: A Comparative Review</article-title>
          .
          <source>Journal of Machine Learning Research</source>
          <volume>10</volume>
          (
          <year>2009</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref33">
        <mixed-citation>
          33.
          <string-name>
            <surname>Yang</surname>
            ,
            <given-names>B.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Xiang</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Zhang</surname>
          </string-name>
          , Y.:
          <article-title>Multi-manifold Discriminant Isomap for visualization and classi cation</article-title>
          .
          <source>Pattern Recognition</source>
          <volume>55</volume>
          (
          <year>2016</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref34">
        <mixed-citation>
          34.
          <string-name>
            <surname>McInnes</surname>
            ,
            <given-names>L.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Healy</surname>
            ,
            <given-names>J.: UMAP</given-names>
          </string-name>
          :
          <article-title>Uniform Manifold Approximation and Projection for Dimension Reduction</article-title>
          .
          <source>ArXiv preprint</source>
          , arXiv:
          <year>1802</year>
          .
          <volume>03426</volume>
          (
          <year>2018</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref35">
        <mixed-citation>
          35.
          <string-name>
            <surname>Tschannen</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Bachem</surname>
            ,
            <given-names>O.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Lucic</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          :
          <article-title>Recent Advances in Autoencoder-Based Representation Learning</article-title>
          .
          <source>ArXiv preprint</source>
          , arXiv:
          <year>1812</year>
          .
          <volume>05069</volume>
          (
          <year>2018</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref36">
        <mixed-citation>
          36.
          <string-name>
            <surname>Xu</surname>
            ,
            <given-names>D.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Tian</surname>
            ,
            <given-names>Y.</given-names>
          </string-name>
          :
          <article-title>A Comprehensive Survey of Clustering Algorithms</article-title>
          .
          <source>Annals of Data Science</source>
          <volume>2</volume>
          (
          <year>2015</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref37">
        <mixed-citation>
          37.
          <string-name>
            <surname>Wong</surname>
          </string-name>
          , K.-C.
          <article-title>: A Short Survey on Data Clustering Algorithms</article-title>
          .
          <source>2015 Second International Conference on Soft Computing and Machine Intelligence (ISCMI)</source>
          , pp.
          <fpage>64</fpage>
          -
          <lpage>68</lpage>
          . IEEE (
          <year>2015</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref38">
        <mixed-citation>
          38.
          <string-name>
            <surname>Singh</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Srivastava</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          :
          <article-title>Review of Clustering Techniques in Control System</article-title>
          .
          <source>Procedia Computer Science</source>
          <volume>173</volume>
          ,
          <issue>272</issue>
          {
          <fpage>280</fpage>
          (
          <year>2020</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref39">
        <mixed-citation>
          39.
          <string-name>
            <surname>Jason</surname>
            <given-names>X.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>K. L.</surname>
          </string-name>
          :
          <article-title>Power k-Means Clustering</article-title>
          . ICML,
          <year>2019</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref40">
        <mixed-citation>
          40.
          <string-name>
            <surname>Lorbeer</surname>
            ,
            <given-names>B.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Kosareva</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Deva</surname>
            ,
            <given-names>B.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Softic</surname>
            ,
            <given-names>D.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Ruppel</surname>
            ,
            <given-names>P.</given-names>
          </string-name>
          , Kupper, A.:
          <article-title>Variations on the Clustering Algorithm BIRCH</article-title>
          .
          <source>Big Data Research</source>
          <volume>11</volume>
          (
          <year>2017</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref41">
        <mixed-citation>
          41.
          <string-name>
            <surname>Gosain</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Dahiya</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          :
          <article-title>Performance Analysis of Various Fuzzy Clustering Algorithms: A Review</article-title>
          .
          <source>Procedia Computer Science</source>
          <volume>79</volume>
          ,
          <fpage>100</fpage>
          -
          <lpage>111</lpage>
          . (
          <year>2016</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref42">
        <mixed-citation>
          42.
          <string-name>
            <surname>Yongli</surname>
            ,
            <given-names>L.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Hengda</surname>
            <given-names>W.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Tianyi</surname>
            <given-names>D.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Jingli</surname>
            <given-names>C.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Hao</surname>
            ,
            <given-names>C.</given-names>
          </string-name>
          :
          <article-title>Incremental fuzzy clustering based on a fuzzy scatter matrix</article-title>
          .
          <source>J. Inf. Process. Syst</source>
          .
          <volume>15</volume>
          ,
          <fpage>359</fpage>
          -
          <lpage>373</lpage>
          (
          <year>2019</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref43">
        <mixed-citation>
          43.
          <string-name>
            <surname>Viroli</surname>
            ,
            <given-names>C.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Mclachlan</surname>
            ,
            <given-names>G.</given-names>
          </string-name>
          :
          <source>Deep Gaussian Mixture Models. Statistics and Computing</source>
          <volume>29</volume>
          (
          <year>2019</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref44">
        <mixed-citation>
          44.
          <string-name>
            <surname>Chen</surname>
            ,
            <given-names>Y.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Tang</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Bouguila</surname>
            ,
            <given-names>N.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Wang</surname>
            ,
            <given-names>C.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Du</surname>
            ,
            <given-names>J.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Li</surname>
            ,
            <given-names>H.</given-names>
          </string-name>
          :
          <article-title>A Fast Clustering Algorithm based on pruning unnecessary distance computations in DBSCAN for High-Dimensional Data</article-title>
          .
          <source>Pattern Recognition</source>
          <volume>83</volume>
          (
          <year>2018</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref45">
        <mixed-citation>
          45.
          <string-name>
            <surname>Schubert</surname>
            ,
            <given-names>E.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Gertz</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          :
          <article-title>Improving the Cluster Structure Extracted from OPTICS Plots</article-title>
          .
          <source>LWDA</source>
          (
          <year>2018</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref46">
        <mixed-citation>
          46.
          <string-name>
            <surname>Pulkit</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Abhishek</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Saket</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Sushil</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          :
          <article-title>Deep mean shift clustering</article-title>
          .
          <source>2015 Second International Conference on Soft Computing and Machine Intelligence (ISCMI)</source>
          , pp.
          <fpage>64</fpage>
          -
          <lpage>68</lpage>
          . IEEE (
          <year>2019</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref47">
        <mixed-citation>
          47.
          <string-name>
            <surname>Suman</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Rani</surname>
            ,
            <given-names>P.</given-names>
          </string-name>
          :
          <article-title>A Survey on STING and CLIQUE Grid Based Clustering Methods</article-title>
          .
          <source>International Journal of Advanced Research in Computer Science</source>
          <volume>8</volume>
          ,
          <fpage>1510</fpage>
          -
          <lpage>1512</lpage>
          (
          <year>2017</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref48">
        <mixed-citation>
          48.
          <string-name>
            <surname>Cer</surname>
            ,
            <given-names>D.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Yang</surname>
            ,
            <given-names>Y.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Kong</surname>
            , S.-Y. Hua,
            <given-names>N.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Limtiaco</surname>
            ,
            <given-names>N.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>John</surname>
          </string-name>
          , R.,
          <string-name>
            <surname>Constant</surname>
            ,
            <given-names>N.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Guajardo-Cespedes</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Yuan</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Tar</surname>
            ,
            <given-names>C.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Sung</surname>
            ,
            <given-names>Y.-H.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Strope</surname>
            ,
            <given-names>B.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Kurzweil</surname>
          </string-name>
          , R.: Universal Sentence Encoder.
          <source>ArXiv preprint</source>
          , arXiv:
          <year>1803</year>
          .
          <volume>11175</volume>
          (
          <year>2018</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref49">
        <mixed-citation>
          49.
          <string-name>
            <surname>Zhu</surname>
            ,
            <given-names>Y.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Kiros</surname>
            ,
            <given-names>R.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Zemel</surname>
            ,
            <given-names>R.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Salakhutdinov</surname>
            ,
            <given-names>R.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Urtasun</surname>
            ,
            <given-names>R.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Torralba</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Fidler</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          :
          <article-title>Aligning Books and Movies: Towards Story-Like Visual Explanations by Watching Movies</article-title>
          and Reading Books.
          <source>2015 IEEE International Conference on Computer Vision</source>
          (ICCV),
          <fpage>19</fpage>
          -
          <lpage>27</lpage>
          (
          <year>2015</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref50">
        <mixed-citation>
          50.
          <string-name>
            <surname>Sennrich</surname>
            ,
            <given-names>R.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Haddow</surname>
            ,
            <given-names>B.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Birch</surname>
            ,
            <given-names>A.:</given-names>
          </string-name>
          <article-title>Neural Machine Translation of Rare Words with Subword Units</article-title>
          .
          <source>ArXiv preprint</source>
          ,
          <source>arXiv:1508.07909</source>
          (
          <year>2016</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref51">
        <mixed-citation>
          51. Welcome to Python.org. https://www.python.org/.
          <source>Last accessed 14 Sept</source>
          <year>2021</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref52">
        <mixed-citation>
          52. TensorFlow. https://www.tensor ow.org/.
          <source>Last accessed 14 Sept</source>
          <year>2021</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref53">
        <mixed-citation>
          53. TensorFlow Hub. https://www.tensor ow.
          <source>org/hub. Last accessed 14 Sept</source>
          <year>2021</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref54">
        <mixed-citation>
          54. TensorFlow Hub. https://tfhub.dev/tensor ow/bert multi cased L-12 H-768
          <source>A12/3. Last accessed 14 Sept</source>
          <year>2021</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref55">
        <mixed-citation>
          55. TensorFlow Hub. https://tfhub.dev/tensor ow/
          <source>bert multi cased preprocess/1. Last accessed 14 Sept</source>
          <year>2021</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref56">
        <mixed-citation>
          56. GitHub - marcopoli/AlBERTo-it:
          <article-title>AlBERTo the rst italian BERT model forTwitter languange understanding</article-title>
          . https://github.com/marcopoli/AlBERTo-it.
          <source>Last accessed 14 Sept</source>
          <year>2021</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref57">
        <mixed-citation>
          57. TensorFlow Hub. https://tfhub.dev/google/universal-sentence
          <source>-encodermultilingual/3. Last accessed 14 Sept</source>
          <year>2021</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref58">
        <mixed-citation>
          58.
          <string-name>
            <surname>Ross</surname>
            ,
            <given-names>D.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Lim</surname>
            ,
            <given-names>J.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Lin</surname>
            ,
            <given-names>R.-S.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Yang</surname>
          </string-name>
          , M.-H.:
          <article-title>Incremental Learning for Robust Visual Tracking</article-title>
          .
          <source>International Journal of Computer Vision</source>
          <volume>77</volume>
          ,
          <fpage>125</fpage>
          -
          <lpage>141</lpage>
          (
          <year>2008</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref59">
        <mixed-citation>
          59.
          <string-name>
            <given-names>Md</given-names>
            <surname>Ashad</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            ,
            <surname>Kenji</surname>
          </string-name>
          ,
          <string-name>
            <surname>F.</surname>
          </string-name>
          :
          <article-title>Hyperparameter selection in kernel principal component analysis</article-title>
          .
          <source>Journal of Computer Science</source>
          <volume>10</volume>
          ,
          <fpage>1139</fpage>
          -
          <lpage>1150</lpage>
          (
          <year>2014</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref60">
        <mixed-citation>
          60.
          <string-name>
            <surname>Satopaa</surname>
            ,
            <given-names>V.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Albrecht</surname>
            ,
            <given-names>J.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Irwin</surname>
            ,
            <given-names>D.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Raghavan</surname>
            ,
            <given-names>B.</given-names>
          </string-name>
          :
          <article-title>Finding a Kneedle in a Haystack: Detecting Knee Points in System Behavior</article-title>
          .
          <source>2011 31st International Conference on Distributed Computing Systems Workshops</source>
          ,
          <volume>166</volume>
          {
          <fpage>171</fpage>
          (
          <year>2011</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref61">
        <mixed-citation>
          61.
          <string-name>
            <surname>Zelnik-Manor</surname>
            ,
            <given-names>L.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Perona</surname>
            ,
            <given-names>P.</given-names>
          </string-name>
          :
          <string-name>
            <surname>Self-Tuning Spectral Clustering</surname>
          </string-name>
          .
          <source>Adv. Neural Inf. Process. Syst</source>
          .
          <volume>17</volume>
          (
          <year>2004</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref62">
        <mixed-citation>
          62.
          <string-name>
            <surname>Garc</surname>
            a-Pedrajas,
            <given-names>N.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Romero</surname>
            ,
            <given-names>J.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Cerruela</surname>
          </string-name>
          , G.:
          <article-title>A Proposal for Local k Values for k-Nearest Neighbor Rule</article-title>
          .
          <source>IEEE Transactions on Neural Networks and Learning Systems</source>
          <volume>28</volume>
          ,
          <issue>1</issue>
          {
          <issue>6</issue>
          (
          <year>2015</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref63">
        <mixed-citation>
          63.
          <string-name>
            <surname>Wang</surname>
            ,
            <given-names>F.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Franco-Penya</surname>
          </string-name>
          , H.-H.,
          <string-name>
            <surname>Kelleher</surname>
            ,
            <given-names>J.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Pugh</surname>
            ,
            <given-names>J.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Ross</surname>
            ,
            <given-names>R.</given-names>
          </string-name>
          :
          <article-title>An Analysis of the Application of Simpli ed Silhouette to the Evaluation of k-means Clustering Validity</article-title>
          . MLDM (
          <year>2017</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref64">
        <mixed-citation>
          64.
          <string-name>
            <surname>Compute</surname>
          </string-name>
          <article-title>Engine documentation | Compute Engine Documentation</article-title>
          . https://cloud.google.com/compute/docs.
          <source>Last accessed 14 Sept</source>
          <year>2021</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref65">
        <mixed-citation>
          65.
          <string-name>
            <surname>Feine</surname>
            ,
            <given-names>J.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Morana</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Maedche</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          :
          <article-title>Designing a Chatbot Social Cue Con guration System</article-title>
          .
          <source>In: International Conference on Information Systems. Munich</source>
          (
          <year>2019</year>
          )
        </mixed-citation>
      </ref>
    </ref-list>
  </back>
</article>