<!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>Algorithms for an Integrated Disease Database Management</article-title>
      </title-group>
      <contrib-group>
        <contrib contrib-type="author">
          <string-name>Kamil Kowalczyk</string-name>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Grzegorz Koperwas</string-name>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <aff id="aff0">
          <label>0</label>
          <institution>Faculty of Applied Mathematics, Silesian University of Technology</institution>
          ,
          <addr-line>Kaszubska 23, 44100 Gliwice</addr-line>
          ,
          <country country="PL">Poland</country>
        </aff>
      </contrib-group>
      <fpage>66</fpage>
      <lpage>72</lpage>
      <abstract>
        <p>The project goal was to make a comparison between diferent types of algorithms to prove what will be the best in similar cases. Aditional we were looking at which one will be the best for frontend use. A simple classification of diseases according to symptoms. We use 2 files from the data set, first with diseases and symptoms and the other with the symptoms themselves and their weights. I use the first set fully. It contains 41 diferent diseases and 132 symptoms. In this setup, we will use 2 KNN algorithms, a soft classifier, and a decision tree. We compare their performance and execution time. The results were predictable, KNN has the best accuracy but was the slowest, and the decision tree was a little bit worst accuracy but very fast.</p>
      </abstract>
      <kwd-group>
        <kwd>eol&gt;Prediction model</kwd>
        <kwd>Classification algorithms</kwd>
        <kwd>Disease prediction</kwd>
        <kwd>Python</kwd>
      </kwd-group>
    </article-meta>
  </front>
  <body>
    <sec id="sec-1">
      <title>1. Introduction</title>
    </sec>
    <sec id="sec-2">
      <title>2. Assumptions for the algorithms</title>
      <p>
        Modern computer science is heading towards the creation Each of the algorithms should be prepared to meet the
of intelligent systems that facilitate control, management following criteria:
or optimization of certain user processes [
        <xref ref-type="bibr" rid="ref10 ref11 ref7 ref8 ref9">1, 2, 3, 4, 5</xref>
        ]. 1. Prepared according to the mathematical
descripArtificial neural networks [
        <xref ref-type="bibr" rid="ref12">6</xref>
        ] play a key role here, which tion of the algorithm;
form the basis of machine learning [7, 8] as well as pro- 2. Optimized for the performance on our data set;
vide a number of useful tools for detecting certain
features [
        <xref ref-type="bibr" rid="ref5">9, 10, 11, 12, 13</xref>
        ]. Optimization processes often re- 3. Returns the most likely disease;
quire the use of very efective tools which, thanks to the 4. Should be used easy to implement or use in the
eficiency of modern computers, allow to imitate the be- front-end site;
havior of the animal community that most often aims to
obtain food [14, 15, 16] and proper healthcare [
        <xref ref-type="bibr" rid="ref13">17, 18, 19</xref>
        ]. 3. Dataset and Data processing
An interesting and extremely useful task at the moment
with the use of heuristic algorithms is the reduction of en- The data was taken from the Kaggle platform from a
ergy consumption [
        <xref ref-type="bibr" rid="ref14">20</xref>
        ]. Contemporary IT solutions com- database called "Disease Symptom Prediction"[
        <xref ref-type="bibr" rid="ref20">26</xref>
        ]. At
bining IoT and artificial intelligence methods increase the very beginning, We started to "clean up" and wrote a
the quality of life [
        <xref ref-type="bibr" rid="ref15 ref16">21, 22</xref>
        ] facilitate care for the elderly script that removed duplicates from almost 5,000 records
[
        <xref ref-type="bibr" rid="ref17">23</xref>
        ] and are also used to detect road damage [
        <xref ref-type="bibr" rid="ref18 ref19">24, 25</xref>
        ]. in the database and managed to extract 442 unique ones!
      </p>
      <p>The government and health insurance providers might Therefore, even the most stupid and bad solutions on the
gain from disease prediction, among other stakeholders. Kaggle platform gave 100% or very close to this result.
Patients who are at risk for certain illnesses or disorders That is why in the end We also tested manually/visually
can be identified. The quality of treatment can be im- to be sure that the results are not just empty percentages.
proved and possible hospital admissions can be avoided
if clinicians take the necessary steps to avoid or minimize
the risk. Also in the age of Covid and virtual contact with
doctors, it can be a good alternative for the first quick
diagnosis.
• We replace the symptoms with the corresponding
numbers which are the indexes of the 2nd file so
there is no risk of mixing things up.
• The last and most dificult step (after the first KNN
clusterization which will be discussed below) is
to change the data frames so that the columns
become symptoms and the values are 0 when
there is no symptom and 1 when there is.
• The graph on fig. 4 shows how symptoms are
distributed according to disease.</p>
    </sec>
    <sec id="sec-3">
      <title>4. K Nearest Neighbors Algorithm</title>
      <p>The K Nearest Neighbors (KNN) algorithm is the
simplest and slowest classification algorithm. classification.
This becomes a problem when dealing with large data
sets. Find the k nearest elements (neighbors) to a new
element and assign this element to the group to which
most of its neighbors. To improve the performance of the
KNN algorithm a common technique is to standardize or
normalize the data. Its application causes all dimensions
for which the distance is calculated to have equal
significance. Otherwise, a situation could arise in which a
single dimension would dominate the other dimensions.
measures. In this case, we have data that is based on
symptoms and there is no strength of their or time of
occurrence, so we don’t have to worry about that. The
KNN algorithm uses metrics to determine the nearest
neighbors. In this case, I used the Minkowski distance.
(, ) =
︃( 
∑︁ |  −  |
)︃ 1</p>
    </sec>
    <sec id="sec-4">
      <title>5. Soft classifier</title>
      <p>In order to build a soft classifier we first need to take
care of a suitable data format. Then, we create a
dictionary from the columns with 0-1 values. The dictionary
building itself is done as follows: the algorithm calculates
average values for the given column and then checks how
many values in the column are below and above the
average for the given disease. Based on this data, it completes
(1) the dictionary with values. The static method which is
responsible for this is group class.</p>
    </sec>
    <sec id="sec-5">
      <title>6. Decision tree</title>
      <p>A decision tree is a supervised machine learning tool that
may be used to classify or predict data based on how
queries from the past have been answered. The model
is supervised learning in nature, which means that it is
trained and evaluated using data sets that include the
required categorisation. The decision tree might not always
ofer a simple solution or choice. Instead, it may provide
the data scientist choices so they can choose wisely on
their own. Decision trees mimic human thought
processes, making it typically simple for data scientists to
comprehend and evaluate the findings. A decision tree
is drawn upside down with its root at the top. Each tree
node can be split into branches. The end of the branch
that doesn’t split anymore is the leaf.</p>
    </sec>
    <sec id="sec-6">
      <title>7. Support Vector Machine</title>
      <sec id="sec-6-1">
        <title>Algorithm 1: Data clustering algorithm.</title>
      </sec>
      <sec id="sec-6-2">
        <title>Data: Input data set sample Data: Input data set data Data: Input k number of classifications Data: Input m Minkowski distance</title>
        <p>Result: Class
1 Create classes from zeros dictionary ;
2 Create distances with an empty list ;
3 foreach x in range (0, len (data), 1) do
4 distances.append (minkowskiDistance
(sample, data.iloc [x], m))
5 end
6 data = data.assign (dist = distances) ;
7 data = data.sort_values(by=["dist"]) ;
8 data = data.drop (["dist"], axis = 1) ;
9 foreach i in range (0, k, 1) do
10 classes [data.iloc [i] ["Disease"]] + = 1
11 end
12 return max (classes, key = classes.get)</p>
        <sec id="sec-6-2-1">
          <title>8.1. KNN algorithm pseudocodes</title>
        </sec>
      </sec>
    </sec>
    <sec id="sec-7">
      <title>8. Algorithms</title>
      <p>Support Vector Machine, or SVM, is a prominent
Supervised Learning technique that is used for both
classification and regression issues. However, it is mostly utilized Algorithm 2: Algorithm returning the accuracy
in Machine Learning for Classification dificulties. The of the kNN classifier.</p>
      <p>SVM algorithm’s purpose is to find the optimum line or Data: Test input
decision boundary for categorizing n-dimensional space Data: Train input
so that we may simply place fresh data points in the Data: Input k number of classifications
proper category in the future. A hyperplane is the opti- Data: Input m Minkowski distance
mal choice boundary. SVM selects the extreme vectors Result: Accuracy
that aid in the creation of the hyperplane. These ex- 1 Create correct with the value 0 ;
treme examples are referred to as support vectors, and 2 foreach i in range (0, len (test), 1) do
the method is known as the Support Vector Machine. 3 if clustering (test.iloc [i], train, k, m) ==
test.iloc [i] .Disease then</p>
      <p>correct + = 1 ;
4
5 end
6 return str (correct / len (test) * 100) + % ;</p>
      <sec id="sec-7-1">
        <title>8.2. soft classifier pseudocodes</title>
        <p>66–72
Algorithm 3: Algorithm for building a soft set.</p>
        <sec id="sec-7-1-1">
          <title>Data: Input data set data</title>
          <p>Data: Input symptoms dataset</p>
          <p>Result: groupByClass soft dictionary
1 Create columnNames with column list from  ;
2 Create uniqueClasses with a list of unique classes
from  ;
3 Create groupByClass with dictionary ;
4 Create a size with number of columns from  ;
5 Create i ranging from 0 to the length of the
unique classes ;
6 Create count with a value of 0 ;
7 Create a type with the dictionary ;
8 Create a cell from 0 to length  ;
9 Create j ranging from 1 to the length of the
columns of  ;
10 foreach i in range (0, len (uniqueClasses), 1) do
11 count = 0 ;
12 type = symptoms [i]: 0 for i in range (len
(symptoms)) foreach cell in range (0, len
(data), 1) do
13 if data.at [cell, columnNames [0]] ==
uniqueClasses [i] then
14 count + = 1 ;
15 foreach j in range (1, size, 1) do
16 type [columnNames [j]] + =
data.at [cell, columnNames [j]] ;
17</p>
          <p>end
18
19
20
21
22
23
24 end
25 return groupByClass ;
end
if count == 0 then</p>
          <p>continue ;
type = k: v / count for k, v in type.items () ;
ProcessingData.toOneOrZeroDict (type) ;
groupByClass [i] = type ;
8.3.</p>
        </sec>
      </sec>
      <sec id="sec-7-2">
        <title>Decision tree</title>
        <p>For the decision tree, we use DecisionTreeClassifier from
sklearn. The params were: nodes=40, criterion=’entropy’,
random state=0, max depth=6, min samples leaf=1.</p>
      </sec>
      <sec id="sec-7-3">
        <title>8.4. Support Vector Machine</title>
        <p>For SVM we choose the SVC implementation for C-Support
vector classification also from sklearn. The input params
were: kernel=’linear’, C=1</p>
      </sec>
    </sec>
    <sec id="sec-8">
      <title>9. Select the best algorithm</title>
      <p>Algorithm Accuracy Time
KNN v1 82.2% 10.4s
KNN v2 100% 31.2s
Soft classifier 97.74% 4.4s
Decision tree 84,96% 0.7s
SVM 87.22% 0.6s
KNN v1 was KNN with dataset with orginal shape.
KNN v2 was KNN with rashaped dataset.</p>
      <p>Each classifier was tested 30 times to ensure that the</p>
    </sec>
  </body>
  <back>
    <ref-list>
      <ref id="ref1">
        <mixed-citation>
          <article-title>results we obtained were as near to their true accuracy neural networks applied for prediction of plant leaf as possible. KNN on a well-shaped data set was, in our diseases</article-title>
          ,
          <source>Sensors</source>
          <volume>21</volume>
          (
          <year>2021</year>
          )
          <fpage>4749</fpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref2">
        <mixed-citation>
          <article-title>opinion, the best of the tested algorithms</article-title>
          . It has the [7]
          <string-name>
            <given-names>A. T.</given-names>
            <surname>Özdemir</surname>
          </string-name>
          ,
          <string-name>
            <given-names>B.</given-names>
            <surname>Barshan</surname>
          </string-name>
          ,
          <article-title>Detecting falls with best accuracy but takes a lot of time. The compromise wearable sensors using machine learning techbetween speed and accuracy was a decision tree. It has a niques</article-title>
          ,
          <source>Sensors</source>
          <volume>14</volume>
          (
          <year>2014</year>
          )
          <fpage>10691</fpage>
          -
          <lpage>10708</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref3">
        <mixed-citation>
          <article-title>near 100% score and also good performance</article-title>
          , we can also [8]
          <string-name>
            <given-names>K. G.</given-names>
            <surname>Liakos</surname>
          </string-name>
          ,
          <string-name>
            <given-names>P.</given-names>
            <surname>Busato</surname>
          </string-name>
          ,
          <string-name>
            <given-names>D.</given-names>
            <surname>Moshou</surname>
          </string-name>
          , S. Pearson,
          <article-title>easily save weights for future use in the front-end. The D. Bochtis, Machine learning in agriculture: A quickest was SVM and the accuracy was not the worst review</article-title>
          ,
          <source>Sensors</source>
          <volume>18</volume>
          (
          <year>2018</year>
          )
          <fpage>2674</fpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref4">
        <mixed-citation>
          <article-title>so if we need really quick classification we need to take [9</article-title>
          ]
          <string-name>
            <given-names>O.</given-names>
            <surname>Dehzangi</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Taherisadr</surname>
          </string-name>
          , R. ChangalVala,
          <article-title>ImuSVM into consideration. based gait recognition using convolutional neural networks and multi-sensor fusion</article-title>
          ,
          <source>Sensors</source>
          <volume>17</volume>
          (
          <year>2017</year>
          )
          <fpage>2735</fpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref5">
        <mixed-citation>
          10. Conclusion and future work [10]
          <string-name>
            <given-names>C.</given-names>
            <surname>Napoli</surname>
          </string-name>
          , G. De Magistris,
          <string-name>
            <given-names>C.</given-names>
            <surname>Ciancarelli</surname>
          </string-name>
          ,
          <string-name>
            <given-names>F.</given-names>
            <surname>Corallo</surname>
          </string-name>
          ,
          <string-name>
            <given-names>F.</given-names>
            <surname>Russo</surname>
          </string-name>
          ,
          <string-name>
            <given-names>D.</given-names>
            <surname>Nardi</surname>
          </string-name>
          ,
          <article-title>Exploiting wavelet recurTo sum it all up, we have a wide range of algorithms to rent neural networks for satellite telemetry data choose and the proven algorithms performed well on the modeling, prediction and control, Expert Sysdataset</article-title>
          .
          <article-title>Further testing with more algorithms</article-title>
          , or con- tems
          <source>with Applications</source>
          <volume>206</volume>
          (
          <year>2022</year>
          ). doi:
          <volume>10</volume>
          .1016/
          <article-title>necting fast algorithms with some simple decision model, should be undertaken to increase their performance</article-title>
          .
          <source>Ex- [11] jH.. eGs.wHao.n2g0,2M2 ..1B1.7L8e3e</source>
          ,
          <year>1K</year>
          .. R. Park,
          <article-title>Convolutional panding the collection with new features and situations neural network-based finger-vein recognition using would be another way to improve the utility of our ef- nir image sensors</article-title>
          ,
          <source>Sensors</source>
          <volume>17</volume>
          (
          <year>2017</year>
          )
          <fpage>1297</fpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref6">
        <mixed-citation>
          <article-title>fort. For mobile phones, performance is very important</article-title>
          . [12]
          <string-name>
            <given-names>C.</given-names>
            <surname>Ciancarelli</surname>
          </string-name>
          , G. De Magistris,
          <string-name>
            <given-names>S.</given-names>
            <surname>Cognetta</surname>
          </string-name>
          ,
          <article-title>For example, we are not able to use KNN in some health D</article-title>
          .
          <string-name>
            <surname>Appetito</surname>
            ,
            <given-names>C.</given-names>
          </string-name>
          <string-name>
            <surname>Napoli</surname>
            ,
            <given-names>D.</given-names>
          </string-name>
          <string-name>
            <surname>Nardi</surname>
          </string-name>
          ,
          <article-title>A gan aprealeted applications but we can use weights from soft proach for anomaly detection in spacecraft telemeclassifier or SVM</article-title>
          .
          <source>tries, Lecture Notes in Networks and Systems 531 LNNS</source>
          (
          <year>2023</year>
          )
          <fpage>393</fpage>
          -
          <lpage>402</lpage>
          . doi:
          <volume>10</volume>
          .1007/ References 978-3-
          <fpage>031</fpage>
          -18050-7_
          <fpage>38</fpage>
          . [13]
          <string-name>
            <given-names>G.</given-names>
            <surname>Capizzi</surname>
          </string-name>
          ,
          <string-name>
            <given-names>G. Lo</given-names>
            <surname>Sciuto</surname>
          </string-name>
          ,
          <string-name>
            <given-names>C.</given-names>
            <surname>Napoli</surname>
          </string-name>
          , E. Tramontana,
        </mixed-citation>
      </ref>
      <ref id="ref7">
        <mixed-citation>
          [1]
          <string-name>
            <surname>Q.-</surname>
          </string-name>
          <article-title>b</article-title>
          . Zhang,
          <string-name>
            <given-names>P.</given-names>
            <surname>Wang</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Z.-h.</given-names>
            <surname>Chen</surname>
          </string-name>
          ,
          <article-title>An improved M. Woźniak, A novel neural networks-based texparticle filter for mobile robot localization based on ture image processing algorithm for orange defects particle swarm optimization, Expert Systems with classification</article-title>
          ,
          <source>International Journal of Computer Applications</source>
          <volume>135</volume>
          (
          <year>2019</year>
          )
          <fpage>181</fpage>
          -
          <lpage>193</lpage>
          .
          <source>Science and Applications</source>
          <volume>13</volume>
          (
          <year>2016</year>
          )
          <fpage>45</fpage>
          -
          <lpage>60</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref8">
        <mixed-citation>
          [2]
          <string-name>
            <given-names>S.</given-names>
            <surname>Illari</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            <surname>Russo</surname>
          </string-name>
          ,
          <string-name>
            <given-names>R.</given-names>
            <surname>Avanzato</surname>
          </string-name>
          ,
          <string-name>
            <given-names>C.</given-names>
            <surname>Napoli</surname>
          </string-name>
          , A cloud- [14]
          <string-name>
            <given-names>T.</given-names>
            <surname>Qiu</surname>
          </string-name>
          ,
          <string-name>
            <given-names>B.</given-names>
            <surname>Li</surname>
          </string-name>
          ,
          <string-name>
            <given-names>X.</given-names>
            <surname>Zhou</surname>
          </string-name>
          ,
          <string-name>
            <given-names>H.</given-names>
            <surname>Song</surname>
          </string-name>
          ,
          <string-name>
            <given-names>I.</given-names>
            <surname>Lee</surname>
          </string-name>
          ,
          <string-name>
            <surname>J.</surname>
          </string-name>
          <article-title>Lloret, oriented architecture for the remote assessment A novel shortcut addition algorithm with particle and follow-up of hospitalized patients, in: CEUR swarm for multisink internet of things</article-title>
          ,
          <source>IEEE TransWorkshop Proceedings</source>
          , volume
          <volume>2694</volume>
          ,
          <year>2020</year>
          , pp.
          <fpage>29</fpage>
          -
          <lpage>actions</lpage>
          <source>on Industrial Informatics</source>
          <volume>16</volume>
          (
          <year>2019</year>
          )
          <fpage>3566</fpage>
          -
          <lpage>35</lpage>
          .
          <fpage>3577</fpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref9">
        <mixed-citation>
          [3]
          <string-name>
            <given-names>M. A.</given-names>
            <surname>Sanchez</surname>
          </string-name>
          ,
          <string-name>
            <given-names>O.</given-names>
            <surname>Castillo</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J. R.</given-names>
            <surname>Castro</surname>
          </string-name>
          , Generalized [15]
          <string-name>
            <given-names>V.</given-names>
            <surname>Marcotrigiano</surname>
          </string-name>
          , G. Stingi,
          <string-name>
            <given-names>S.</given-names>
            <surname>Fregnan</surname>
          </string-name>
          ,
          <string-name>
            <surname>P.</surname>
          </string-name>
          <article-title>Magatype-2 fuzzy systems for controlling a mobile robot relli</article-title>
          , P. Pasquale,
          <string-name>
            <given-names>S.</given-names>
            <surname>Russo</surname>
          </string-name>
          , G. Orsi,
          <string-name>
            <given-names>M.</given-names>
            <surname>Montagna</surname>
          </string-name>
          ,
          <article-title>and a performance comparison with interval type- C.</article-title>
          <string-name>
            <surname>Napoli</surname>
            ,
            <given-names>C.</given-names>
          </string-name>
          <string-name>
            <surname>Napoli</surname>
          </string-name>
          ,
          <article-title>An integrated control plan 2 and type-1 fuzzy systems, Expert Systems with in primary schools: Results of a field investigaApplications 42 (</article-title>
          <year>2015</year>
          )
          <fpage>5904</fpage>
          -
          <lpage>5914</lpage>
          .
          <article-title>tion on nutritional and hygienic features in the</article-title>
        </mixed-citation>
      </ref>
      <ref id="ref10">
        <mixed-citation>
          [4]
          <string-name>
            <given-names>G.</given-names>
            <surname>Lo Sciuto</surname>
          </string-name>
          , G. Susi, G. Cammarata,
          <string-name>
            <given-names>G.</given-names>
            <surname>Capizzi</surname>
          </string-name>
          ,
          <article-title>A apulia region (southern italy)</article-title>
          ,
          <source>Nutrients</source>
          <volume>13</volume>
          (
          <year>2021</year>
          ).
          <article-title>spiking neural network-based model for anaerobic doi</article-title>
          :
          <volume>10</volume>
          .3390/nu13093006. digestion process, in: 2016 International Sympo- [16]
          <string-name>
            <given-names>M.</given-names>
            <surname>Ren</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Y.</given-names>
            <surname>Song</surname>
          </string-name>
          ,
          <string-name>
            <given-names>W.</given-names>
            <surname>Chu</surname>
          </string-name>
          ,
          <article-title>An improved locally sium on Power Electronics, Electrical Drives, Au- weighted pls based on particle swarm optimization tomation and Motion (SPEEDAM)</article-title>
          , IEEE,
          <year>2016</year>
          , pp.
          <source>for industrial soft sensor modeling, Sensors</source>
          <volume>19</volume>
          <fpage>996</fpage>
          -
          <lpage>1003</lpage>
          . (
          <year>2019</year>
          )
          <fpage>4099</fpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref11">
        <mixed-citation>
          [5]
          <string-name>
            <given-names>C.</given-names>
            <surname>Napoli</surname>
          </string-name>
          ,
          <string-name>
            <given-names>F.</given-names>
            <surname>Bonanno</surname>
          </string-name>
          , G. Capizzi, Exploiting solar [17]
          <string-name>
            <given-names>S.</given-names>
            <surname>Russo</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            <surname>Illari</surname>
          </string-name>
          ,
          <string-name>
            <given-names>R.</given-names>
            <surname>Avanzato</surname>
          </string-name>
          ,
          <string-name>
            <given-names>C.</given-names>
            <surname>Napoli</surname>
          </string-name>
          ,
          <article-title>Reducwind time series correlation with magnetospheric ing the psychological burden of isolated oncological response by using an hybrid neuro-wavelet ap- patients by means of decision trees</article-title>
          ,
          <source>in: CEUR Workproach, Proceedings of the International astronom- shop Proceedings</source>
          , volume
          <volume>2768</volume>
          ,
          <year>2020</year>
          , pp.
          <fpage>46</fpage>
          -
          <lpage>53</lpage>
          .
          <source>ical union 6</source>
          (
          <year>2010</year>
          )
          <fpage>156</fpage>
          -
          <lpage>158</lpage>
          . [18]
          <string-name>
            <given-names>G.</given-names>
            <surname>Lo Sciuto</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            <surname>Russo</surname>
          </string-name>
          ,
          <string-name>
            <given-names>C.</given-names>
            <surname>Napoli</surname>
          </string-name>
          ,
          <article-title>A cloud-based</article-title>
        </mixed-citation>
      </ref>
      <ref id="ref12">
        <mixed-citation>
          [6]
          <string-name>
            <given-names>V. S.</given-names>
            <surname>Dhaka</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S. V.</given-names>
            <surname>Meena</surname>
          </string-name>
          ,
          <string-name>
            <given-names>G.</given-names>
            <surname>Rani</surname>
          </string-name>
          ,
          <string-name>
            <given-names>D.</given-names>
            <surname>Sinwar</surname>
          </string-name>
          ,
          <string-name>
            <surname>M. F.</surname>
          </string-name>
          <article-title>lfexible solution for psychometric tests validation</article-title>
          , Ijaz,
          <string-name>
            <given-names>M.</given-names>
            <surname>Woźniak</surname>
          </string-name>
          ,
          <article-title>A survey of deep convolutional administration and evaluation</article-title>
          ,
          <source>in: CEUR Workshop Proceedings</source>
          , volume
          <volume>2468</volume>
          ,
          <year>2019</year>
          , pp.
          <fpage>16</fpage>
          -
          <lpage>21</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref13">
        <mixed-citation>
          [19]
          <string-name>
            <given-names>S.</given-names>
            <surname>Russo</surname>
          </string-name>
          ,
          <string-name>
            <given-names>C.</given-names>
            <surname>Napoli</surname>
          </string-name>
          ,
          <article-title>A comprehensive solution for psychological treatment and therapeutic path planning based on knowledge base and expertise sharing</article-title>
          ,
          <source>in: CEUR Workshop Proceedings</source>
          , volume
          <volume>2472</volume>
          ,
          <year>2019</year>
          , pp.
          <fpage>41</fpage>
          -
          <lpage>47</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref14">
        <mixed-citation>
          [20]
          <string-name>
            <given-names>M.</given-names>
            <surname>Woźniak</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Sikora</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Zielonka</surname>
          </string-name>
          ,
          <string-name>
            <given-names>K.</given-names>
            <surname>Kaur</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M. S.</given-names>
            <surname>Hossain</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Shorfuzzaman</surname>
          </string-name>
          ,
          <article-title>Heuristic optimization of multipulse rectifier for reduced energy consumption</article-title>
          ,
          <source>IEEE Transactions on Industrial Informatics</source>
          <volume>18</volume>
          (
          <year>2021</year>
          )
          <fpage>5515</fpage>
          -
          <lpage>5526</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref15">
        <mixed-citation>
          [21]
          <string-name>
            <given-names>M.</given-names>
            <surname>Woźniak</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Zielonka</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Sikora</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M. J.</given-names>
            <surname>Piran</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Alamri</surname>
          </string-name>
          ,
          <article-title>6g-enabled iot home environment control using fuzzy rules</article-title>
          ,
          <source>IEEE Internet of Things Journal</source>
          <volume>8</volume>
          (
          <year>2020</year>
          )
          <fpage>5442</fpage>
          -
          <lpage>5452</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref16">
        <mixed-citation>
          [22]
          <string-name>
            <given-names>G. C.</given-names>
            <surname>Cardarilli</surname>
          </string-name>
          ,
          <string-name>
            <given-names>L. Di</given-names>
            <surname>Nunzio</surname>
          </string-name>
          ,
          <string-name>
            <given-names>R.</given-names>
            <surname>Fazzolari</surname>
          </string-name>
          ,
          <string-name>
            <given-names>D.</given-names>
            <surname>Giardino</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Re</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Ricci</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            <surname>Spanò</surname>
          </string-name>
          ,
          <article-title>An fpga-based multi-agent reinforcement learning timing synchronizer</article-title>
          ,
          <source>Computers and Electrical Engineering</source>
          <volume>99</volume>
          (
          <year>2022</year>
          )
          <fpage>107749</fpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref17">
        <mixed-citation>
          [23]
          <string-name>
            <given-names>M.</given-names>
            <surname>Woźniak</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Wieczorek</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Siłka</surname>
          </string-name>
          ,
          <string-name>
            <given-names>D.</given-names>
            <surname>Połap</surname>
          </string-name>
          ,
          <article-title>Body pose prediction based on motion sensor data and recurrent neural network</article-title>
          ,
          <source>IEEE Transactions on Industrial Informatics</source>
          <volume>17</volume>
          (
          <year>2020</year>
          )
          <fpage>2101</fpage>
          -
          <lpage>2111</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref18">
        <mixed-citation>
          [24]
          <string-name>
            <given-names>M.</given-names>
            <surname>Woźniak</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Zielonka</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Sikora</surname>
          </string-name>
          ,
          <article-title>Driving support by type-2 fuzzy logic control model</article-title>
          ,
          <source>Expert Systems with Applications</source>
          <volume>207</volume>
          (
          <year>2022</year>
          )
          <fpage>117798</fpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref19">
        <mixed-citation>
          [25]
          <string-name>
            <given-names>L.</given-names>
            <surname>Canese</surname>
          </string-name>
          ,
          <string-name>
            <given-names>G. C.</given-names>
            <surname>Cardarilli</surname>
          </string-name>
          ,
          <string-name>
            <given-names>L. Di</given-names>
            <surname>Nunzio</surname>
          </string-name>
          ,
          <string-name>
            <given-names>R.</given-names>
            <surname>Fazzolari</surname>
          </string-name>
          ,
          <string-name>
            <given-names>H. Famil</given-names>
            <surname>Ghadakchi</surname>
          </string-name>
          , M. Re, S. Spanò,
          <article-title>Sensing and detection of trafic signs using cnns: an assessment on their performance</article-title>
          ,
          <source>Sensors</source>
          <volume>22</volume>
          (
          <year>2022</year>
          )
          <fpage>8830</fpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref20">
        <mixed-citation>
          [26]
          <string-name>
            <given-names>P.</given-names>
            <surname>Patil</surname>
          </string-name>
          , Disease symptom prediction,
          <year>2020</year>
          . URL: https://www.kaggle.com/datasets/itachi9604/ disease
          <article-title>-symptom-description-dataset?select= dataset</article-title>
          .csv.
        </mixed-citation>
      </ref>
    </ref-list>
  </back>
</article>