960
best practices that can be imported into local
contingency plans [2]. The United States’ CDC Vessel
Sanitation Program offers a parallel model outside
Europe: routine ship inspections, real-time AGE
outbreak dashboards and a publicly available
operations manual that doubles as a decision-support
reference for shipboard environmental health officers
[3]. Another approach is to use telemedicine and
remote clinical decision support as described in [4] on
Telemedical Maritime Assistance Services (TMAS)
allowing ashore physicians to run protocol-driven
triage and treatment pathways for infectious diseases.
And finally, progressing development of early-
warning and prediction platforms using various
artificial intelligence (AI) methods is present in
complementary academic work. Triantafyllou et al.
(2024) propose a closed-loop architecture that couples
environmental sensors, agent-based epidemic
simulation, and optimisation algorithms to
recommend ventilation or isolation measures in real
time [5]. Similar operational-research studies re-
examining the Diamond Princess outbreak distilled an
emergency-response mechanism highlighting the
value of predictive modelling, structured
communication chains and adaptable quarantine
layouts [6]. The systems above concentrate on
inspection compliance, strategic preparedness, macro-
level horizon scanning. None of them supplies ship
masters with a low-bandwidth, multilingual,
symptom-based diagnostic engine that operates offline
and converts probabilistic outputs into plain-language
action cards—DESSEV’s defining features.
The DESSEV (Decision Support System regarding
the risk of Epidemic threats on a sea-going Vessel)
project key objective was to develop a Decision-
Support System that enhances maritime safety by
providing comprehensive risk assessments and
mitigation strategies for the spread of infectious
diseases on seagoing vessels. DESSEV addresses a
longstanding but under-theorized challenge in
maritime health security: how to empower shipboard
personnel to identify and manage epidemic threats in
the absence of medical professionals. Its foundations
lie in three integrated components: a data repository, a
medical knowledge base, and a decision support
platform. It focused on a group of infectious diseases
chosen for their significant global health impact,
frequency of occurrence, and particular relevance to
maritime environments. The selection was done by
data from reputable sources including the World
Health Organization (WHO), the Centers for Disease
Control and Prevention (CDC), and the European
Centre for Disease Prevention and Control (ECDC).
Additionally, the process was supported by insights
from peer-reviewed research, case study analyses, and
consultations with medical experts. The materials in
the repository are classified by relevance and serve as
educational resources for vessel crews and port
authorities. More on the development of the repository
can be find in [7]
Although the initial concept of the DESSEV project
was to build rule-based decision support systems, it
quickly became evident that medical cases are not that
straightforward, as they rarely follow binary (0–1)
logic. Patients may experience the same symptom with
varying intensity—or not at all, still suffering for the
same disease. For instance, a rule such as "IF you have
a sore throat THEN you have pharyngitis" would not
always hold true, as some individuals might suffer
severely, while others may not feel the symptom so
intense at all. On the other hand, the rapid
development of machine learning techniques allowed
us to pivot toward a more probabilistic and data-
driven architecture. This led to the integration of well-
established models that can infer complex patterns and
non-linear relationships between multiple symptoms
and disease classes. Such models are better suited for
capturing the inherent uncertainty and variability in
clinical presentations. They offer not only higher
predictive accuracy but also enhanced generalizability
to real-world scenarios where inputs may be
incomplete, subjective, or overlapping. Consequently,
the DESSEV decision support system evolved into a
hybrid platform that maintains the interpretability
needed for user trust while leveraging the analytical
power of machine learning to support more nuanced
and flexible decision-making under uncertainty.
2 MACHINE LEARNING MODELS IN CLINICAL
DECISION SUPPORT SYSTEMS (CDSS)
Clinical decision support systems (CDSS) originally
relied on manually curated rules (e.g., Arden syntax).
The exponential growth of electronic health records
and medical imaging has shifted research toward
machine-learning pipelines that learn predictive
patterns directly from data. Recent systematic reviews
document more than 10 000 ML-centred CDSS
publications since 2020, with sharp upticks in deep-
learning and large-language-model (LLM) approaches
[8]. Structured diagnostic codes, laboratory series and
vital-sign streams now feed recurrent, Transformer
and graph networks that forecast unplanned
admissions, sepsis or even cardiovascular events [9].
Convolutional and hybrid composite networks
continue to raise the performance ceiling in radiology
and pathology [10]. Nevertheless, decision-support
systems aimed at front-line users with limited
computing resources, such as shipmasters, benefit
from classifiers that are auditable, robust to sparse or
noisy inputs and computationally lightweight. The
classical family of Naïve Bayes (NB), Decision Tree
(DT) and Random Forest (RF) models fulfils these
requirements, and recent biomedical literature
confirms their continued relevance despite the rise of
deep learning [11,12].
NB delivers explicit posterior probabilities that map
naturally onto the low/medium/high risk language
used in maritime health protocols. Instructional
materials for health-informatics curricula still present
NB as the canonical algorithm for diagnostic testing
and symptom triage because it trains in milliseconds
and generalises well on small, categorical feature sets.
Ensemble bagging of many shallow decision trees
boosts discrimination without sacrificing
interpretability; variable-importance plots
immediately reveal which symptoms drive
predictions. Decision trees offer several advantages,
making them particularly useful in healthcare settings.
They are easy to interpret and visualize, even for
individuals without technical expertise, and they can
handle both numerical and categorical data effectively.
By aggregating the decisions of many independently