Next Article in Journal
The Role of Mycangial Fungi Associated with Ambrosia Beetles (Euwallacea interjectus) in Fig Wilt Disease: Dual Inoculation of Fusarium kuroshium and Ceratocystis ficicola Can Bring Fig Saplings to Early Symptom Development
Previous Article in Journal
Individuals with Inflammatory Bowel Disease Have an Altered Gut Microbiome Composition of Fungi and Protozoa
 
 
Font Type:
Arial Georgia Verdana
Font Size:
Aa Aa Aa
Line Spacing:
Column Width:
Background:
Review

Artificial Intelligence Models for Zoonotic Pathogens: A Survey

1
Computer Science & Engineering, Mississippi State University, Starkville, MS 39762, USA
2
College of Veterinary Medicine, Mississippi State University, Starkville, MS 39762, USA
*
Author to whom correspondence should be addressed.
Microorganisms 2022, 10(10), 1911; https://doi.org/10.3390/microorganisms10101911
Submission received: 16 August 2022 / Revised: 19 September 2022 / Accepted: 22 September 2022 / Published: 27 September 2022
(This article belongs to the Section Systems Microbiology)

Abstract

:
Zoonotic diseases or zoonoses are infections due to the natural transmission of pathogens between species (animals and humans). More than 70% of emerging infectious diseases are attributed to animal origin. Artificial Intelligence (AI) models have been used for studying zoonotic pathogens and the factors that contribute to their spread. The aim of this literature survey is to synthesize and analyze machine learning, and deep learning approaches applied to study zoonotic diseases to understand predictive models to help researchers identify the risk factors, and develop mitigation strategies. Based on our survey findings, machine learning and deep learning are commonly used for the prediction of both foodborne and zoonotic pathogens as well as the factors associated with the presence of the pathogens.

1. Introduction

Zoonotic diseases or zoonoses are infections due to the natural transmission of pathogens between animals and humans. Human-animal interactions could lead to the spread of zoonoses by transmission of pathogenic viruses, bacteria, parasites, and fungi through direct or indirect contact, or include vector-borne, food-borne, and water-borne routes. More than 70% of emerging infectious diseases are attributed to animal origin. Thus, zoonoses are a major public health concern with an estimated 2.7 million annual mortality. In addition to their impact on human health, zoonoses impact livestock production and security causing economics losses. Zoonotic diseases can result in epidemics and pandemics exemplified by the recent global coronavirus disease pandemic 2019 (COVID-19) that impacted almost every aspect of life. The World Health Organization COVID-19 dashboard lists 608.3 million confirmed cases and 6.5 million deaths as of September 2022. Early economic projections in 2020 by the United Nations indicated a reduction in global economic output by 8.5 trillion in two years due to COVID-19. Modeling of the impact of climate change and land usage on altered viral-mammal networks predicts at least 15,000 zoonotic spillovers by 2070. Climate hazards are expected to aggravate 58% of known human infectious diseases. While post-outbreak control methods can help mitigate the impact of zoonoses, proactive strategies to identify and mitigate risk are warranted to prevent and reduce the threat to global health, safety, and economy.
In recent years, Artificial Intelligence (AI) models have been used for studying zoonotic pathogens and the factors that contribute to their spread (Carlson et al., 2021 [1]).
In particular, Logistic Regression (Cox 1958 [2]) and Random Forest (Ho 1995 [3], Breiman 2001 [4]) are widely used for modeling and drawing useful inferences about zoonotic diseases and their transmission (Ntampaka et al., 2021 [5], Kiambi et al., 2020 [6], Acharya et al., 2019 [7]). More recently, the effectiveness of artificial neural networks in modeling zoonotic diseases and their causes have also been demonstrated in a number of studies (Boleratz and Oscar 2022 [8], ZareBidaki et al., 2022 [9], Denholm et al., 2020 [10]).
In this review, we provide a summary of AI-based modeling approaches that have been used for zoonotic diseases and pathogens. Throughout this article, we provide information about machine learning (ML) and AI models that are commonly used for analyzing zoonotic pathogen cases, strategies for model selection, and a short summary of results. The scope of this study excludes studies that utilize human or plant-based samples (Buccioni et al., 2022 [11]), or the effects of vaccination (Seekatz et al., 2013 [12]).
The manuscript is organized as follows: Section 2 introduces some fundamental machine learning concepts that are discussed in this paper. In Section 3, we describe the databases and search strings used to identify studies. In the following sections, we examine studies that use artificial intelligence models to address issues concerning zoonotic diseases. We summarize the investigations related to diseases spread by animal contact in Section 4, and food-borne zoonotic pathogens in Section 5. A brief summary of the merits and demerits of popular algorithms included in this manuscript is provided in Section 6. Conclusions are offered in Section 7.

2. Artificial Intelligence Models

While mathematical models are useful for scenarios involving a small number of parameters (Schiraldi and Foschino 2022 [13], Adamczewski et al., 2022 [14], Herron 2022 [15]), models based on Artificial Intelligence are especially useful for predicting a wide range of outcomes of interest based on practically any number of parameters—as long as sufficient observations are available to construct such models. Machine learning approaches can be broadly classified into unsupervised approaches for clustering unlabeled data sets, and supervised algorithms for labeled datasets. More recently, with the reduced cost of computation, it has been more useful to categorize them in to traditional machine learning algorithms, which are useful for numerical and category-based inputs, and computationally intensive deep learning algorithms, that can be applied to a wider range of input types, including images and audio.
A brief description of traditional machine learning algorithms widely used in the literature are as follows.
  • K-Nearest Neighbors (K-NN): A KNN classifier is a non-parametric classifier that uses proximity to determine whether or not an individual data point belongs to a particular group. The nearest neighbors determine the class label by majority vote.
  • Logistic Regression: It is a parametric, supervised algorithm that uses a logistic (sigmoid) function to model independent variables, viz.,
    Y = 1 1 + e W X
    where Y is the dependant variable, W X is the linear combination of independent variables X and weights W.
  • Random Forest (RT): A random forest is an ensemble learning technique that constructs an output class through a majority voting approach from a multitude of decision trees.
  • Naive Bayes (NB): A Naive Bayes classifier is a probabilistic classifier that makes predictions applying Bayes’ theorem, assuming that features are independent.
  • Support Vector Machine (SVM): Support vector machines are supervised classification algorithms that produce a hyperplane (decision boundary) that separates inputs into different categories.
  • eXtreme Gradient Boosting (XGBoost): It is an ensemble-based boosting approach that consists of multiple decision trees that run sequentially and are aimed at minimizing the error from the previous model.
The following is a brief description of deep learning models:
  • Artificial Neural Network: Neural networks are composed of layers of artificial neurons that are processed in a forward direction. This method is intended to identify underlying relationships in a set of data. The system comprises three or more layers: the input layer that accepts the input, any number of hidden layers of neurons, and the output layer that produces the output.
  • Recurrent neural network (RNN): RNNs are a type of artificial neural network used to address ordinal or temporal problems. Their distinct characteristic is their ability to draw on information from previous inputs to influence current inputs and outputs.
  • Long Short Term Memory network (LSTM): LSTMs are a special class of RNN with the ability to learn long-term relationships.
  • Generative Adversarial Network (GAN): A GAN is a supervised deep learning method that learns from the regularities in data. The model is composed of two submodels: a generator model and a discriminator model. A generator model attempts to generate new samples from negative data, while a discriminator model attempts to predict whether a sample is positive or negative.
  • Auto-Encoder: An autoencoder is an unsupervised method using stacked layers of neural networks composed of an encoder layer, a latent layer, and a decoder layer. By embedding unlabeled data into a latent layer, the original input can be recreated by the decoder layer. A supervised prediction layer can be added to the latent layer to make predictions based on the low-dimensional meaningful representations derived from the input samples.

3. Literature Review

An extensive literature review was conducted in accordance with PRISMA guidelines to identify publications related to predictive modeling for zoonotic diseases published between 2015 and 2022. For this study, PubMed, Google Scholar, ACM, IEEE Xplore, ScienceDirect, and BMC were searched for related articles. The following search strings identify studies relating to zoonotic pathogens mentioned in the UNEP and ILRI report 2020 [16] and the Dewey-Mattia et al., 2018 [17].
String 1: < Z o o n o t i c _ P a t h o g e n > AND Predictive AND modeling
String 2: < Z o o n o t i c _ P a t h o g e n > AND < F o o d _ S o u r c e > AND Predictive
String 3: < Z o o n o t i c _ P a t h o g e n > AND < A r t i f i c i a l _ I n t e l l i g e n c e _ M o d e l >
In the above search strings, < Z o o n o t i c _ P a t h o g e n > refers to the bacterium, virus, and parasite names listed in the UNEP and ILRI report 2020 [16] and the Dewey-Mattia et al. 2018 [17]. The term < F o o d _ S o u r c e > refers to various animal-based foods, such as milk, chicken, beef, cheese, etc. The term < A r t i f i c i a l _ I n t e l l i g e n c e _ M o d e l > , refers to the widely used machine learning and deep learning models in classification (for example, random forest). Of the 638 publications, 271 were excluded on the basis of their title, 34 papers were excluded based on their abstracts, and 243 papers were excluded after reading the method. Exclusions were made for studies that used human or water samples. In particular, we excluded all studies that were not animal or zoonotic based. Lastly, eligible studies focusing on predictive modeling analysis of zoonotic diseases were included in this review (Figure 1).

4. Contact-Based Zoonoses

Studies to investigate zoonotic diseases can be broadly categorized into disease prediction (Section 4.1) and identification of risk factors for prevalence (Section 4.2).

4.1. Disease Prediction

Models for predicting incidence of diseases are broadly categorized in to traditional machine learning models (which require only modest computing abilities) and deep learning models.

4.1.1. Machine Learning Models

Using a hybrid support vector machine (Cortes and Vapnik 1995 [18]) and partial least square regression model, Chinnathambi et al., 2020 [19] effectively forecast trap counts of Culex Tarsalis, female mosquitoes that transmit West Nile Virus, based on meteorological data, dead birds, WNV cases, and human deaths. Their results show that the SVM model, which is based on decision boundaries, works better when classes are separable, outperforms the other machine learning model with a mean absolute error of 3.01.
The linear regression model is generally more effective when there is a linear relationship between the variables and the prediction target. Kirjušina et al., 2016 [20] evaluated the larval biomass of naturally infected pine martens (Martes martes) of Latvia using linear regression to investigate the transmission patterns of Trichinella spp. from animals to humans. Trichinella parasites are cosmopolitan nematodes that infect mainly wild animals. From pine martens that had been infected with T. britovi, muscle tissue was collected from the abdomen, back, diaphragm, intercostal muscles, muscles of the head, shoulders, lower and upper parts of the forelimbs and hind limbs, neck, rump and tail, and base and tip of the tongue. Evaluation of larval biomass in reservoir hosts is helpful to predict transmission from carcasses of infected hosts of Trichinella spp. This study estimated the biomass of Trichinella larvae from the number of larvae per gram of muscle. According to their results, larvae found in each muscle were able to accurately predict the total larval burden in the animal.
The use of logistic regression (Cox 1958 [2]) is demonstrated in Mencía-Ares et al., 2021 [21] as an effective method for determining antimicrobial resistance (AMR) associated with swine farms. The antimicrobial resistance of Campylobacter, Salmonella, and Staphylococcus, the three common zoonotic pathogens in big populations, was assessed for antimicrobial use on swine farm management variables. Univariate mixed-effects logistic regression was used as the machine learning method to assess the influence of production system type, sample type, and antimicrobial consumption on the occurrence of multidrug resistant (MDR) phenotypes. Feces and slurry were sampled for Campylobacter; oral fluid was sampled for Staphylococcus; and feces, slurry, and oral fluid were sampled for Salmonella. This study demonstrated the link between antimicrobial consumption and resistance and concluded that AMR development in Campylobacter spp. and Staphylococcus spp. is influenced by the production system, with antimicrobial usage as a major factor.
Qekwana et al., 2017 [22] studied patterns and predictors of AMR among Staphylococcus spp. isolates from canine clinical samples submitted to the University of Pretoria bacteriology laboratory for routine diagnostic evaluation between 2007 and 2012. The dataset contained 334 confirmed Staphylococcus isolates, composed of S. aureus and S. pseudointermedius, with variables such as the site of collection, breed, sex, age, and the antimicrobial agent used for testing. They explored predictors of AMR in S. aureus (98% isolates) and S. pseudintermedius (77%) using logistic regression models. Chi-square or Fisher’s Exact tests are used to find associations between categorical variables. An analysis of the trends in the proportion of samples resistant to each antimicrobial agent is performed using the Cochran–Armitage trend tests. A binary logistic regression model is used as an initial model to identify antimicrobial resistance predictors from variables such as age, sex, and breed. In the second step, a multivariate logistic regression is conducted using variables identified with a p-value less than 0.2 in the first step. Based on the Wald Chi-Square Test, predictor variables with p-values less than 0.05 were considered statistically significant. More than 50% of the S. aureus isolates tested in their study were resistant to ampicillin, penicillin, lincospectin, and clindamycin; more than half of the isolates of S. pseudointermedius were resistant to both ampicillin and penicillin.
Conner et al., 2018 [23] examined AMR predictors among Staphylococcus spp. isolated from canine specimens submitted to the University of Kentucky Veterinary Diagnostic Laboratory (UKVDL) between 1993 and 2009. In this study, 4972 Staphylococcus isolates were assessed with variables, including the year, Staphylococcus spp., geographic region, dog breed, age, group, sex, and specimen source. Cochran–Armitage trend tests were used to analyze the temporal trends for each antimicrobial. AMR and MDR were investigated using logistic regression models. This study found 80 isolates of Staphylococcus spp. to be resistant to 50% of the antimicrobials tested, while eight isolates were resistant to 75% of the antimicrobials tested. These studies indicate that logistic regression is an effective method for identifying the factors influencing antimicrobial resistance in samples with varying levels of complexity.
American trypanosomiasis, or Chagas disease, is a neglected tropical disease caused by the flagellated protozoan, Trypanosoma cruzi. This disease is transmitted by Haematophagous Triatomines of the family Reduviidae, subfamily Triatominae. To detect differences in the intestinal metabolome of the triatomine Rhodnius prolixus and predict whether the insect had been exposed to T. cruzi, Eberhard et al., 2021 [24] used logistic regression, random forest (Breiman 2001 [4]) classifiers, and gradient boosting (Friedman 2001 [25]) algorithms. Results show that the ensemble approaches outperformed logistic regression for detecting complex interactions between triatomine vectors and parasites.
Ebola virus disease (EVD) is a rare and deadly disease affecting humans and non-human primates. Using clinical, virologic, and transcriptomic features that distinguish tolerant from lethal outcomes, Price et al., 2020 [26] studied host responses to the Ebola virus infection in mice. Based on their analysis, the random forest model was found to be capable of accurately predicting disease outcome.
Crimean-Congo haemorrhagic fever (CCHF) is a highly virulent human disease caused by a single-stranded, negative sense RNA virus belonging to the genus Nairovirus in the family Bunyaviridae. Using a structured Gaussian approach, Ak et al., 2020 [27] identified risky geographic regions in Turkey for the CCHF (Ak et al., 2018 [28]). The dataset included information on climate, land use, and animal and human populations at risk to capture spatiotemporal transmission dynamics. According to their analysis, CCHF is primarily driven by geographical dependence and climate effects on ticks. The Gaussian process, which is based on a Gaussian probability distribution, can be effectively used to provide reliable classification in uncertain conditions such as climate or spatiotemporal variables.

4.1.2. Deep Learning Models

The advent of neural networks has enabled researchers to derive inferences and make informed decisions from a variety of complex, noisy, and varied datasets from areas including vision, language, audio, and time-series. In one such study, Sadeghi et al., 2015 [29] employed a neural network (McCulloch and Pitts 1943 [30]) method for detecting Clostridium perfringens infection in chickens based on the characteristics of the sound they produced. The five most important and effective vocal features from the poultry farm were selected based on Fisher Discriminate Analysis (FDA). This study utilized a neural network pattern recognition (NNPR) method to distinguish between healthy and unhealthy chickens by analyzing sound signals, providing new directions for the detection and control of zoonotic pathogens.
Using a hybrid PCA-ANN model, Chenar and Deng 2021 [31] successfully predicted historical outbreaks of oyster norovirus along the northern Gulf of Mexico coast. Remote sensing data from the Moderate Resolution Imaging Spectroradiometer (MODIS) satellite, which are gathered at the center of each oyster harvesting area for 10 years, were used as input to this system. Principal component analysis (PCA) was applied to reduce the size of the MODIS Aqua data. The researchers trained an artificial neural network (ANN) model using the first four years’ data, and successfully predicted the outbreaks for six additional years features.
Avian influenza virus (HPAI) is a highly contagious virus that belongs to the family Orthomyxoviridae and genus influenza virus A. Using poultry farm management variables, the visit records of livestock-related vehicles, and environmental variables, Yoon et al., 2020 [32] presented a deep learning model to assess avian influenza risk at the farm level. The multi-layer perceptron model they developed has proven effective in assessing risk, thus facilitating risk management activities and supporting control measures.
Bovine tuberculosis (bTB) is a progressive and debilitating zoonotic disease caused by Mycobacterium bovis infection in tissues primarily associated with respiratory tracts and lymph nodes. Denholm et al., 2020 [10] used an ANN architecture to predict the bTB status of UK dairy cows by using mid-infrared spectral profiles, single intradermal comparative cervical tuberculin (SICCT) skin-test results, culture data, and the presence of lesions. The model enabled them to identify cows that are likely to fail the SICCT skin test, which allows farmers to make early management decisions concerning potential reactor cows.
In another case, Cuan et al., 2022 [33] found an effective deep learning method based on a bidirectional long short term memory neural network (Hochreiter and Schmidhuber 1997 [34]) for detecting Newcastle disease Virus. They extracted complex vocalizations from a specific pathogen-free chicken (SPF) poultry and used them to develop a predictive model to distinguish sick vocalizations from healthy vocalizations.
Brucellosis is an infectious disease caused by brucellae bacteria that infects the human body and causes symptoms of fatigue, muscle aches, and joint pains. Convolution-based LSTM recurrent neural networks were employed by Shen et al., 2022 [35] for epidemic disease prediction using animal stock, food supply information, population, and GDP data. Based on this model, they devised a decision support system for controlling Brucella.
The use of neural network models is widespread; however, they are not suitable when the problem does not demand a complex solution. In Arning et al., 2021 [36], popular neural networks such as the recurrent neural network and the long short-term memory network have been used along with ensemble models to determine the source of transmission of Campylobacteriosis from a variety of food sources such as chicken, cattle, sheep, and wild birds. The dataset included the whole genome sequences (WGS) and the core genome MLST (cgMLST) of bacteria sampled from infected individuals, contaminated chickens, cattle, sheep, and wild birds. Allelic profiles from MLST, cgMLST, and WGS were encoded as k-mers using DSK (Rizk et al., 2013 [37]). They used the dataset to determine which machine learning algorithm is the most effective for detecting the source of infection. According to their results, tree-based ensemble methods (random forest and xgboost) are more effective at predicting the source of human Campylobacteriosis with this sample set than more complex neural network models. This highlights the importance of selecting the appropriate algorithm.
Medical management has seen the benefits of deep learning in the prediction of morbidity. Song et al., 2017 [38] developed a deep denoising autoencoder (Liou et al., 2014 [39]) to discover the relationship between gastrointestinal diseases and the contaminants. Data were collected from four counties in China that included meat, aquatic foods, and eggs. This study used a denoising auto-encoder with two phases: an encoder that constructs a hidden representation from a noisy input and a decoder that reconstructs the original input in a clean, “repaired” form. A supervised neural network model is also incorporated to predict the presence of contaminants in food. Their analysis showed that deep learning approaches are effective for building predictive models to detect diseases. Their neural network architectures were found to be effective in finding the source of Campylobacteriosis, a foodborne illness caused by Campylobacter jejuni.

4.2. Risk Factors for Pathogen Prevalence

The use of traditional machine learning methods has been instrumental in investigating the relationship between zoonotic diseases and the factors that affect the incidence and distribution of these diseases. Pang et al., 2017 [40] used logistic regression (LR) and random forest (RF) to analyze the association between meteorological factors and Listeria spp. in a mixed produce and diary farm. This study collected fresh cow feces from a dairy barn, cow feed, cow drinking water, and bird feces, and water from the lagoon. A number of meteorological factors were taken into consideration in the analysis, including temperature, precipitation, and wind speed. In both LR and RF models, wind speed and precipitation were found to play a significant role in the transmission of Listeria spp. These experiments demonstrate that both models have good predictive capabilities in analyzing risk factors, such as weather.
There is evidence that models based on logistic regression are effective for understanding the role of host species in the maintenance and transmission of multihost zoonotic pathogens. González-Barrio et al., 2015 [41] examined the role of European rabbits in the Iberian region as a reservoir for Coxiella burnetii using logistic regression models. Serum, spleen, uterus, mammary glands, as well as vaginal, sex, weight, and presence/absence of ruminants and uterus swabs are among the variables examined. The results show that rabbit density plays a major role in the ecology of C. burnetii, and that the higher risk of exposure observed during the summer may be the result of increased indirect interactions with C. burnetii shed by coexisting ruminants. A subsequent study by González-Barrio et al. 2015 [42] validated the use of multivariate logistic regression models in finding the potential risk factors of C. burnetii based on red deer exposure to environmental, host, and management factors.
Due to its ability to determine the importance of features using model coefficients, logistic regression is a popular choice for studies involving the impact of livestock farming practices on zoonotic disease transmission. Using samples collected from 100 household clusters with cattle in close proximity to humans, Lupindu et al., 2015 [43] studied the transmission of fecal microorganisms between cattle, humans, water, and soil inside and outside livestock farms, as well as the transfer from livestock farms to the neighborhood. Ampicillin- and tetracycline-resistant Escherichia coli isolates were detected using logistic regression analysis from cow feces, human stool, soil, and water samples. Using such modeling provides a framework for improving livestock management practices to reduce fecal pollution and the spread of pathogens from livestock manure to humans and the environment. E. coli infections associated with pathogens such as Campylobacter, Salmonella, and Listeria were studied by Xu et al., 2022 [44] in pastured poultry farms. For fecal, soil, ceca, and whole carcass rinse processing and chilling samples, a logistic regression model was developed. In their analysis, the amount of E. coli in the soil was significantly associated with the predicted presence of Salmonella, and the percentage of Campylobacter in feces and ceca decreased as E. coli concentration increased.
Yoo et al., 2022 [45] used a Bayesian logistic regression and an extreme gradient boosting model to predict the risk of Avian influenza virus occurrence at poultry farms using 12 spatial variables. According to their study, domestic duck farms and the minimum distance to live bird markets were the leading risk factors for outbreaks.
A classification tree may also be used to improve an understanding of interconnected and high-risk groups and their likelihood of contracting disease. Romero et al., 2020 [46] evaluated potential herd-level predictors of bovine tuberculosis using decision trees and multivariable logistic regression in high, edge, and low-risk areas in England. This dataset contained information regarding demographic characteristics of the herd, the history of bTB, cattle movements, badger density, and land class. Using their models, they were able to analyze how bTB risk factors were interrelated to determine the likelihood of an incident occurring in high-risk groups of herds. In addition, Romero et al., 2021 [47] conducted studies using random forest and LASSO regression models on the same dataset to identify high-risk farms and develop a targeted disease control strategy.
Even though our survey revealed relatively little use of Bayesian analyses, our research has found that Britten et al., 2021 [48] explicitly quantified the advantages of Bayesian hierarchical modeling when assisting researchers in selecting the most appropriate methodology to use when collecting heterogeneous environmental data sets. Using Bayesian models with Laplace approximations and stochastic partial differential equation, Tumusiime et al., 2022 [49] estimated the risk of Rift Valley fever based on animal level factors and meteorological factors. Rift Valley fever is a severe viral hemorrhagic fever caused by RVF virus (genus Phlebovirus, order Bunyavirales). Their analyses were based on posterior distributions of model parameters, which enabled them to identify spatial autocorrelation in the data. Their findings concluded that low precipitation, seasonality, haplic planosols, and low cattle density were highly associated with the risk of mortality.
A random forest-based predictive model was developed by Hwang et al., 2020 [50] to quantify the relationship between meteorological factors and the presence of Salmonella on pastured poultry farms. According to their analysis, the soil model identified humidity as the most significant meteorological variable associated with Salmonella prevalence, while the feces model identified high wind gust speed and average temperature as the most significant. In a similar way, Xu et al., 2021 [51] developed a random forest predictive model that used farm practices and processing variables to identify variables that can reduce the prevalence of Campylobacter on pastured poultry farms.
In recent years, ensemble models have shown success in predicting pathogen presence and evaluating pathogen risk based on a variety of data sets, such as genetic data and remote sensing environmental data. Combining different models to reach an agreeable decision makes ensemble approaches effective when developing predictive models based on nonlinear, imbalanced data. Tsetse flies (family Glossinidae and genus Glossina), which are obligate parasites and biological vectors of trypanosomes, cause human sleeping sickness and animal trypanosomiasis. Bishop et al., 2021 [52] used a random forest regression algorithm to construct a model for learning about Glossina pallidipes habitat suitability across Kenya and northern Tanzania based on genetic data and remotely sensed environmental data. Based on the research, they concluded that vector control will be most successful in the Lake Victoria Basin, and G. pallidipes should be managed as a single unit in most of eastern Kenya.
Yoo et al., 2021 [53] employed Random Forest, Gradient Boosting Machine (GBM), and eXtreme Gradient Boosting models to predict avian influenza using environmental, on-farm biosecurity, meteorological, vehicle movement, and wild bird surveillance data. Eight to ten of the 19 premises infected were predicted to be at high risk in advance by these models. Schreuder et al., 2022 [54] predicted spatial patterns associated with HPAI outbreak risk on Dutch poultry farms based on wild bird density and land cover data. Random forest prediction evaluation identified 20 best explaining predictors, of which 17 are water-associated bird species, 2 are birds of prey, and 1 is agricultural cover.
An ensemble approach identified influential factors for prevalence of Bacillus anthracis, a soil-borne spore-producing neglected bacterium, is responsible for anthrax, an archetypal animal disease. With the use of artificial neural networks, flexible discriminant analysis, general linear models, general boosted models, classification tree analysis, multiple adaptive regression splines, random forests, and maximum entropy approaches, Assefa et al., 2020 [55] developed a prediction analysis for anthrax using bioclimatic variables, soil characteristic variables, and livestock density variables. Based on their evaluation, the model was influenced by a variety of precipitation factors and animal density factors.
Creutzfeldt–Jakob disease (CJD), also called mad cow disease, is a fatal neurodegenerative disease resulting in lesions, cell damage, gliosis, and neuron loss. A popular variant of CJD is caused by consumption of cattle products contaminated with bovine spongiform encephalopathy (BSE). With the use of elastic net regression, recurrent neural networks, and random forests, Bhakta and Byrne 2021 [56] learned the predictive causes of the CJD epidemic in the United States. Their results indicated that beer consumption, obesity, and tobacco use are strongly associated with CJD.
Boosting-based ensemble approaches combine weak learners sequentially to improve observations collectively. As a well-known feature selection approach, it is widely used to find features that have a significant impact on the prediction process. It enables the identification of relevant factors involved in the presence of zoonotic pathogens. Prediction of Aedes mosquitoes (A. aegypti and A. albopictus), which belong to the Flaviviridae virus family and are the primary vector of the Zika virus, utilized boosted ensemble approach. Using an ecological network that links flaviviruses and their mosquito vectors, Evans et al., 2017 [57] developed a predictive model using gradient boosted regression tree to identify associations between vector species and the Zika virus. According to their model, 35 species, including Culex quinquefasciatus and Cx. pipiens, could transmit the disease. Based on gradient boosted tree analysis of wild bird samples, Walsh et al., 2019 [58] predict avian influenza viruses. Analysis of sample features, including bird age, sex, bird type, geographic location, and rRT-PCR results, revealed that geographic location and rRT-PCR results are predictive factors.
COVID-19 is caused by severe acute respiratory syndrome coronavirus2 (SARS-CoV-2), a coronavirus. While the origin of COVID-19 (SARS-CoV-2) in humans is unknown, using feature vectors derived from spike protein sequences using a position weight matrix (PWM), Ali et al., 2022 [59] assessed the host specificity of coronaviruses in birds, bats, camels, swine, humans, and weasels using boosted regression algorithms, Fischhoff et al., 2021 [60] combined ecological traits with biological traits to predict the zoonotic potential of SARS-CoV-2 in greater than 5000 mammals. Based on their results, 540 species belonging to 13 orders were predicted to have a high zoonotic potential for Coronavirus.
Based on sequencing of 511 whole genome sequences and 650 spike protein sequences, Brierley and Fowler 2021 [61] developed a random forest model to predict the host animal for SARS-CoV-2. According to their analysis, human sequences of SARS-CoV-2 were predicted to have been acquired from bats (suborder Yinpterochiroptera), supporting bats as the probable source of the current pandemic.
Using machine learning algorithms in combination with explainable artificial intelligence enhances the ability of humans to understand the reasoning behind the decisions made by the AI. Specifically, it enables researchers to explain factors that contributed to a particular prediction. Recently, there has been growing interest in using explanatory tools to investigate the relative importance of biological and ecological factors in pathogen presence. Ndraha et al., 2021 [62] examined the effect of sea surface temperature, precipitation, wind speed, wind gust, salinity, and acidity (pH) on Vibrio parahaemolyticus using machine learning and explanatory tools. An extreme gradient boosting machine learning algorithm was used to build a prediction model for Vibrio parahaemolyticus. According to the results obtained, XGBoost is capable of modeling the pathogen in oysters and seawater, but not in sediments. As part of this study, partial dependence plots (PDPs) were generated by SHapley Additive exPlanations (SHAP) (Lundberg and Lee 2017 [63]) methods to determine the relationship between environmental variables and the level of V. parahaemolyticus. A SHAP dependency plot demonstrates how a single feature impacts the model’s output. According to the relative importance variable analysis, variations in sea surface temperature influence the concentration of V. parahaemolyticus in oysters.
Another study (Mollentze et al., 2021 [64]) determined which animal viruses are capable of infecting humans; molecular sequencing data was used to rank pathogens according to their zoonotic potential employing ensemble methods and SHAP plots. Bergner et al., 2021 [65] collected metagenomic sequences of feces and saliva from common vampire bats and evaluated their zoonotic potential using XGBoost. An analysis of variation in feature importance was performed using SHAP, and gradient boosted machines (GBMs) trained on virus taxonomy were used to rank phylogenetic proximity to human-infecting viruses. Based on their findings, 58 viruses were detected as having a higher zoonotic potential, which includes rabies virus, Hepeviridae, Coronaviridae, Reoviridae, Astroviridae, and Picornaviridae.
West Nile virus is an emerging arthropod-borne virus that causes West Nile fever, which is commonly transmitted by mosquitoes. An analysis of climate factors and regional data was conducted by Wieland et al., 2021 [66] for predicting the distribution of native mosquito species as vectors of the West Nile virus. An XGboost machine learning algorithm was used for the evaluation model, and the SHAP library was used for the identification of explanatory variables. They concluded that regional characteristics play a larger role in the habitat of native mosquitoes than climatic conditions.
Selection of features that influence antimicrobial resistance based on majority voting from diverse AI algorithms is a reliable method for predicting risk factors. Two traditional machine learning approaches (Random Forest and XGBoost) as well as three deep learning approaches (Multilayer Perceptron, Generative Adversarial Network (Mirza and Osin- dero 2014 [67]), and Auto-Encoder Liou et al., 2014 [39]) were used in combination with SHAP by Ayoola et al., 2022 [68] to identify critical farm management practices and environmental variables that contribute to multidrug resistance in poultry pathogens in broiler production systems representing background resistance to Salmonella, Listeria, and Campylobacter. A number of recommendations were made in the paper based on the findings in order to mitigate potential multidrug resistance and the prevalence of Salmonella and Listeria in pastured poultry.
A Poisson point process is another predictive model that assumes independence between samples to be effective. Using wildlife-livestock interfaces, Walsh et al., 2021 [69] examined the landscape epidemiology of Japanese encephalitis virus (JEV) outbreaks in India. JEV is a zoonotic disease spread by mosquitoes, particularly Culex tritaeniorhynchus. Using a poisson point process, outbreak risk was modeled, which indicated that habitat suitability of ardeid birds and pig density play prominent roles in outbreaks.
Utilizing a maximum entropy machine learning model, Walsh et al., 2017 [70] examined the ecological role of wildlife reservoirs and surface water features in the increasing risk of RVF outbreaks. RVF outbreaks were correlated with wetlands, Bovidae species richness, and sheep density in their validation study, demonstrating the effectiveness of the maximum entropy machine learning model in learning risk factors. In another study, MaxEnt model is used to determine the spatial distribution of exposure, identify environmental parameters, and identified high exposure risk areas for sheep and goats to C. burnetii in central Greece Valiakos et al., 2017 [71]. Based on the results of this study, there is a probability of exposure to C burnetii of greater than 70% in low altitude zones, irrigated and cultivated agricultural areas, and pastures.
Walsh et al., 2019 [72] evaluated anthrax’s geographical suitability in India using a maximum entropy (Maxent) machine learning approach that considered both biotic and abiotic factors. There was a significant impact of water–soil balance, soil chemistry, and historic forest loss on the model, and the elephant-livestock interface played a crucial role in the cycle of anthrax.
Using a long short-term memory model, Tu et al., 2021 [73] assessed the relationship between meteorological factors and population density of Culex tritaeniorhynchus. Their analysis showed that mean air temperature and relative humidity had a positive effect on outbreak risk and intensity, suggesting the potential application of neural networks in identifying the factors that influence zoonotic diseases.
A summary of contact-based zoonoses studies, the artificial intelligence model that was used, its application, etiology, and references can be found in Table 1.

5. Food-Borne Pathogens

Based on our search, we have observed mainly two types of food-borne zoonotic disease investigations. Based on the surrounding factors, the first approach attempts to predict the presence of food-borne pathogens, while the second case analyzes the dynamics of microbial populations in food.
Numerous factors contribute to the presence of bacteria in food, such as the initial level of contamination, level of nutrients, temperature, pH, activity of the water, and other microorganisms (https://pmp.errc.ars.usda.gov/ (accessed date: 18 September 2022)). It is, therefore, possible to adjust these factors to both prevent food spoilage and ensure food safety. Our literature search did not find any studies that examined the quality of the nutrient medium, so such studies are not included in this review. The growth of microorganisms in foods goes through different phases: the lag phase in which microorganisms adjust to their surroundings, the log or exponential phase in which the population of microorganisms grows exponentially over time, the stationary phase in which the population stabilizes, and the death phase.
Predictive microbiology studies for foodborne pathogens include the estimation of changes in microbial numbers within a production chain under a variety of processing and environmental conditions (McMeekin et al., 2007 [74]). The objective is to determine the number of microorganisms in food at any given point in time to determine the minimum acceptable quality, to determine if the food is safe for consumption, or what treatment can be applied to inactivate the microorganisms. Since microbiological laboratory testing is a time-consuming process, and is not suitable for making quick decisions in real time, predictive microbiology is beneficial for controlling risk and ensuring food safety.
This section presents predictive models and case studies for pathogen prediction (Section 5.1) and bacterial growth dynamics (Section 5.2).

5.1. Pathogen Prediction

The purpose of this section is to present case studies that focus on predicting pathogens from food sources. The results of such studies provide valuable guidance for developing a food safety risk management strategy.
Franssen et al., 2017 [75] utilized quantitative microbiological risk assessment (QMRA) methods in their paper to assess the risk of human Trichinellosis associated with the consumption of meat from infected pigs, wild boars, and pigs raised in uncontrolled housing. In order to assess the risk model, Trichinella muscle larvae, edible muscle types, heat inactivation by cooking and portion sizes, and sensitivity at carcass control are taken into account. To estimate the number of larvae in an animal’s diaphragm, a negative binomial distribution is used with maximum likelihood parameter estimation. The beta binomial distribution is used to model the variability associated with Trichinella muscle larvae detection. According to the analysis, testing for Trichinella in pigs that are kept under controlled housing does not add any value to the protection of human health.
Given the vast array of artificial intelligence techniques available today, choosing the right option for detecting the presence of bacteria can be quite challenging. To detect bacteria such as Escherichia Coli and Staphylococcus Aureus in raw meat (beef), Amado et al., 2019 [76] employed a variety of machine learning algorithms (K-Nearest Neighbors, Support Vector Machine, Random Forest, Naive Bayes Classifier, and Artificial Neural Network). The dataset inputs were derived from the emitted gases of meat. They demonstrated that the Random Forest predictive model achieved the highest level of accuracy (more than 95%) in this classification task, suggesting that ensemble-based models, which combine multiple diverse models to generate a solution, are more effective than single solutions. By comparing the bagging and boosting ensemble techniques, further insight can be gained into the selection of ensemble-based prediction models for the detection of pathogens in food.
Using the core genome multi-locus sequence typing data of Listeria monocytogenes isolates, Tanui et al., 2022 [77] compared four popular machine learning approaches (three ensembles) to attribute the source of human Listeriosis. The isolates from dairy, fruits, leafy greens, meat, poultry, seafood, and vegetables were used in the dataset. The authors employed supervised classification algorithms, including the random forest algorithm (bagging approach), the support vector machine radial kernel algorithm, the stochastic gradient boosting algorithm (boosting approach), and the logistic boost algorithm (boosting approach) in their study. Their analysis found that 17.5% of human clinical cases were caused by dairy products, 32.5% by fruits, 14.3% by leafy greens, 9.7% by meat, 4.6% by poultry, and 18.8% by vegetables. Furthermore, they demonstrated that genomic data combined with machine learning-based models can greatly enhance the ability to track L. monocytogenes. Upon analysis, the authors found that the performance of ensemble models did not differ significantly, indicating that any ensemble method would be sufficient to predict pathogens where the data is not highly complex.

5.2. Bacterial Growth Dynamics

In this section, we present the case studies for bacterial growth dynamics in foods, the dataset, and a brief conclusion to assist researchers in designing food safety models.
Salmonella enteritidis outbreaks that were reported in eleven U.S. states in October, 2018 listed shell eggs as a possible contributing factor (Centers for Disease Control and Prevention 2018 [78]). Based on Monte Carlo simulation, Park et al., 2020 [79] developed a predictive model for Salmonella spp. and S. aureus growth in fresh eggs under isothermal and non-isothermal conditions. However, it has been estimated that there is no likelihood of infection from ready-to-eat egg products due to Salmonella spp. or S. aureus. Monte Carlo simulation is ideally suited for estimating stochastic and deterministic problems, although poor parameters and constraints could compromise the model’s performance.
In a case study by Dourou et al., 2021 [80], machine learning techniques combined with features derived from Fourier-transform infrared spectroscopy (FTIR) to demonstrate the feasibility of recording the microbiota on foods under dynamic storage conditions. This study focused on Salmonella’s ability to survive and proliferate during extended refrigerated storage. They combined tree-based ensemble methods with support vector regression (SVR) to estimate the microbial populations in chicken samples. A combination of Salmonella-inoculated and non-inoculated chicken liver samples was used for food quality evaluation. The tree-based ensemble approach is used to extract the critical features that best represent the samples, and support vector regression model with radial kernel function is used to estimate Salmonella levels. Overall, the results indicated that Salmonella was capable of both surviving and growing at refrigeration temperatures.
In polynomial regression models, nth degree polynomial transformations of variables are used to approximate the relationship, making it suitable for a wide range of functions. To model the time to detect Staphylococcal enterotoxins produced by Staphylococcus aureus in cooked chicken products, Hu et al., 2018 [81] proposed a growth predictive model using linear polynomial regression analysis. Assessing the time required to reach the pathogen detection limit could provide valuable insight into food preservation and the quantitative assessment of risk. In this study, the inoculating concentration of S. aureus and the incubation temperature were selected as environmental variables. The high correlation coefficient of the regression equation indicated the validity of their methodology. Their study concluded that temperature is the most significant environmental factor that influences the detection of S. enterotoxins.
Bulat et al., 2020 [82] measured the differences between microbial load and bacterial shell life of A. hydrophila with respect to storage of sardines at different temperatures, using a one-way analysis of variance (ANOVA) to determine differences in daily measures. Sardines’ gills, skin, meat, and intestines were analyzed using statistical prediction models to estimate their shelf-life and quality. According to their findings, sardines stored in the refrigerator had a longer shelf life than those stored at the temperature used for seafood processing. The sardines stored at the temperature used for seafood processing, however, contained higher microbial loads than those stored in the refrigerator.
Summary of food-borne zoonotic pathogen-based studies, research focus, zoonotic pathogen, data source, and references are given in the Table 2.

6. Discussion

Models based on artificial intelligence are especially useful for predicting a wide range of outcomes of interest based on practically any number of parameters, as long as sufficient observations are available to construct such models.
Machine learning algorithms such as logistic regression, support vector machines, gradient boosting algorithms, and random forest models are commonly used to predict pathogens and their associated risks. In our literature review, we found studies using these methods, along with linear regression, Naive Bayes, and K-Nearest Neighbors, to identify popular food attributions to diseases. Several popular food choices, such as chicken, beef, pork, dairy products, and seafood, have been found to pose a potential risk factor for various zoonoses based on prediction models. The following are some of the commonly used models, along with their advantages.
  • Support Vector Machine (SVM): SVM is capable of understanding both the dynamics of population growth for foodborne diseases as well as the prediction of disease and pathogens. It is a memory-efficient algorithm that performs well when there is a clear margin of separation between the samples. It is also capable of handling high-dimensional data. The SVM, however, is not suited to handling large or highly noisy datasets.
  • Logistic Regression: Several studies have demonstrated the effectiveness of logistic regression as a method for analyzing the influencing factors of zoonotic diseases and those that affect their incidence and distribution. The logistic regression method is suitable for both binary classification as well as multiclassification. In general, it is effective when the data can be separated linearly and the coefficients of the model can be used to determine the importance of the features in the prediction. However, logistic regression does not provide a great deal of insight into nonlinear or complex relationships.
  • Random Forest (RF): Most studies that employed RF demonstrated that it outperformed other traditional machine learning models. The method is robust to outliers, non-linear data, and high dimensional data. In addition, it is capable of handling unbalanced data and exhibits low bias and variance.
  • eXtreme Gradient Boosting (XGBoost): Similar to other ensemble approaches, XGBoost is capable of handling outliers, imbalanced data, high dimensional data, and large datasets. The model is less susceptible to overfitting. Research studies have demonstrated that XGBoost paired with SHAP, an explainable AI framework, is an effective methodology for identifying the factors that contribute to the presence of pathogens.
The use of neural networks (deep learning) has been found to be effective for detecting the presence of animal diseases and pathogens in our survey. Multi-layer neural network and long short term memory models have been found to be effective in modeling zoonotic pathogens.
  • Artificial Neural Network: The ability to model complex, noisy, high dimensional input enables neural network models to effectively use vocal features to distinguish healthy chickens from unhealthy chickens. The use of sound or images in such studies may provide new avenues for the control of diseases. On the other hand, we have found that neural network models are not as effective as ensemble approaches when no complex algorithm is required to learn the data.
  • Long Short Term Memory network (LSTM): LSTM can be used to address ordinal or temporal problems. LSTM’s distinct characteristic is its ability to draw on information from previous inputs to influence current inputs and outputs. The results of our survey indicate that LSTM can be effectively used for datasets with temporal properties such as food supply, population, and GDP statistics. In situations where the data necessitates the study of spatial or temporal associations, LSTM or RNN can be selected as the algorithm of choice.
A quantitative representation of predictive algorithms in the literature is presented in Figure 2.

7. Conclusions

The aim of this literature survey is to synthesize and analyze machine learning and deep learning approaches applied to study zoonotic diseases. Our review findings will enable researchers to understand predictive models to identify the risk factors for transmission to develop mitigation strategies. The survey revealed that traditional machine learning models are widely used in this field. According to our findings, support vector machines are flexible enough to learn population growth dynamics and predict the occurrence of diseases. With noisy, complex, and varied data, ensemble approaches such as random forest and xgboost have demonstrated excellent performance. However, deep learning methods have tremendous potential for identifying appropriate protective models. Application of deep learning techniques, such as segmentation and classification of images, can enhance research into diagnosing irregularities caused by infections. While the resources in this field are limited, transfer learning (Jeremy et al., 2005 [83]), where we reuse a previously trained model as the basis for training a new model, or zero-shot-based learning (Chang et al. 2008 [84]) that classifies data based on very few or even no labeled examples, have the potential to make learning more efficient and contribute to the development of diagnostic and preventive strategies to limit the spread of zoonotic diseases.

Author Contributions

Conceptualization, M.R. and B.N.; methodology, N.P.; investigation, N.P.; resources, M.R. and B.N.; writing—original draft preparation, N.P.; writing—review and editing, B.N., N.P. and M.R.; supervision, M.R. and B.N.; project administration, B.N. and M.R.; funding acquisition, B.N. and M.R. All authors have read and agreed to the published version of the manuscript.

Funding

This work was supported by the Agricultural Research Service, USDA NACA project entitled “Advancing Agricultural Research through High Performance Computing” #58-0200-0-002.

Institutional Review Board Statement

Not applicable.

Informed Consent Statement

Not applicable.

Data Availability Statement

Not applicable.

Conflicts of Interest

The authors declare no conflict of interest.

References

  1. Carlson, C.J.; Farrell, M.J.; Grange, Z.; Han, B.A.; Mollentze, N.; Phelan, A.L.; Rasmussen, A.L.; Albery, G.F.; Bett, B.; Brett-Major, D.M.; et al. The future of zoonotic risk prediction. Philos. Trans. R. Soc. B 2021, 376, 20200358. [Google Scholar] [CrossRef] [PubMed]
  2. Cox, D.R. The regression analysis of binary sequences. J. R. Stat. Soc. Ser. B Methodol. 1958, 20, 215–232. [Google Scholar] [CrossRef]
  3. Ho, T.K. Random decision forests. In Proceedings of the 3rd International Conference on Document Analysis and Recognition, Montreal, QC, Canada, 14–16 August 1995; Volume 1, pp. 278–282. [Google Scholar]
  4. Breiman, L. Random forests. Mach. Learn. 2001, 45, 5–32. [Google Scholar] [CrossRef]
  5. Ntampaka, P.; Niragire, F.; Nyaga, P.N.; Habarugira, G. Canine gastrointestinal nematodiases and associated risk factors in Kigali city, Rwanda. J. Parasitol. Res. 2021, 2021, 9956256. [Google Scholar] [CrossRef]
  6. Kiambi, S.G.; Fèvre, E.M.; Omolo, J.; Oundo, J.; De Glanville, W.A. Risk factors for acute human brucellosis in Ijara, north-eastern Kenya. PLoS Negl. Trop. Dis. 2020, 14, e0008108. [Google Scholar] [CrossRef] [PubMed]
  7. Acharya, B.K.; Chen, W.; Ruan, Z.; Pant, G.P.; Yang, Y.; Shah, L.P.; Cao, C.; Xu, Z.; Dhimal, M.; Lin, H. Mapping environmental suitability of scrub typhus in Nepal using MaxEnt and random forest models. Int. J. Environ. Res. Public Health 2019, 16, 4845. [Google Scholar] [CrossRef]
  8. Boleratz, B.L.; Oscar, T.P. Use of ComBase data to develop an artificial neural network model for nonthermal inactivation of Campylobacter jejuni in milk and beef and evaluation of model performance and data completeness using the acceptable prediction zones method. J. Food Saf. 2022, 42, e12983. [Google Scholar] [CrossRef]
  9. ZareBidaki, M.; Allahyari, E.; Zeinali, T.; Asgharzadeh, M. Occurrence and risk factors of brucellosis among domestic animals: An artificial neural network approach. Trop. Anim. Health Prod. 2022, 54, 62. [Google Scholar] [CrossRef]
  10. Denholm, S.; Brand, W.; Mitchell, A.; Wells, A.; Krzyzelewski, T.; Smith, S.; Wall, E.; Coffey, M. Predicting bovine tuberculosis status of dairy cows from mid-infrared spectral data of milk using deep learning. J. Dairy Sci. 2020, 103, 9355–9367. [Google Scholar] [CrossRef]
  11. Buccioni, F.; Purgatorio, C.; Maggio, F.; Garzoli, S.; Rossi, C.; Valbonetti, L.; Paparella, A.; Serio, A. Unraveling the Antimicrobial Effectiveness of Coridothymus capitatus Hydrolate against Listeria monocytogenes in Environmental Conditions Encountered in Foods: An In Vitro Study. Microorganisms 2022, 10, 920. [Google Scholar] [CrossRef]
  12. Seekatz, A.M.; Panda, A.; Rasko, D.A.; Toapanta, F.R.; Eloe-Fadrosh, E.A.; Khan, A.Q.; Liu, Z.; Shipley, S.T.; DeTolla, L.J.; Sztein, M.B.; et al. Differential response of the cynomolgus macaque gut microbiota to Shigella infection. PLoS ONE 2013, 8, e64212. [Google Scholar] [CrossRef] [PubMed]
  13. Schiraldi, A.; Foschino, R. A phenomenological model to infer the microbial growth: A case study for psychrotrophic pathogenic bacteria. J. Appl. Microbiol. 2022, 132, 642–653. [Google Scholar] [CrossRef] [PubMed]
  14. Adamczewski, K.; Staniewski, B.; Kowalik, J. The applicability of predictive microbiology tools for analysing Listeria monocytogenes contamination in butter produced by the traditional batch churning method. Int. Dairy J. 2022, 132, 105400. [Google Scholar] [CrossRef]
  15. Herron, C. Predicting the Food Safety and Shelf-Life Implications of Less-Than-Truckload (LTL) Temperature Abuse (TA) on Boneless Skinless Chicken Breast Fillets. Master’s Thesis, Auburn University, Auburn, AL, USA, 2022. [Google Scholar]
  16. UNEP and ILRI Report. Preventing the Next Pandemic—Zoonotic Diseases and How to Break the Chain of Transmission. 2020. Available online: https://www.unep.org/news-and-stories/statements/preventing-next-pandemic-zoonotic-diseases-and-how-break-chain?_ga=2.70220884.593849062.1660620561-341674026.1659287590 (accessed on 18 September 2022).
  17. Dewey-Mattia, D.; Manikonda, K.; Hall, A.J.; Wise, M.E.; Crowe, S.J. Surveillance for foodborne disease outbreaks—United States, 2009–2015. MMWR Surveill. Summ. 2018, 67, 1. [Google Scholar] [CrossRef] [PubMed]
  18. Cortes, C.; Vapnik, V. Support-vector networks. Mach. Learn. 1995, 20, 273–297. [Google Scholar] [CrossRef]
  19. Chinnathambi, R.A.; Marquette, A.; Clark, T.; Johnson, A.; Selvaraj, D.F.; Vaughan, J.; Hanson, T.; Hanson, S.; Ranganathan, P.; Kaabouch, N. Visualizing and predicting culex tarsalis trapcounts for West Nile Virus (WNV) disease incidence using machine learning models. In Proceedings of the 2020 IEEE International Conference on Electro Information Technology (EIT), Chicago, IL, USA, 31 July–1 August 2020; pp. 581–587. [Google Scholar]
  20. Kirjušina, M.; Bakasejevs, E.; Pezzotti, P.; Pozio, E. Trichinella britovi biomass in naturally infected pine martens (Martes martes) of Latvia. Vet. Parasitol. 2016, 231, 110–114. [Google Scholar] [CrossRef]
  21. Mencía-Ares, O.; Argüello, H.; Puente, H.; Gómez-García, M.; Álvarez-Ordóñez, A.; Manzanilla, E.G.; Carvajal, A.; Rubio, P. Effect of antimicrobial use and production system on Campylobacter spp., Staphylococcus spp. and Salmonella spp. resistance in Spanish swine: A cross-sectional study. Zoonoses Public Health 2021, 68, 54–66. [Google Scholar] [CrossRef]
  22. Qekwana, D.N.; Oguttu, J.W.; Sithole, F.; Odoi, A. Patterns and predictors of antimicrobial resistance among Staphylococcus spp. from canine clinical cases presented at a veterinary academic hospital in South Africa. BMC Vet. Res. 2017, 13, 116. [Google Scholar] [CrossRef]
  23. Conner, J.G.; Smith, J.; Erol, E.; Locke, S.; Phillips, E.; Carter, C.N.; Odoi, A. Temporal trends and predictors of antimicrobial resistance among Staphylococcus spp. isolated from canine specimens submitted to a diagnostic laboratory. PLoS ONE 2018, 13, e0200719. [Google Scholar] [CrossRef]
  24. Eberhard, F.E.; Klimpel, S.; Guarneri, A.A.; Tobias, N.J. Metabolites as predictive biomarkers for Trypanosoma cruzi exposure in triatomine bugs. Comput. Struct. Biotechnol. J. 2021, 19, 3051–3057. [Google Scholar] [CrossRef]
  25. Friedman, J.H. Greedy function approximation: A gradient boosting machine. Ann. Stat. 2001, 25, 1189–1232. [Google Scholar] [CrossRef]
  26. Price, A.; Okumura, A.; Haddock, E.; Feldmann, F.; Meade-White, K.; Sharma, P.; Artami, M.; Lipkin, W.I.; Threadgill, D.W.; Feldmann, H.; et al. Transcriptional correlates of tolerance and lethality in mice predict Ebola virus disease patient outcomes. Cell Rep. 2020, 30, 1702–1713. [Google Scholar] [CrossRef] [PubMed]
  27. Ak, Ç.; Ergönül, Ö.; Gönen, M. A prospective prediction tool for understanding Crimean–Congo haemorrhagic fever dynamics in Turkey. Clin. Microbiol. Infect. 2020, 26, 123.e1–123.e7. [Google Scholar] [CrossRef] [PubMed]
  28. Ak, Ç.; Ergönül, Ö.; Şencan, İ.; Torunoğlu, M.A.; Gönen, M. Spatiotemporal prediction of infectious diseases using structured Gaussian processes with application to Crimean–Congo hemorrhagic fever. PLoS Negl. Trop. Dis. 2018, 12, e0006737. [Google Scholar] [CrossRef]
  29. Sadeghi, M.; Banakar, A.; Khazaee, M.; Soleimani, M. An intelligent procedure for the detection and classification of chickens infected by clostridium perfringens based on their vocalization. Braz. J. Poult. Sci. 2015, 17, 537–544. [Google Scholar] [CrossRef]
  30. McCulloch, W.S.; Pitts, W. A logical calculus of the ideas immanent in nervous activity. Bull. Math. Biophys. 1943, 5, 115–133. [Google Scholar] [CrossRef]
  31. Chenar, S.S.; Deng, Z. Hybrid modeling and prediction of oyster norovirus outbreaks. J. Water Health 2021, 19, 254–266. [Google Scholar] [CrossRef]
  32. Yoon, H.; Jang, A.R.; Jung, C.; Ko, H.; Lee, K.N.; Lee, E. Risk Assessment Program of Highly Pathogenic Avian Influenza with Deep Learning Algorithm. Osong Public Health Res. Perspect. 2020, 11, 239. [Google Scholar] [CrossRef]
  33. Cuan, K.; Zhang, T.; Li, Z.; Huang, J.; Ding, Y.; Fang, C. Automatic Newcastle disease detection using sound technology and deep learning method. Comput. Electron. Agric. 2022, 194, 106740. [Google Scholar] [CrossRef]
  34. Hochreiter, S.; Schmidhuber, J. Long short-term memory. Neural Comput. 1997, 9, 1735–1780. [Google Scholar] [CrossRef]
  35. Shen, L.; Jiang, C.; Sun, M.; Qiu, X.; Qian, J.; Song, S.; Hu, Q.; Yelixiati, H.; Liu, K. Predicting the Spatial-Temporal Distribution of Human Brucellosis in Europe Based on Convolutional Long Short-Term Memory Network. Can. J. Infect. Dis. Med. Microbiol. 2022, 2022, 7658880. [Google Scholar] [CrossRef] [PubMed]
  36. Arning, N.; Sheppard, S.K.; Bayliss, S.; Clifton, D.A.; Wilson, D.J. Machine learning to predict the source of campylobacteriosis using whole genome data. PLoS Genet. 2021, 17, e1009436. [Google Scholar] [CrossRef] [PubMed]
  37. Rizk, G.; Lavenier, D.; Chikhi, R. DSK: K-mer counting with very low memory usage. Bioinformatics 2013, 29, 652–653. [Google Scholar] [CrossRef] [PubMed]
  38. Song, Q.; Zheng, Y.J.; Xue, Y.; Sheng, W.G.; Zhao, M.R. An evolutionary deep neural network for predicting morbidity of gastrointestinal infections by food contamination. Neurocomputing 2017, 226, 16–22. [Google Scholar] [CrossRef]
  39. Liou, C.Y.; Cheng, W.C.; Liou, J.W.; Liou, D.R. Autoencoder for words. Neurocomputing 2014, 139, 84–96. [Google Scholar] [CrossRef]
  40. Pang, H.; McEgan, R.; Mishra, A.; Micallef, S.A.; Pradhan, A.K. Identifying and modeling meteorological risk factors associated with pre-harvest contamination of Listeria species in a mixed produce and dairy farm. Food Res. Int. 2017, 102, 355–363. [Google Scholar] [CrossRef]
  41. González-Barrio, D.; Maio, E.; Vieira-Pinto, M.; Ruiz-Fons, F. European rabbits as reservoir for Coxiella burnetii. Emerg. Infect. Dis. 2015, 21, 1055. [Google Scholar] [CrossRef]
  42. González-Barrio, D.; Velasco Avila, A.L.; Boadella, M.; Beltrán-Beck, B.; Barasona, J.Á.; Santos, J.P.; Queirós, J.; García-Pérez, A.L.; Barral, M.; Ruiz-Fons, F. Host and environmental factors modulate the exposure of free-ranging and farmed red deer (Cervus elaphus) to Coxiella burnetii. Appl. Environ. Microbiol. 2015, 81, 6223–6231. [Google Scholar] [CrossRef]
  43. Lupindu, A.M.; Dalsgaard, A.; Msoffe, P.L.; Ngowi, H.A.; Mtambo, M.M.; Olsen, J.E. Transmission of antibiotic-resistant Escherichia coli between cattle, humans and the environment in peri-urban livestock keeping communities in Morogoro, Tanzania. Prev. Vet. Med. 2015, 118, 477–482. [Google Scholar] [CrossRef]
  44. Xu, X.; Rothrock, M.J., Jr.; Reeves, J.; Kumar, G.D.; Mishra, A. Using E. coli population to predict foodborne pathogens in pastured poultry farms. Food Microbiol. 2022, 108, 104092. [Google Scholar] [CrossRef]
  45. Yoo, D.; Chun, B.C.; Hong, K.; Kim, J. Risk Prediction of Three Different Subtypes of Highly Pathogenic Avian Influenza Outbreaks in Poultry Farms: Based on Spatial Characteristics of Infected Premises in South Korea. Front. Vet. Sci. 2022, 9, 897763. [Google Scholar] [CrossRef] [PubMed]
  46. Romero, M.P.; Chang, Y.M.; Brunton, L.A.; Parry, J.; Prosser, A.; Upton, P.; Rees, E.; Tearne, O.; Arnold, M.; Stevens, K.; et al. Decision tree machine learning applied to bovine tuberculosis risk factors to aid disease control decision making. Prev. Vet. Med. 2020, 175, 104860. [Google Scholar] [CrossRef] [PubMed]
  47. Romero, M.P.; Chang, Y.M.; Brunton, L.A.; Prosser, A.; Upton, P.; Rees, E.; Tearne, O.; Arnold, M.; Stevens, K.; Drewe, J.A. A comparison of the value of two machine learning predictive models to support bovine tuberculosis disease control in England. Prev. Vet. Med. 2021, 188, 105264. [Google Scholar] [CrossRef] [PubMed]
  48. Britten, G.L.; Mohajerani, Y.; Primeau, L.; Aydin, M.; Garcia, C.; Wang, W.L.; Pasquier, B.; Cael, B.; Primeau, F.W. Evaluating the benefits of bayesian hierarchical methods for analyzing heterogeneous environmental datasets: A case study of marine organic carbon fluxes. Front. Environ. Sci. 2021, 9, 491636. [Google Scholar] [CrossRef]
  49. Tumusiime, D.; Isingoma, E.; Tashoroora, O.B.; Ndumu, D.B.; Bahati, M.; Nantima, N.; Mugizi, D.R.; Jost, C.; Bett, B. Mapping the risk of Rift Valley fever in Uganda using national seroprevalence data from cattle, sheep and goats. bioRxiv 2022. [Google Scholar] [CrossRef]
  50. Hwang, D.; Rothrock, M.J., Jr.; Pang, H.; Guo, M.; Mishra, A. Predicting Salmonella prevalence associated with meteorological factors in pastured poultry farms in southeastern United States. Sci. Total Environ. 2020, 713, 136359. [Google Scholar] [CrossRef]
  51. Xu, X.; Rothrock, M.J., Jr.; Mohan, A.; Kumar, G.D.; Mishra, A. Using farm management practices to predict Campylobacter prevalence in pastured poultry farms. Poult. Sci. 2021, 100, 101122. [Google Scholar] [CrossRef]
  52. Bishop, A.P.; Amatulli, G.; Hyseni, C.; Pless, E.; Bateta, R.; Okeyo, W.A.; Mireji, P.O.; Okoth, S.; Malele, I.; Murilla, G.; et al. A machine learning approach to integrating genetic and ecological data in tsetse flies (Glossina pallidipes) for spatially explicit vector control planning. Evol. Appl. 2021, 14, 1762–1777. [Google Scholar] [CrossRef]
  53. Yoo, D.; Song, Y.; Choi, D.; Lim, J.S.; Lee, K.; Kang, T. Machine learning-driven dynamic risk prediction for highly pathogenic avian influenza at poultry farms in Republic of Korea: Daily risk estimation for individual premises. Transbound. Emerg. Dis. 2021. ahead of print. [Google Scholar] [CrossRef]
  54. Schreuder, J.; de Knegt, H.J.; Velkers, F.C.; Elbers, A.R.; Stahl, J.; Slaterus, R.; Stegeman, J.A.; de Boer, W.F. Wild Bird Densities and Landscape Variables Predict Spatial Patterns in HPAI Outbreak Risk across The Netherlands. Pathogens 2022, 11, 549. [Google Scholar] [CrossRef]
  55. Assefa, A.; Bihon, A.; Tibebu, A. Anthrax in the Amhara regional state of Ethiopia; spatiotemporal analysis and environmental suitability modeling with an ensemble approach. Prev. Vet. Med. 2020, 184, 105155. [Google Scholar] [CrossRef] [PubMed]
  56. Bhakta, A.; Byrne, C. Creutzfeldt-Jakob Disease Prediction Using Machine Learning Techniques. In Proceedings of the 2021 IEEE 9th International Conference on Healthcare Informatics (ICHI), Victoria, BC, Canada, 9–12 August 2021; pp. 535–542. [Google Scholar]
  57. Evans, M.V.; Dallas, T.A.; Han, B.A.; Murdock, C.C.; Drake, J.M. Data-driven identification of potential Zika virus vectors. eLife 2017, 6, e22053. [Google Scholar] [CrossRef] [PubMed]
  58. Walsh, D.P.; Ma, T.F.; Ip, H.S.; Zhu, J. Artificial intelligence and avian influenza: Using machine learning to enhance active surveillance for avian influenza viruses. Transbound. Emerg. Dis. 2019, 66, 2537–2545. [Google Scholar] [CrossRef] [PubMed]
  59. Ali, S.; Bello, B.; Chourasia, P.; Punathil, R.; Zhou, Y.; Patterson, M. PWM2Vec: An Efficient Embedding Approach for Viral Host Specification from Coronavirus Spike Sequences. Biology 2022, 11, 418. [Google Scholar] [CrossRef]
  60. Fischhoff, I.R.; Castellanos, A.A.; Rodrigues, J.P.; Varsani, A.; Han, B.A. Predicting the zoonotic capacity of mammals to transmit SARS-CoV-2. Proc. R. Soc. B 2021, 288, 20211651. [Google Scholar] [CrossRef]
  61. Brierley, L.; Fowler, A. Predicting the animal hosts of coronaviruses from compositional biases of spike protein and whole genome sequences through machine learning. PLoS Pathog. 2021, 17, e1009149. [Google Scholar] [CrossRef] [PubMed]
  62. Ndraha, N.; Hsiao, H.I.; Hsieh, Y.Z.; Pradhan, A.K. Predictive models for the effect of environmental factors on the abundance of Vibrio parahaemolyticus in oyster farms in Taiwan using extreme gradient boosting. Food Control 2021, 130, 108353. [Google Scholar] [CrossRef]
  63. Lundberg, S.M.; Lee, S.I. A Unified Approach to Interpreting Model Predictions. In Advances in Neural Information Processing Systems 30; Guyon, I., Luxburg, U.V., Bengio, S., Wallach, H., Fergus, R., Vishwanathan, S., Garnett, R., Eds.; Curran Associates, Inc.: Red Hook, NY, USA, 2017; pp. 4765–4774. [Google Scholar]
  64. Mollentze, N.; Babayan, S.A.; Streicker, D.G. Identifying and prioritizing potential human-infecting viruses from their genome sequences. PLoS Biol. 2021, 19, e3001390. [Google Scholar] [CrossRef] [PubMed]
  65. Bergner, L.M.; Mollentze, N.; Orton, R.J.; Tello, C.; Broos, A.; Biek, R.; Streicker, D.G. Characterizing and evaluating the zoonotic potential of novel viruses discovered in vampire bats. Viruses 2021, 13, 252. [Google Scholar] [CrossRef]
  66. Wieland, R.; Kuhls, K.; Lentz, H.H.; Conraths, F.; Kampen, H.; Werner, D. Combined climate and regional mosquito habitat model based on machine learning. Ecol. Model. 2021, 452, 109594. [Google Scholar] [CrossRef]
  67. Mirza, M.; Osindero, S. Conditional generative adversarial nets. arXiv 2014, arXiv:1411.1784. [Google Scholar]
  68. Ayoola, M.B.; Pillai, N.; Nanduri, B.; Rothrock, M.J.; Ramkumar, M. Preharvest Environmental and Management Drivers of Multidrug Resistance in Major Bacterial Zoonotic Pathogens in Pastured Poultry Flocks. Microorganisms 2022, 10, 1703. [Google Scholar] [CrossRef] [PubMed]
  69. Walsh, M.G.; Pattanaik, A.; Vyas, N.; Saxena, D.; Webb, C.; Sawleshwarkar, S.; Mukhopadhyay, C. High risk landscapes of Japanese encephalitis virus outbreaks in India converge on wetlands, rainfed agriculture, wild Ardeidae, and domestic pigs. medRxiv 2021. [Google Scholar] [CrossRef]
  70. Walsh, M.G.; Willem de Smalen, A.; Mor, S.M. Wetlands, wild Bovidae species richness and sheep density delineate risk of Rift Valley fever outbreaks in the African continent and Arabian Peninsula. PLoS Negl. Trop. Dis. 2017, 11, e0005756. [Google Scholar] [CrossRef] [PubMed]
  71. Valiakos, G.; Giannakopoulos, A.; Spanos, S.; Korbou, F.; Chatzopoulos, D.; Mavrogianni, V.; Spyrou, V.; Fthenakis, G.; Billinis, C. Use of geographical information system and ecological niche model to analyse potential exposure of small ruminants to Coxiella burnetii infection in central Greece. Small Rumin. Res. 2017, 147, 77–82. [Google Scholar] [CrossRef]
  72. Walsh, M.G.; Mor, S.M.; Hossain, S. The elephant—Livestock interface modulates anthrax suitability in India. Proc. R. Soc. B 2019, 286, 20190179. [Google Scholar] [CrossRef]
  73. Tu, T.; Xu, K.; Xu, L.; Gao, Y.; Zhou, Y.; He, Y.; Liu, Y.; Liu, Q.; Ji, H.; Tang, W. Association between meteorological factors and the prevalence dynamics of Japanese encephalitis. PLoS ONE 2021, 16, e0247980. [Google Scholar] [CrossRef]
  74. McMeekin, T.; Mellefont, L.; Ross, T. Predictive microbiology: Past, present and future. Model. Microorg. Food 2007, 1, 7–11. [Google Scholar]
  75. Franssen, F.; Swart, A.; van der Giessen, J.; Havelaar, A.; Takumi, K. Parasite to patient: A quantitative risk model for Trichinella spp. in pork and wild boar meat. Int. J. Food Microbiol. 2017, 241, 262–275. [Google Scholar] [CrossRef]
  76. Amado, T.M.; Bunuan, M.R.; Chicote, R.F.; Espenida, S.M.C.; Masangcay, H.L.; Ventura, C.H.; Tolentino, L.K.S.; Padilla, M.V.C.; Madrigal, G.A.M.; Enriquez, L.A.C. Development of predictive models using machine learning algorithms for food adulterants bacteria detection. In Proceedings of the 2019 IEEE 11th International Conference on Humanoid, Nanotechnology, Information Technology, Communication and Control, Environment, and Management (HNICEM), Laoag, Philippines, 29 November–1 December 2019; pp. 1–6. [Google Scholar]
  77. Tanui, C.K.; Benefo, E.O.; Karanth, S.; Pradhan, A.K. A Machine Learning Model for Food Source Attribution of Listeria monocytogenes. Pathogens 2022, 11, 691. [Google Scholar] [CrossRef]
  78. Centers for Disease Control and Prevention. Outbreak of Salmonella Infections Linked to Gravel Ridge Farms Shell Eggs-Final Update. 2018. Available online: https://www.cdc.gov/salmonella/enteritidis-09-18/index.html (accessed on 18 September 2022).
  79. Park, J.H.; Kang, M.S.; Park, K.M.; Lee, H.Y.; Ok, G.S.; Koo, M.S.; Hong, S.I.; Kim, H.J. A dynamic predictive model for the growth of Salmonella spp. and Staphylococcus aureus in fresh egg yolk and scenario-based risk estimation. Food Control 2020, 118, 107421. [Google Scholar] [CrossRef]
  80. Dourou, D.; Grounta, A.; Argyri, A.A.; Froutis, G.; Tsakanikas, P.; Nychas, G.J.E.; Doulgeraki, A.I.; Chorianopoulos, N.G.; Tassou, C.C. Rapid Microbial Quality Assessment of Chicken Liver Inoculated or Not With Salmonella Using FTIR Spectroscopy and Machine Learning. Front. Microbiol. 2021, 11, 623788. [Google Scholar] [CrossRef] [PubMed]
  81. Hu, J.; Lin, L.; Chen, M.; Yan, W. Modeling for predicting the time to detection of staphylococcal enterotoxin a in cooked chicken product. Front. Microbiol. 2018, 9, 1536. [Google Scholar] [CrossRef] [PubMed]
  82. Bulat, F.N.; Kılınç, B.; Atalay, S.D. Microbial ecology of different sardine parts stored at different temperatures and the development of prediction models. Food Biosci. 2020, 38, 100770. [Google Scholar] [CrossRef]
  83. Jeremy, W.; Dan, V.; Sean, W. A Theoretical Foundation for Inductive Transfer; Brigham Young University, College of Physical and Mahematical Sciences: Provo, UT, USA, 2005. [Google Scholar]
  84. Chang, M.W.; Ratinov, L.A.; Roth, D.; Srikumar, V. Importance of Semantic Representation: Dataless Classification. In Proceedings of the 23rd National Conference on Artificial Intelligence, Chicago IL, USA, 13–17 July 2008; Volume 2, pp. 830–835. [Google Scholar]
Figure 1. A flowchart illustrating a selection of manuscripts for inclusion in this review based on Preferred Reporting Items for Systematic Reviews and Meta-Analyses (PRISMA).
Figure 1. A flowchart illustrating a selection of manuscripts for inclusion in this review based on Preferred Reporting Items for Systematic Reviews and Meta-Analyses (PRISMA).
Microorganisms 10 01911 g001
Figure 2. Predictive algorithms and their representation in etiology based studies.
Figure 2. Predictive algorithms and their representation in etiology based studies.
Microorganisms 10 01911 g002
Table 1. Summary of AI models and their applications in zoonoses literature.
Table 1. Summary of AI models and their applications in zoonoses literature.
ModelApplicationEtiologyReference
Logistic Regressiondisease predictionCampylobacter
Salmonella
Staphylococcus
Mencía-Ares et al., 2021 [21]
disease predictionStaphylococcus spp.Qekwana et al., 2017 [22]
disease predictionStaphylococcus spp.Conner et al., 2018 [23]
contamination factorCoxiella burnetiiGonzález-Barrio et al., 2015 [41]
contamination factorCoxiella burnetiiGonzález-Barrio et al., 2015 [42]
contamination factorEscherichia coliLupindu et al., 2015 [43]
contamination factorCampylobacter
Salmonella
Listeria
Xu et al., 2022 [44]
Random forestdisease predictionEbola virusPrice et al., 2020 [26]
contamination factorSalmonellahwang et al., 2020 [50]
contamination factorCampylobacterXu et al., 2021 [51]
contamination factorGlossina pallidipesBishop et al., 2021 [52]
contamination factorAvian influenzaSchreuder et al., 2022 [54]
contamination factorSARS-CoV-2Brierley and Fowler 2021 [61]
contamination factorSARS-CoV-2Fischhoff et al., 2021 [60]
Gradient boosted regressioncontamination factorZika VirusEvans et al., 2017 [57]
contamination factorAvian influenza virusesWalsh et al., 2019 [58]
Poisson Point Processcontamination factorJapanese encephalitis virusWalsh et al., 2021 [69]
Baysian Modelcontamination factorRift Valley feverTumusiime et al., 2022 [49]
Gaussian Processdisease predictionCrimean-Congo
haemorrhagic fever
Ak et al., 2020 [27]
Ak et al., 2018 [28]
Maximum Entropy Modelcontamination factorRift Valley feverWalsh et al., 2017 [70]
contamination factorC. burnetiiValiakos et al., 2017 [71]
contamination factorAnthraxWalsh et al., 2019 [72]
Logistic regression, Random forest,
Gradient boosting
disease predictionTrypanosoma cruziEberhard et al., 2021 [24]
Logistic regression, Random Forestcontamination factorListeria spp.Pang et al., 2017 [40]
Linear Regressiondisease predictionTrichinella spp.Kirjušina et al., 2016 [20]
Support Vector Machine,
least square regression
disease predictionCulex TarsalisChinnathambi et al., 2020 [19]
XGBoost SHAPcontamination factorVibrio parahaemolyticusNdraha et al., 2021 [62]
contamination factorRabies virus, Hepeviridae,
CoronaviridaeReoviridae,
Astroviridae, Picornaviridae
Bergner et al., 2021 [65]
contamination factorWest Nile virusWieland et al., 2021 [66]
Artificial Neural Networkdisease predictionClostridium perfringensSadeghi et al., 2015 [29]
disease predictionNorovirusChenar and Deng 2021 [31]
disease predictionAvian influenza virusYoon et al., 2020 [32]
disease predictionBovine tuberculosisDenholm et al., 2020 [10]
Long short term memorydisease predictionNewcastle disease VirusCuan et al., 2022 [33]
disease predictionBrucellosisShen et al., 2022 [35]
contamination factorJapanese encephalitis virusTu et al., 2021 [73]
Long short-term memory network,
XGboost Recurrent neural network,
Random forest
disease predictionCampylobacteriosisArning et al., 2021 [36]
Auto-Encoderdisease predictionCampylobacteriosisSong et al., 2017 [38]
Bayesian logistic regression, XGBoostcontamination factorAvian influenza virusYoo et al., 2022 [45]
Decision trees, Logistic regressioncontamination factorBovine tuberculosisRomero et al., 2020 [46]
Random Forest, LASSO regressioncontamination factorBovine tuberculosisRomero et al., 2021 [47]
Random Forest, XGBoostcontamination factorAvian influenzaYoo et al., 2021 [53]
Neural Network, Random forest,
Maximum Entropy
contamination factorAnthraxAssefa et al., 2020 [55]
Recurrent neural network, Random forestcontamination factorCreutzfeldt-Jakob diseaseBhakta and Byrne 2021 [56]
Random Forest, XGBoost,
Multilayer Perceptron Generative
Adversarial Network, Auto-Encoder, SHAP
contamination factorSalmonella, Listeria,
and Campylobacter
Ayoola et al., 2022 [68]
Table 2. Summary of models and their applications in foodborne zoonoses.
Table 2. Summary of models and their applications in foodborne zoonoses.
ModelApplicationEtiologyDatasourceReference
Monte Carlo simulationpopulation growthSalmonella spp.fresh eggsPark et al., 2020
[79]
Support Vector Regressionpopulation growthSalmonella spp.chickenDourou et al., 2021
[80]
Polynomial Regressionpopulation growthStaphylococcus aureuschickenHu et al., 2018
[81]
K-Nearest Neighbors, Support
Vector Machine, Random Forest,
Naive Bayes Classifier
and Artificial Neural Network
pathogen detectionEscherichia coli
Staphylococcus aureus
beefAmado et al., 2019
[76]
Random forest, Support vector machine,
Radial kernel, Stochastic gradient
boosting, Logistic boost
pathogen detectionListeria monocytogenesdairy, fruits,
leafy greens, meat,
poultry, seafood
Tanui et al., 2022
[77]
Publisher’s Note: MDPI stays neutral with regard to jurisdictional claims in published maps and institutional affiliations.

Share and Cite

MDPI and ACS Style

Pillai, N.; Ramkumar, M.; Nanduri, B. Artificial Intelligence Models for Zoonotic Pathogens: A Survey. Microorganisms 2022, 10, 1911. https://doi.org/10.3390/microorganisms10101911

AMA Style

Pillai N, Ramkumar M, Nanduri B. Artificial Intelligence Models for Zoonotic Pathogens: A Survey. Microorganisms. 2022; 10(10):1911. https://doi.org/10.3390/microorganisms10101911

Chicago/Turabian Style

Pillai, Nisha, Mahalingam Ramkumar, and Bindu Nanduri. 2022. "Artificial Intelligence Models for Zoonotic Pathogens: A Survey" Microorganisms 10, no. 10: 1911. https://doi.org/10.3390/microorganisms10101911

Note that from the first issue of 2016, this journal uses article numbers instead of page numbers. See further details here.

Article Metrics

Back to TopTop