Preprint
Article

This version is not peer-reviewed.

MarineGuard-GNN: A Physics-Informed Multimodal Heterogeneous Graph Neural Network for Submarine Cable Fault Risk Assessment and Spatial Route Optimization

Submitted:

22 July 2026

Posted:

22 July 2026

You are already at the latest version

Abstract
Submarine telecommunication cables carry over 99% of international data traffic yet remain persistently vulnerable to geophysical, anthropogenic, and oceanographic hazards. Existing risk assessment methods , GIS-based least-cost path analysis and cable-body condition monitoring , operate in isolation, cannot fuse heterogeneous multi-modal data, and yield neither uncertainty estimates nor physics-consistent predictions. We present MarineGuard-GNN, a physics-informed multimodal heterogeneous graph neural network that unifies four hazard modalities , bathymetric, oceanographic, vessel traffic, and seismic , in a single relational graph over four semantic node types and four typed relation edges. Three novel technical contributions distinguish the framework: (i) the Cross-Modal Spatiotemporal Tokenizer (CMST), which jointly encodes GEBCO bathymetric raster fields via a SatMAE-pretrained ViT-S and NOAA AIS vessel trajectories via a Transformer-XL into a unified 256-dimensional token space, addressing the modality-heterogeneity gap; (ii) a Physics-Informed Heterogeneous Graph Transformer with a differentiable Mohr–Coulomb geomechanical shear-stress regularization loss Lphys that prevents physically inconsistent risk assignments at steep bathymetric gradients; and (iii) a Bayesian Uncertainty-Aware Risk Head using Monte Carlo Dropout (K=50, p=0.3) to produce calibrated epistemic uncertainty maps for inspection prioritization. Under strict 4-fold geographic cross-validation across the Pacific, Atlantic, Indian, and Mediterranean basins using five publicly available datasets, MarineGuard-GNN achieves the highest mean AUC-ROC (0.7228±0.0665) and Average Precision (0.6418±0.1040) among five baselines. A Dijkstra-based spatial route optimizer reduces mean predicted fault risk by 0.0035 absolute on the Atlantic New York–UK corridor, avoiding one additional high-risk node at a distance overhead of only +7.4 km (+0.56%). All code, preprocessing pipelines, and datasets are publicly available.
Keywords: 
;  ;  ;  ;  ;  ;  ;  ;  

1. Introduction

Submarine telecommunication cables constitute the physical nervous system of the global internet, carrying over 99% of international data traffic across approximately 1.4 million kilometres of seabed-laid optical fibre (Carter & Burnett, 2009). More than 400 active cable systems interconnect every inhabited continent, supporting an estimated $10 trillion in daily financial transactions and underpinning critical services ranging from cloud computing to military communications (Insikt Group, 2025). Despite their infrastructural centrality, these systems are persistently vulnerable: the International Cable Protection Committee (ICPC) recorded 46 fault events in 2024 alone , the highest annual total since systematic reporting began in 2013 (Lapa & Vieira, 2024) , with individual repair operations costing $1–3 million and requiring weeks to months of service disruption. Submarine cable faults arise from three primary causal pathways (Figure 1): anthropogenic hazards (vessel anchoring and bottom trawling, accounting for approximately 48% of shallow-water faults), seismic and geohazard events (earthquake-triggered turbidity currents and submarine landslides, as demonstrated by the 2006 Pingtung earthquake that severed approximately 20 cables across Southeast Asia (Lapa & Vieira, 2024)), and oceanographic forcing (near-bed current scour, sediment mobilization, and thermally-driven geomechanical stress). These hazard pathways are spatially heterogeneous, temporally dynamic, and mutually interacting , a combination that fundamentally limits the effectiveness of conventional risk assessment methods based on static geospatial overlays or tabular hazard scores.
Existing approaches to submarine cable risk assessment fall into two broad categories, neither of which is adequate for operational risk intelligence. GIS-based least-cost path analysis (LCPA) methods (Deligiannidis & Kkanas, 2023; Furlong, 2026) select cable routes by minimizing weighted combinations of bathymetric slope, sediment class, and fault zone proximity, but produce deterministic risk scores that cannot capture relational hazard interactions, adapt to dynamic oceanographic and vessel-traffic data, or provide the calibrated uncertainty estimates required for data-sparse oceanic regions. Condition monitoring approaches (Carr & Allanic, 2023) detect physical cable degradation from acoustic or electrical sensor data at the cable-body level but cannot anticipate fault risk from environmental precursors, addressing only approximately 30% of known failure mechanisms. Graph neural networks (GNNs) have emerged as the natural framework for multi-relational spatial risk reasoning (Carter & Burnett, 2009; Mao & Cao, 2023; Varbella & Tanneau, 2024; Taghizadeh & Bentivoglio, 2025; Sarkar & Hakimi, 2025), yet existing GNN risk frameworks share three limitations that preclude direct application to submarine cable fault prediction. First, modality homogeneity: existing frameworks operate on a single data type and cannot fuse raster satellite imagery with irregular vessel trajectory sequences. Second, physics-agnosticism: they impose no geomechanical constraints on predicted risk values, permitting physically inconsistent predictions at steep bathymetric gradients under cross-basin distribution shift. Third, deterministic inference: they produce point estimates without epistemic uncertainty quantification, preventing safety-critical deployment in data-sparse oceanic regions where model confidence is lowest and inspection stakes are highest.
To address these three limitations simultaneously, we propose MarineGuard-GNN (Figure 2) , a physics-informed multimodal heterogeneous graph neural network that represents the cable network as a heterogeneous spatial graph G = ( V , E , X , R ) with four semantic node types (cable, vessel, seismic, ocean) and four typed relation edges encoding spatial adjacency, vessel route intersection, oceanographic forcing, and seismic proximity. The Cross-Modal Spatiotemporal Tokenizer (CMST) resolves the modality heterogeneity problem by jointly encoding GEBCO 2023 bathymetric and CMEMS oceanographic raster fields through a SatMAE-pretrained ViT-S patch encoder and NOAA AIS vessel mobility sequences through a Transformer-XL trajectory encoder, fusing both into a unified d = 256 -dimensional node feature space via geodesic proximity-weighted cross-attention grounded on cable-segment positions; ablation analysis confirms that removing the CMST increases mean absolute error by 27.9% (MAE from 0.4577 to 0.5856 on the Atlantic fold), confirming its role in calibrating absolute risk magnitudes. The Physics-Informed HGT with Mohr–Coulomb Constraint stacks three Heterogeneous Graph Transformer (HGT) layers (Hu & Dong, 2020) with relation-type-aware attention, jointly trained with a differentiable Mohr–Coulomb geomechanical shear-stress penalty L phys that prevents physically inconsistent risk assignments at geomechanically stable segments, with the Pacific fold achieving the highest per-fold AUC-ROC of 0.7823, consistent with the physics regularizer’s greatest benefit in data-sparse training conditions. The Bayesian Uncertainty-Aware Risk Head employs Monte Carlo Dropout ( K = 50 forward passes, p = 0.3 ) (Song & Alam, 2026) to produce calibrated mean risk predictions y ^ v , epistemic uncertainty estimates V [ y ^ v ] , and 90% confidence intervals for each cable segment, enabling both uncertainty-conditioned inspection prioritization and the exclusion of epistemically uncertain nodes from automated routing decisions. The resulting risk field feeds a Dijkstra-based spatial route optimization framework that, applied to the Atlantic New York–UK corridor, reduces mean predicted fault risk by 0.0035 absolute and avoids one additional high-risk node at a distance penalty of only + 7.4  km ( + 0.56 % ).
The principal contributions of this paper are: (i) a formally specified heterogeneous spatial graph representation integrating four distinct physical hazard modalities into a unified relational structure for submarine cable risk assessment; (ii) the Cross-Modal Spatiotemporal Tokenizer (CMST), the first architecture to jointly encode satellite raster fields and AIS trajectory sequences into a shared token space for cable segment risk representation; (iii) a physics-informed HGT training objective embedding Mohr–Coulomb geomechanical constraints as a differentiable loss term, enabling geophysically consistent risk prediction under cross-basin distribution shift; (iv) a Bayesian uncertainty-aware inference pipeline providing actionable epistemic uncertainty maps for operational cable inspection prioritization and safety-critical route planning; and (v) a risk-optimal route optimization framework demonstrating quantifiable fault risk reduction on the Atlantic corridor, with a fully reproducible open-source implementation on five public datasets. The remainder of this paper is organized as follows. Section 2 reviews related work across five relevant bodies of literature. Section 3 presents the MarineGuard-GNN framework in full technical detail, incorporating the merged problem formulation. Section 4 describes the datasets and preprocessing pipeline. Section 5 reports experimental results under geographic cross-validation, including ablation, calibration, and qualitative analysis. Section 6 presents the route optimization framework and Atlantic corridor results. Section 7 concludes with limitations and future directions.

3. MarineGuard-GNN Framework

3.1. Problem Formulation and Graph Specification

Submarine cable risk assessment is fundamentally a problem of spatial reasoning over heterogeneous relational data: multiple physical entities of distinct semantic types interact through physically meaningful relationships across continuous marine space. Standard Euclidean or grid-based representations are insufficient to model these non-uniform, multi-relational structures. We therefore formalize the domain as a heterogeneous spatial graph  G = ( V , E , X , R ) , where the node set V = τ T V τ is partitioned into | T | = 4 semantic types T = { cable , vessel , seismic , ocean } , with V cable indexing discrete cable-segment nodes at 500 m spatial resolution, V vessel indexing AIS-derived vessel waypoints, V seismic indexing USGS seismic station positions, and V ocean indexing CMEMS oceanographic grid cells. The typed edge set E is governed by a relation mapping ϕ : E R , where the relation set
R = { ( cable , adj , cable ) , ( vessel , cross , cable ) , ( ocean , force , cable ) , ( seis , perturb , cable ) }
encodes spatial adjacency, route intersection, current coupling, and seismic proximity respectively, each with typed edge weights w ( u , v , r ) encoding physical coupling intensity. For a cable-segment node v, the raw feature vector x v ( cable ) R 6 comprises bathymetric depth z v , local seabed slope s v , sediment risk class c v sed { 0 , , 4 } , composite seismic hazard score h v seis , distance to nearest fault zone δ v fault , and normalized segment identifier id v norm . The learning objective is to find a function f θ : ( G , X , T ) ( y ^ , σ 2 ) that produces both mean risk predictions y ^ and calibrated epistemic uncertainty σ 2 for each cable segment, subject to the Mohr–Coulomb physics constraints defined in Section 3.3.

3.2. Cross-Modal Spatiotemporal Tokenizer (CMST)

Heterogeneous marine data arrives in two fundamentally incompatible representations: gridded raster fields encoding bathymetry and oceanographic state over regular spatial grids, and irregular point-cloud trajectories encoding vessel mobility events in continuous space-time. The CMST resolves this structural incompatibility by mapping each modality into a common latent token space of dimension d = 256 before injection into the GNN, enabling modality-agnostic message-passing.
The Raster Encoder processes raster inputs R t R C × H × W encoding C multi-channel fields (bathymetric DEM, sea-surface temperature, current velocity magnitude, salinity) by partitioning them into non-overlapping patches { p i } i = 1 N p of size P × P pixels, each embedded via a linear projection with learnable 2D sinusoidal positional encodings:
e i ( raster ) = W E vec ( p i ) + b E + pos i ,
where W E R d × C P 2 . The resulting token sequence is processed by a Vision Transformer-Small (ViT-S) backbone with SatMAE pre-trained weights (Cong & Khanna, 2022), comprising L v = 12 Transformer encoder layers with h = 6 attention heads, producing the raster token matrix Z ( raster ) R ( N p + 1 ) × d .
The Trajectory Encoder processes AIS vessel trajectories as discrete event sequences. For vessel k, each waypoint token is embedded via:
e j ( traj ) = W T [ λ j ( k ) , μ j ( k ) , Δ t j ( k ) , v j ( k ) ] + ψ ( t j ( k ) ) ,
where ψ ( · ) is a learnable relative temporal positional encoding following the Transformer-XL recurrence mechanism (Dai & Yang, 2019), which extends the effective context window across segment boundaries , a critical property for capturing long-range anchoring maneuver patterns.
The Cross-Attention Alignment module grounds raster and trajectory tokens onto cable-segment node positions { v } via geodesic proximity-weighted cross-attention:
α v , i ( raster ) = exp d geo ( v , i ( p ) ) / β i exp d geo ( v , i ( p ) ) / β ,
where β > 0 is a learnable bandwidth parameter. The fused node feature for cable segment v is given by
x ˜ v = W F [ x v ( cable ) i α v , i ( raster ) Z i ( raster ) k , j α v , j ( traj ) Z j ( traj , k ) ] R d ,
where W F R d × ( 6 + 2 d ) is a learned projection matrix. This operation reduces all node types to a unified d = 256 -dimensional representation prior to GNN message-passing. Ablation experiments confirm that removing the CMST inflates mean absolute error by 27.9% on the Atlantic test fold, establishing its primary contribution to risk magnitude calibration rather than binary discrimination.

3.3. Physics-Informed HGT with Mohr–Coulomb Constraint

The core of MarineGuard-GNN consists of three stacked Heterogeneous Graph Transformer (HGT) layers (Hu & Dong, 2020) with type-conditioned projection matrices enabling distinct interaction patterns per relation type. For target node v of type τ ( v ) and source neighbor u connected via relation r = ( τ ( u ) , ϕ , τ ( v ) ) , the l-th HGT layer computes the attention score
A u v ( r ) = W Q τ ( v ) h v ( l 1 ) W K ( r ) W K τ ( u ) h u ( l 1 ) · μ ( τ ( u ) , r , τ ( v ) ) d k ,
and aggregates messages as
h v ( l ) = LayerNorm ( W O τ ( v ) Aggregate u N ( v ) [ softmax ( A u v ( r ) ) · W V τ ( u ) h u ( l 1 ) ] + h v ( l 1 ) ) .
Purely data-driven risk models may produce predictions that violate the Mohr–Coulomb failure criterion governing seabed geomechanics , the dominant physical process underlying cable burial and rupture from sediment failure. We embed this constraint as a differentiable penalty loss. The effective normal stress at cable-segment node v is
σ n ( v ) = ρ v g d v cos ( s v ) ,
and the Mohr–Coulomb physics-informed loss is
L phys = λ phys v V cable τ ^ v σ n ( v ) tan ( φ v ) 2 2 ,
where τ ^ v = w τ h v ( 3 ) + b τ is the GNN-predicted shear stress, φ v is the internal friction angle retrieved from the sediment class via a differentiable lookup embedding, and λ phys = 10 2 is selected via grid search. The complete joint training objective is
L = FocalLoss ( y ^ , y ) L sup + L phys .
This prevents physically inconsistent risk assignments at geomechanically stable cable segments regardless of data distribution shift across geographic basins, and its regularizing effect is most pronounced in data-sparse folds where supervised gradient signal alone is insufficient to constrain the embedding space , consistent with the Pacific fold achieving the highest per-fold AUC-ROC of 0.7823.

3.4. Bayesian Uncertainty-Aware Risk Head

The risk head f θ maps final cable-node embeddings h v ( 3 ) to scalar risk scores via a two-layer MLP with Monte Carlo Dropout (Song & Alam, 2026), with dropout rate p = 0.3 retained active at inference time:
f θ ( h v ( 3 ) ) = σ ( W 2 ReLU ( W 1 · Dropout p ( h v ( 3 ) ) + b 1 ) + b 2 ) .
For K = 50 stochastic forward passes, the calibrated mean risk score and epistemic uncertainty are
y ^ v = 1 K k = 1 K y ^ v ( k ) ,
V [ y ^ v ] = 1 K k = 1 K y ^ v ( k ) y ^ v 2 ,
with 90% predictive confidence intervals
CI 90 ( v ) = y ^ v 1.645 σ ^ v , y ^ v + 1.645 σ ^ v , σ ^ v = V [ y ^ v ] .
Post-hoc temperature scaling (Guo & Pleiss, 2017) is applied to minimize Expected Calibration Error (ECE) on held-out validation folds:
y ^ v cal = σ logit ( y ^ v ) T cal ,
ECE = m = 1 M | B m | N acc ( B m ) conf ( B m ) .
Segments for which both y ^ v is elevated and V [ y ^ v ] is large are flagged as uncertain high-risk zones, warranting priority physical inspection rather than automated routing decisions.

3.5. Hyperparameter Configuration

The complete MarineGuard-GNN model was configured with a hidden embedding dimension of d = 256 , selected to fit within the 16 GB GDDR6 VRAM of the NVIDIA Tesla T4 GPU used for all experiments; the design specification targets d = 512 on higher-memory hardware, and we confirm this constraint does not affect architectural validity. The HGT backbone employs n heads = 8 attention heads across L = 3 stacked layers, providing sufficient relational expressivity for four semantic node types and four relation types without over-smoothing in the moderately sparse cable graph. The Bayesian risk head uses dropout rate p = 0.3 and K = 50 MC Dropout forward passes at inference time; K = 50 balances epistemic variance estimation quality (variance stabilizes by K 30 ) against the approximately 14-second per-fold inference cost on T4 hardware. The physics constraint coefficient λ phys = 10 2 was selected via grid search over { 10 3 , 10 2 , 10 1 } on validation AUC-ROC; values below 10 3 yielded negligible physics regularization while values at 10 1 destabilized the shear-stress head gradients during early training epochs. The supervised loss uses Focal Loss (Lin & Goyal, 2017) with γ = 2 and α = 0.75 to up-weight hard positive examples under the 1:2.4 class imbalance ratio; γ = 2 was found to balance recall improvement against the overconfidence amplification that characterizes higher γ settings, consistent with the ECE observations in Section 5.4. The optimizer is AdamW (Loshchilov & Hutter, 2019) with learning rate 3 × 10 4 and weight decay 10 4 , using cosine annealing over 100 training epochs; the learning rate was selected by grid search over { 10 3 , 3 × 10 4 , 10 4 } on the Pacific validation fold, with 3 × 10 4 providing the best convergence speed and final AUC-ROC. The cable-cable spatial adjacency radius is d adj = 1 km, yielding a mean node degree of approximately 3.8 within the training graph; the 50 km routing adjacency radius is set at the 90th percentile nearest-neighbor distance (P90 = 56.49 km) to ensure the majority of geographically proximate segments are connected while suppressing spurious long-range edges. Temperature scaling is applied post-hoc on held-out validation folds to calibrate ECE independently of geographic test folds, preventing calibration leakage.

4. Datasets and Preprocessing

4.1. Dataset Overview

Table 1 summarizes the five publicly available datasets that constitute the empirical foundation of MarineGuard-GNN. Together they span the three primary causal pathways responsible for over 70% of global submarine cable faults: anthropogenic activity (vessel anchoring, bottom trawling , captured via AIS), seismic and geohazard events (turbidity currents, slope failure , captured via USGS and GEBCO), and oceanographic forcing (current-induced mechanical stress and sediment mobilization , captured via CMEMS).

4.2. Bathymetric and Geomechanical Features (D1)

The GEBCO 2023 global grid (GEBCO Compilation Group, 2023) provides seabed elevation at 15 arc-second resolution ( 450 m at the equator). For each cable-segment node v, three features are extracted: bathymetric depth z v , local seabed slope s v = arctan 1 2 Δ x ( z v , E z v , W ) 2 + ( z v , N z v , S ) 2 via central finite difference at Δ x = 500 m, and sediment risk class c v sed { 0 , , 4 } derived by intersecting node positions with USGS usSEABED sediment facies polygons.

4.3. Ocean Physics Features (D2)

The CMEMS GLORYS12v1 global ocean physics reanalysis (Greiner, 2021) provides zonal velocity u, meridional velocity v, potential temperature T, and salinity S at 1 / 12 horizontal resolution, 50 vertical levels, and daily temporal resolution from 1993 to present. For each cable segment, the relevant depth level is determined by the bathymetric depth z v , yielding the near-bed feature vector x v ( ocean ) = [ u v , v v , T v , S v , u v 2 , h u v 2 ] R 6 , where the horizontal current speed gradient is physically linked to bed shear stress driving sediment transport and cable scouring. GLORYS12 daily fields are aggregated to monthly climatological means and standard deviations over the 1993–2021 baseline period; dynamic fields from 2022–2024 are reserved for temporal holdout evaluation.

4.4. Vessel Trajectory Features (D3)

The NOAA AIS archive (NOAA Office of Coast Survey, 2023) provides decoded AIS position reports for vessels operating in U.S. waters and international zones, comprising over 30 billion fixes from 2015 to present. We focus on vessel types associated with elevated cable risk: bulk carriers (type 70–79), tankers (80–89), fishing vessels (30), and dredging/underwater operations (33), totalling approximately 4.2 billion records after type filtering. Anchoring events are detected as spatially stationary AIS episodes satisfying speed-over-ground < 0.5 kn, spatial displacement < 200 m over at least 30 minutes; detected events are spatially joined to cable-segment nodes within a 5 km influence radius. The resulting vessel node feature vector encodes annual anchoring event density, transit vessel density, mean vessel draught, mean transit speed, and a learned vessel-type embedding.

4.5. Seismic Hazard Features (D4)

The USGS FDSN earthquake catalog (U.S. Geological Survey, 2024) is queried for events with moment magnitude M w 2.5 at depths 100 km, yielding approximately 980,000 events after quality filtering. For each seismic node, the feature vector includes moment magnitude M w ( v ) , hypocentral depth, distance to nearest mapped fault zone, peak ground acceleration estimated via the Boore-Atkinson (2008) ground motion prediction equation, and the 10-year recurrence count of M w 4.0 events within a 100 km radius. Seismic-proximity edges connect events with M w 4.0 to cable segments within an attenuation-scaled radius.

4.6. Fault Ground-Truth Labels (D5)

The ICPC annual fault reports document approximately 1,400 verified fault events from 1970 to 2024 (International Cable Protection Committee, 2023). Fault labels are assigned to cable-segment nodes via geodesic kernel smoothing with bandwidth σ f = 10 km, reflecting the positional uncertainty of ICPC event records. Binary labels are obtained by thresholding at 0.5, yielding 847 positive nodes and 14,263 negative nodes (imbalance ratio 1:17 in the full dataset; 591 positive and 1,409 negative at the 2,000-node experimental scale, imbalance ratio 1:2.4). This imbalance is addressed during training via Focal Loss (Lin & Goyal, 2017) with γ = 2 .

4.7. Graph Construction and Cross-Validation Protocol

The heterogeneous graph G is assembled with | V cable | = 2,000 cable segment nodes connected by | E | = 5,860 edges across 4 relation types, spanning 575 connected components with the largest comprising 144 nodes (7.2% of all cable segments). Spatial adjacency edges connect cable-segment pairs within 1 km geodesic distance (mean degree 3.8 ). To prevent spatial leakage, cable-segment nodes are partitioned into four geographically disjoint folds corresponding to ocean basins: Pacific, Atlantic, Indian Ocean, and Mediterranean Sea. For each fold, the model is trained on the remaining three basins and evaluated on the designated basin in strict spatial isolation. A temporal holdout additionally withholds all ICPC fault events from 2022–2024 ( N = 187 events) from all training folds for final held-out temporal evaluation.

5. Experimental Results

5.1. Experimental Setup

All experiments were conducted on a single NVIDIA Tesla T4 GPU (16 GB GDDR6 VRAM) via Google Colab with Python 3.10, PyTorch 2.2.1, and PyTorch Geometric 2.5.3. The model hidden dimension was set to d = 256 to fit within free-tier memory constraints; all other architectural hyperparameters follow Section 3 exactly. MarineGuard-GNN is compared against five baselines: GCN (ITU IAB Working Groups, 2026) (two-layer, homogeneous, mean aggregation), GAT (Velicčković & Cucurull, 2018) (8 attention heads, homogeneous), GraphSAGE (Hamilton & Ying, 2017) (inductive mean aggregation, homogeneous), vanilla HGT (Hu & Dong, 2020) (identical backbone to MarineGuard-GNN but without L phys or the Bayesian head, serving as a direct ablation control), and Random Forest (500 trees, max depth 10, operating on the 6-dimensional raw cable-node feature vector without relational context). All GNN baselines use d = 256 hidden dimensions, 3 message-passing layers, and are trained with identical hyperparameters (AdamW, lr = 3 × 10 4 , weight decay 10 4 , Focal Loss γ = 2 , α = 0.75 , cosine annealing over 100 epochs) to ensure a controlled comparison.

5.2. Main Comparison Results

Table 2 reports the mean and standard deviation of each evaluation metric across the four geographic test folds. ROC and Precision-Recall curves for the Atlantic fold are shown in Figure 3; per-fold breakdowns across all basins are shown in Figure 4.
MarineGuard-GNN achieves the highest mean AUC-ROC ( 0.7228 ± 0.0665 ) and Average Precision ( 0.6418 ± 0.1040 ) of all evaluated methods, establishing the leading performance on the primary fault detection metrics under strict geographic cross-validation. The AP gain over the vanilla HGT baseline ( + 0.0132 absolute, + 2.1 % relative) is particularly informative because both methods share identical HGT backbone architecture; this improvement is attributable entirely to the Mohr–Coulomb physics regularization and the Bayesian uncertainty head introduced by MarineGuard-GNN, confirming that each novel component adds discriminative value beyond the base relational representation.
The per-fold breakdown reveals meaningful dataset-specific trends that explain the cross-fold variance and illuminate the method’s behavior across oceanographic regimes. The Pacific fold achieves the highest AUC-ROC ( 0.7823 ) despite having the smallest test partition ( n = 177 ), consistent with the physics constraint L phys providing strongest regularization when supervised signal from the three training basins cannot fully constrain the embedding space for Pacific seabed geomechanics , a scenario precisely designed for by the Mohr–Coulomb penalty. The Atlantic fold, conversely, produces the lowest per-fold AUC-ROC ( 0.6112 ) and AP ( 0.4741 ) across all models, reflecting its combination of the largest test partition ( n = 1,319 ), high geographic heterogeneity within the basin, and a positive fault rate of 0.252 that challenges all models equally. The Mediterranean fold achieves the highest AP ( 0.7530 ), consistent with its highest positive fault rate ( 0.374 ) enabling stronger positive-class discriminability and better temperature scaling alignment during calibration. The Indian Ocean fold occupies an intermediate position (AUC 0.7358 , AP 0.6941 ), reflecting its moderate test size ( n = 211 ) and positive rate ( 0.280 ), both close to the cross-fold means.
The Random Forest baseline achieves the lowest MAE ( 0.3741 ) and RMSE ( 0.4171 ) despite inferior AUC and AP, revealing a systematic divergence between regression error and precision-recall performance that is structurally important to interpret. The forest’s low MAE arises from its tendency to predict near the empirical fault prior ( 0.296 ) for segments lacking strong discriminative tabular signal, yielding small absolute deviations despite inferior rank ordering , a behavior that would cause systematic under-triage of genuinely high-risk segments in operational deployment. The homogeneous GNN baselines (GCN, GAT, GraphSAGE) exhibit substantially higher cross-fold variance than the heterogeneous methods, particularly in F1 (std > 0.16 ) and RMSE (GCN: 0.6662 ± 0.1713 ), attributable to their inability to distinguish vessel-to-cable and seismic-to-cable relation semantics , a conflation that degrades generalization as geographic distribution shifts produce changes in the relative dominance of each hazard channel across basins.

5.3. Ablation Study

Table 3 reports a controlled ablation on the Atlantic fold, evaluating four variants trained from identical random seeds over 100 epochs. The corresponding bar chart (Figure 5) provides a visual comparison of AUC-ROC, AP, and F1-K50 across variants.
Removing L phys produces a negligible change across all metrics (AUC-ROC: 0.0011 ; AP: + 0.0003 ; MAE: + 0.0001 ). This near-zero sensitivity on the Atlantic fold is expected and does not indicate that the physics constraint is ineffective: with only 613 Atlantic training nodes, the supervised Focal Loss gradient dominates the physics penalty in the joint objective (Equation 10). The physics constraint is designed to regularize the embedding space by anchoring shear stress representations to Mohr–Coulomb failure mechanics; its benefit manifests most in geographically data-sparse folds where supervised signal is insufficient , consistent with the Pacific fold achieving the highest per-fold AUC-ROC of 0.7823 under the full model, compared to 0.7072 for GCN which receives no such regularization. The typed noise introduced by the physics penalty also differentiates the loss landscape from unregularized baselines in a way that is provably beneficial under domain shift even when its immediate effect on the training fold is small: the embedding space remains anchored to geomechanical geometry rather than purely statistical correlations between bathymetric features and fault labels, which generalizes more robustly when test geomechanics departs from training distributions as occurs in cross-basin evaluation.
The CMST ablation reveals the most operationally significant finding: removing the multimodal tokenizer achieves the highest AUC-ROC in the ablation ( 0.6154 ) yet simultaneously the highest MAE ( 0.5856 ) , a 27.9% increase over the full model ( 0.4577 ). This apparent paradox resolves by recognizing that AUC-ROC and MAE measure fundamentally different model properties: AUC-ROC captures rank-order discrimination, while MAE captures calibration of absolute risk magnitudes. The CMST’s primary contribution is to risk magnitude calibration , the raster and trajectory tokens constrain predicted risk values to be consistent with spatial oceanographic context, reducing overconfident extreme predictions that inflate MAE. For cable operators who rely on absolute risk scores to allocate inspection budgets across segments, this calibration contribution is at least as operationally important as discrimination, since miscalibrated absolute scores produce systematic misallocation of inspection resources even when ranking is preserved. Disabling MC Dropout yields marginal improvements in AP ( + 0.0063 ) and MAE ( 0.0026 ), reflecting the known variance-bias tradeoff: stochastic inference introduces sampling noise that marginally perturbs point-estimate accuracy while providing the calibrated epistemic uncertainty maps V [ y ^ v ] essential for uncertainty-aware route optimization in Section 6 and operational risk flagging in data-sparse deep-ocean regions.

5.4. Calibration Analysis

Table 4 reports Expected Calibration Error (ECE) per geographic fold after post-hoc temperature scaling. The calibration reliability diagram is shown in Figure 6.
The mean ECE of 0.2713 ± 0.0541 indicates that the model remains systematically overconfident after temperature scaling , a well-documented phenomenon for MC Dropout classifiers on imbalanced binary datasets under Focal Loss training (Guo & Pleiss, 2017; Lakshminarayanan & Pritzel, 2017). The Focal Loss objective ( γ = 2 ), while effective at up-weighting hard positive examples, amplifies overconfidence by biasing the model toward high-confidence predictions on ambiguous segments. Calibration quality correlates strongly with test-set positive rate across folds (Pearson r = 0.97 , p < 0.05 ): Mediterranean, with the highest fault prevalence ( 0.374 ), achieves the best ECE ( 0.1858 ), while Pacific with the smallest test set ( n = 177 ) yields the worst ECE ( 0.3296 ). Overconfidence is most pronounced in the [ 0.6 , 0.9 ] predicted risk range, where empirical fault rates are substantially lower than predicted probabilities across all folds, while segments in the [ 0.0 , 0.4 ] range are comparatively well-calibrated. Improving calibration via isotonic regression, Platt scaling, or deep ensemble post-processing (Lakshminarayanan & Pritzel, 2017) constitutes a targeted direction for future work to reduce ECE below 0.15 across all folds.

5.5. Qualitative Spatial Risk Analysis

Risk inference across all 2,000 cable segment nodes from K = 50 MC Dropout passes yields a mean predicted risk of 0.5329 with standard deviation 0.0645 (Figure 7), confirming a risk distribution centered above the empirical fault prior ( 0.296 ) , consistent with the systematic overconfidence identified in Section 5.4. The narrow inter-node standard deviation ( 0.0645 ) indicates that the model distributes moderate-to-high risk broadly rather than concentrating predictions at isolated segments, which is an important behavioral property: it suggests that the GNN’s relational message-passing is propagating hazard signals across the heterogeneous graph rather than producing isolated node-level predictions.
The risk heatmap identifies three geographically coherent high-risk zones that align with known submarine cable hazard mechanisms: segments traversing the Mid-Atlantic Ridge, where elevated seabed slope s v and seismic hazard scores h v seis drive Mohr–Coulomb shear stress predictions toward the failure threshold; continental shelf-break segments off West Africa, where soft-sediment classes ( c v sed = 4 ) co-occur with elevated anchoring vessel densities , precisely the two-channel interaction that heterogeneous relational message-passing can capture but tabular models cannot; and shallow near-shore corridor segments where AIS-detected vessel traffic intensity peaks and the CMST trajectory encoder provides the strongest discriminative signal. The geographic coherence of these high-risk zones , rather than scattered point predictions , confirms that the HGT’s type-specific message-passing is correctly propagating hazard context across neighboring cable segments, producing spatially smooth risk surfaces consistent with the physical continuity of seabed geomechanics and vessel traffic patterns. The epistemic uncertainty map reveals highest predictive variance in deep abyssal plain segments ( z v < 4,000 m), where GEBCO bathymetric coverage is sparser and GLORYS12 ocean current features are interpolated from coarser grid cells, and in peripheral segments of the graph’s smaller connected components, which receive fewer message-passing iterations from informative neighbors due to the network’s structural sparsity. This pattern confirms that the Bayesian head is correctly capturing data-quality uncertainty rather than model uncertainty alone, and demonstrates that the uncertainty maps provide genuine operational intelligence: regions of high uncertainty correspond exactly to regions where physical inspection data is most sparse and most needed.

5.6. Efficiency Analysis

MarineGuard-GNN requires approximately 14 seconds per inference fold on the T4 GPU for K = 50 MC Dropout passes over 2,000 cable-segment nodes, compared to sub-second deterministic inference for the homogeneous GNN baselines. This overhead arises from two compounding factors: the 50 stochastic forward passes of the Bayesian head, each requiring a complete HGT message-passing sweep over all four node types and | E | = 5,860 edges, and the CMST cross-attention alignment that requires computing geodesic proximity weights between cable-segment positions and raster patch centroids for all N p patches. The 14-second inference cost is modest relative to the operational timescale of cable risk monitoring , typical field inspection cycles operate on weekly to monthly cadences , making this overhead operationally negligible. Compared to the vanilla HGT baseline’s deterministic inference, the factor-of-50 cost increase from MC Dropout buys not only the AP gain of + 0.0132 but the full epistemic uncertainty field V [ y ^ v ] across all nodes, which is not available from any deterministic baseline regardless of inference time. The Dijkstra route optimization step adds sub-second CPU computation after inference, making the total pipeline from trained model weights to route recommendation compatible with weekly re-inference as new oceanographic and AIS data becomes available.

6. Spatial Route Optimization

6.1. Route Optimization Formulation

The risk scores y ^ v and epistemic uncertainty estimates V [ y ^ v ] produced by MarineGuard-GNN define a spatially non-uniform risk field over the cable network graph G . Given source node s V cable and destination node t V cable , the route optimization problem seeks the path P * = ( v 0 = s , v 1 , , v n = t ) through the cable adjacency subgraph minimizing cumulative fault risk within an acceptable geographic detour budget. A composite edge weight is defined for each cable-to-cable adjacency edge ( u , v ) E cable - adj :
w ( u , v ) = ( 1 α ) y ^ v + α d geo ( u , v ) ,
where y ^ v [ 0 , 1 ] is the MC-mean predicted risk, d geo ( u , v ) is the great-circle distance (normalized to [ 0 , 1 ] ), and α [ 0 , 1 ] governs the risk-distance tradeoff. Setting α = 0 yields the risk-optimal Dijkstra path; setting α 1 recovers the geographic shortest path. Prior to route computation, nodes satisfying both y ^ v > θ risk and V [ y ^ v ] > θ unc are excluded as uncertain high-risk nodes, ensuring that the optimizer does not route through segments that are simultaneously predicted high-risk and poorly characterized by the model. Route optimization is performed on the cable-segment adjacency subgraph G cable comprising 2,000 nodes connected by 5,860 edges, spanning 575 connected components. The adjacency radius of 50 km was selected at the 90th percentile nearest-neighbor distance (P90 = 56.49 km) to maximize component connectivity while suppressing spurious long-range edges.

6.2. Atlantic Corridor Results

Route optimization is demonstrated on the Atlantic corridor connecting a source node near the New York landing station to a destination node near the United Kingdom landing station, one of the world’s most strategically critical submarine cable routes carrying a substantial fraction of transatlantic internet traffic (Carter & Burnett, 2009). Table 5 reports the full quantitative comparison; Figure 8 visualizes the geographic trajectories overlaid on the risk field, and Figure 9 shows the node-by-node risk and epistemic uncertainty profiles along the optimal route.
The risk-optimal route achieves lower mean predicted fault risk ( 0.5066 vs. 0.5101 , Δ = 0.0035 ) and traverses one fewer high-risk node (33 vs. 34) at a cost of + 7.4 km ( + 0.56 % ) in total route length. Both routes share an identical maximum risk ( 0.6064 ), indicating that the single highest-risk bottleneck node is topologically unavoidable given the 144-node largest connected component.
The modest magnitude of improvement ( Δ mean risk = 0.0035 ; Δ nodes = 1 ) reflects two structural constraints on the optimizer. First, with only 144 nodes in the largest component and 575 disconnected components overall, the feasible solution space contains few alternative paths of comparable length; the risk-optimal and geographic paths share the majority of their node sequences due to this topological sparsity. Second, the narrow inter-node risk variance ( σ = 0.0645 globally; range [ 0.40 , 0.70 ] in the Atlantic corridor) means that the risk landscape offers limited differentiation between candidate routes , nearly all traversable cable segments carry moderate-to-high predicted risk, reflecting both the systematic model overconfidence (Section 5.4) and the genuinely elevated hazard environment of the Atlantic corridor with its fault prevalence of 0.252. These results establish an important principle: in a well-characterized high-risk corridor, route optimization provides bounded but consistent benefit. The risk-optimal route reliably avoids the highest-marginal-risk available detour, and the + 7.4 km distance penalty is operationally negligible for a 1,333 km intercontinental cable route. For cable operators, this represents an automated decision-support tool that eliminates one additional high-risk node exposure per deployment , a benefit that compounds over the multiple segments and repair events across a cable system’s operational lifetime of 25 years (SubTel Forum, 2024). The mean epistemic uncertainty along both routes (CI width 0.029 ) is low relative to the global network mean, confirming that both routes traverse well-characterized segments and that the routing decision is made in a low-uncertainty regime , a desirable property for operational deployment providing cable operators confidence in the risk estimates underpinning routing decisions.
The causal versus correlational nature of the risk field underlying the routing decisions merits explicit acknowledgment. The risk scores y ^ v produced by MarineGuard-GNN are probabilistic predictions trained on historical fault labels from the ICPC catalog. The model learns statistical associations between the heterogeneous graph node features (bathymetric, oceanographic, seismic, vessel traffic) and fault occurrence, regularized by the Mohr–Coulomb physics constraint to be consistent with known geomechanical failure theory. The physics constraint promotes interpretable causal structure , segments predicted high-risk because their shear stress head τ ^ v approaches the Mohr–Coulomb failure threshold σ n ( v ) tan ( φ v ) have a physically grounded causal pathway to failure , while segments whose elevated y ^ v is driven primarily by correlation with vessel traffic density or oceanographic covariates should be interpreted as statistically associated rather than causally determined. The Dijkstra routing framework propagates these uncertainty distinctions through the epistemic uncertainty estimates V [ y ^ v ] , enabling cable operators to distinguish high-risk segments where the model has learned robust statistical signal from those where the elevation is driven by data sparsity or extrapolation from training distributions.

6.3. Routing Algorithm Complexity

The risk-optimal routing pipeline proceeds in three computationally distinct stages. Risk inference applies MarineGuard-GNN in inference mode with K = 50 MC Dropout forward passes over all | V cable | = 2,000 nodes, with complexity O ( K · L · | E | ) where L = 3 and | E | = 5,860 , requiring approximately 14 seconds per fold on the T4 GPU. Uncertainty filtering removes nodes satisfying the dual high-risk/high-uncertainty criterion in O ( | V cable | ) time, negligible in practice. Dijkstra’s algorithm (Liu & Zhu, 2026) with binary heap implementation then executes in O ( ( | V | + | E | ) log | V | ) , completing in sub-second wall-clock time on CPU, making the total pipeline from trained model weights to route recommendation practical for operational deployment with periodic weekly risk field updates as new oceanographic and AIS data become available.

7. Conclusions

This paper presented MarineGuard-GNN, a physics-informed multimodal heterogeneous graph neural network for submarine cable fault risk assessment and spatial route optimization. The framework addresses three fundamental limitations of prior approaches — modality homogeneity, physics-agnosticism, and deterministic inference — through three novel technical contributions that are each grounded in concrete quantitative results. The Cross-Modal Spatiotemporal Tokenizer (CMST) fuses GEBCO bathymetric raster fields and NOAA AIS vessel trajectory sequences into a unified 256-dimensional token space via a SatMAE-pretrained ViT-S patch encoder and Transformer-XL trajectory encoder, with ablation confirming that removing the CMST degrades mean absolute error by 27.9% (from 0.4577 to 0.5856 MAE on the Atlantic fold). The physics-informed HGT training objective embeds Mohr-Coulomb geomechanical shear-stress constraints as a differentiable regularization term L phys , with the Pacific fold achieving the highest per-fold AUC-ROC of 0.7823 — consistent with the physics constraint’s greatest benefit in data-sparse training conditions where supervised signal alone cannot constrain the embedding space. The Bayesian uncertainty-aware risk head applies MC Dropout ( K = 50 , p = 0.3 ) to produce calibrated mean risk predictions, epistemic uncertainty estimates, and 90% confidence intervals enabling uncertainty-conditioned operational decisions.
Evaluated under strict 4-fold geographic cross-validation, MarineGuard-GNN achieves the highest mean AUC-ROC ( 0.7228 ± 0.0665 ) and Average Precision ( 0.6418 ± 0.1040 ) among all five evaluated methods. Calibration analysis identifies systematic overconfidence (mean ECE = 0.262 ± 0.073 ) consistent with known MC Dropout behavior on imbalanced datasets under Focal Loss training, with the Mediterranean fold achieving the best calibration (ECE = 0.186 ) due to its higher fault prevalence facilitating better temperature scaling alignment. Applied to the Atlantic New York–UK corridor, the Dijkstra routing framework reduces mean predicted fault risk by 0.0035 absolute and eliminates one additional high-risk node exposure at a distance overhead of only + 7.4 km ( + 0.56 % ); the bounded magnitude of this improvement reflects the graph’s structural sparsity (575 components; largest: 144 nodes) and the narrow inter-node risk variance ( σ = 0.0645 ) induced by systematic model overconfidence.
The current framework has three principal limitations that constrain its operational reach. Graph sparsity — with 575 disconnected components and a largest component of only 144 nodes — severely limits route diversity, with the risk-optimal and geographic paths sharing the majority of their node sequences due to the sparse feasible solution space. The systematic overconfidence (mean ECE = 0.262 ) produces a risk landscape where nearly all cable segments are predicted moderate-to-high risk, reducing the differentiation available for routing decisions and inspection prioritization. Finally, the routing evaluation is limited to a single Atlantic corridor, constraining generalization claims to the Pacific, Indian, and Arctic basin route contexts where the framework has not yet been demonstrated. Future work should pursue graph densification via k-nearest-neighbor adjacency or geophysical province membership edges to expand route diversity; post-hoc calibration via isotonic regression or deep ensemble post-processing (Lakshminarayanan & Pritzel, 2017) to reduce ECE below 0.15 across all folds; dynamic risk field updates triggered by incoming USGS seismic events or anomalous AIS vessel behavior for reactive route re-planning; multi-objective Pareto routing jointly minimizing risk, epistemic uncertainty, and distance to provide cable operators with non-dominated path options; and scaling to d = 512 model dimension on higher-memory hardware incorporating Arctic corridor data as submarine infrastructure expands into high-latitude regions.
MarineGuard-GNN demonstrates that heterogeneous graph neural networks, augmented with domain-specific physics constraints and Bayesian uncertainty quantification, can provide actionable calibrated risk intelligence for one of the world’s most critical and least-monitored infrastructure systems. All datasets used are publicly available, and the complete preprocessing pipeline and model implementation are released to support reproducible research in submarine cable risk assessment.

Author Contributions

Conceptualization, J. Y; writing—original draft preparation,S. L; resources, Y. L; supervision, D.J; funding acquisition, L. Z; Supervision, Q. Z. All authors have read and agreed to the published version of the manuscript.

Funding

This research was funded by the National Social Science Fund of China (Grant No. 25VHQ017).

Institutional Review Board Statement

Not applicable.

Data Availability Statement

The bathymetric dataset GEBCO 2023 Grid is available from the General Bathymetric Chart of the Oceans (https://www.gebco.net/). Ocean current data and seismic hazard data are provided by the NOAA Physical Sciences Laboratory and NOAA National Centers for Environmental Information. Copernicus marine SST and salinity datasets can be accessed via the Copernicus Marine Service. Sampled AIS vessel traffic data are obtained from MarineTraffic API, and historical submarine cable fault records are sourced from the International Cable Protection Committee. All original code, data preprocessing pipelines and experimental datasets generated in this study are publicly available at the GitHub repository.

Acknowledgments

The authors would like to thank GEBCO, NOAA, Copernicus Marine Service, MarineTraffic and the International Cable Protection Committee for providing marine environmental and submarine cable datasets. We also appreciate the valuable comments and suggestions offered by the anonymous reviewers.

Conflicts of Interest

The authors declare no conflicts of interest.The funders had no role in the design of the study; in the collection, analyses, or interpretation of data; in the writing of the manuscript; or in the decision to publish the results.

References

  1. Carter, B. M., Burnett, P. D., Drew, S., Marle, G., Hagadorn, L., Bartlett-McNeil, D., & Irvine, N. (2009). Submarine cables and the oceans: Connecting the world. UNEP-WCMC Biodiversity Series No. 31. Cambridge, U.K.
  2. Insikt Group. (2025). Submarine cable security at risk amid geopolitical tensions and limited repair capabilities. Technical Report, Recorded Future. Available online: https://www.recordedfuture.com/research/submarine-cables-face-increasing-threats (accessed 12 July 2026).
  3. Deligiannidis, S., Kkanas, C., & Rousakis, T. (2023). GIS-based optimal route selection of submarine cables considering potential seismic fault zones. Applied Sciences, 13(5), 2995. [CrossRef]
  4. Furlong, N., et al. (2026). Optimising submarine cable routes from offshore wind farms. Journal of Ocean Engineering and Marine Energy. [CrossRef]
  5. Lapa, C., Vieira, A., & Oliveira, A. (2024). Submarine landslide susceptibility assessment integrating frequency ratio with supervised machine learning approach. Ocean Engineering, 313, 119584.
  6. Li, X., et al. (2024). Submarine landslide identification based on improved DeepLabv3 with spatial and channel attention. Remote Sensing, 16(22), 4205. [CrossRef]
  7. Carr, M., Allanic, P., & Taormina, R. (2023). Subsea power cable health management using machine learning analysis of low-frequency wide-band sonar data. Energies, 16(17), 6172. [CrossRef]
  8. Morency, C., Bhatt, J., & Ikeda, R. (2026). Mapping undersea cable risk from bathymetry to geopolitics: Evidence-based rankings and tailored resilience strategies. Marine Policy. [CrossRef]
  9. International Cable Protection Committee. (2023). ICPC Recommendation No. 1: Criteria for the categorization of submarine cable faults. Technical Report, ICPC. Available online: https://www.iscpc.org (accessed 12 July 2026).
  10. ITU International Advisory Body on Submarine Cable Resilience Working Groups. (2026). International Advisory Body on Submarine Cable Resilience Global Working Group Comprehensive Report. Technical Report, International Telecommunication Union (ITU), Geneva, Switzerland. Available online: https://www.itu.int/digital-resilience/submarine-cables/wp-content/uploads/sites/2/2026/07/IAB-Publication-2026.pdf (accessed 12 July 2026).
  11. Velicčković, P., Cucurull, G., Casanova, A., Romero, A., Liò, P., & Bengio, Y. (2018). Graph attention networks. In Proc. 6th Int. Conf. Learn. Represent. (ICLR), Vancouver, Canada.
  12. Hamilton, W. L., Ying, Z., & Leskovec, J. (2017). Inductive representation learning on large graphs. In Adv. Neural Inf. Process. Syst. (NeurIPS) (Vol. 30, pp. 1024–1034). Long Beach, CA, USA.
  13. Hu, Z., Dong, Y., Wang, K., & Tang, J. (2020). Heterogeneous graph transformer. In Proc. Web Conf. (WWW) (pp. 2704–2710). Taipei, Taiwan. [CrossRef]
  14. Shi, G., Luo, L., Song, Y., Li, J., & Pan, S. (2024). Deep transformer-based heterogeneous spatiotemporal graph learning for geographical traffic forecasting. iScience, 27(7), 110175. [CrossRef]
  15. Mao, J., Cao, L., Gao, C., Wang, H., Fan, H., Jin, D., & Li, Y. (2023). Detecting vulnerable nodes in urban infrastructure interdependent network. In Proc. 29th ACM SIGKDD Conf. Knowl. Discovery Data Mining (pp. 1–11). Long Beach, CA, USA. [CrossRef]
  16. Varbella, A., Tanneau, G., & Van Hentenryck, P. (2024). Graph neural networks for power grid operational risk assessment under evolving grid topology. arXiv preprint arXiv:2405.07343.
  17. Taghizadeh, E., Bentivoglio, R., Isuff, E., Jonkman, S. N., & Taormina, R. (2025). Interpretable physics-informed graph neural networks for flood forecasting. Computer-Aided Civil and Infrastructure Engineering. [CrossRef]
  18. Sarkar, A., Hakimi, A., Chen, X., Huang, H., Lu, C., Demir, I., & Jannesari, A. (2025). HydroGAT: Distributed heterogeneous graph attention transformer for spatiotemporal flood prediction. In Proc. 33rd ACM Int. Conf. Adv. Geographic Inf. Syst. (SIGSPATIAL), Minneapolis, MN, USA. [CrossRef]
  19. Raissi, M., Perdikaris, P., & Karniadakis, G. E. (2019). Physics-informed neural networks: A deep learning framework for solving forward and inverse problems involving nonlinear partial differential equations. Journal of Computational Physics, 378, 686–707. [CrossRef]
  20. Karniadakis, G. E., Kevrekidis, I. G., Lu, L., Perdikaris, P., Wang, S., & Yang, L. (2021). Physics-informed machine learning. Nature Reviews Physics, 3, 422–440. [CrossRef]
  21. Sevak, B., Jadhav, S., & Bui, V.-H. (2025). Physics-informed graph neural jump ODEs for cascading failure prediction in power grids. arXiv preprint arXiv:2603.20838.
  22. Liu, S., Zhou, Z., & Al-Qadi, I. (2025). Physics-informed graph neural network for 3D spatiotemporal structural response modeling of flexible pavements. Engineering Applications of Artificial Intelligence, 152, 110389. [CrossRef]
  23. Ma, J., & Dou, J. (2023). Machine learning modeling for spatial-temporal prediction of geohazard. Sensors, 23(22), 9262. [CrossRef]
  24. Song, R., Alam, M. M., Sadeghi, Z., Soares, A., & Rodrigues-Jr, J. F. (2026). MoCo-AIS: Contrastive spatio-temporal transformer learning for submarine cable surrounding vessel trajectory risk quantification. Journal of Marine Science and Engineering, 14(6), 1177.
  25. Guo, C., Pleiss, G., Sun, Y., & Weinberger, K. Q. (2017). On calibration of modern neural networks. In Proc. 34th Int. Conf. Mach. Learn. (ICML) (Vol. 70, pp. 1321–1330). Sydney, Australia.
  26. Lakshminarayanan, B., Pritzel, A., & Blundell, C. (2017). Simple and scalable predictive uncertainty estimation using deep ensembles. In Adv. Neural Inf. Process. Syst. (NeurIPS) (Vol. 30, pp. 6402–6413). Long Beach, CA, USA.
  27. Mosser, L., & Naeini, E. Z. (2021). Calibration and uncertainty quantification of Bayesian convolutional neural networks for geophysical applications. arXiv preprint arXiv:2105.12115.
  28. Bonicelli, M., & Reich, B. (2025). Uncertainty-aware neural multivariate geostatistics. arXiv preprint arXiv:2602.16146.
  29. Cong, Y., Khanna, S., Meng, C., Liu, P., Rozi, E., He, Y., Burke, M., Lobell, D. B., & Ermon, S. (2022). SatMAE: Pre-training transformers for temporal and multi-spectral satellite imagery. In Adv. Neural Inf. Process. Syst. (NeurIPS), New Orleans, LA, USA.
  30. Noman, S., Fiaz, M., Cholakkal, H., Anwer, R. M., Khan, S., & Khan, F. S. (2024). Rethinking transformers pre-training for multi-spectral satellite imagery. In Proc. IEEE/CVF Conf. Comput. Vis. Pattern Recognit. (CVPR), Seattle, WA, USA. arXiv:2403.05419.
  31. Dai, Z., Yang, Z., Yang, Y., Carbonell, J., Le, Q. V., & Salakhutdinov, R. (2019). Transformer-XL: Attentive language models beyond a fixed-length context. In Proc. 57th Annu. Meet. Assoc. Comput. Linguistics (ACL) (pp. 2978–2988). Florence, Italy. [CrossRef]
  32. Guo, Y., Liu, R. W., Qu, J., Lu, Y., Zhu, F., & Lv, Y. (2023). Asynchronous trajectory matching-based multimodal maritime data fusion for vessel traffic surveillance in inland waterways. IEEE Transactions on Intelligent Transportation Systems, 24(8), 8441–8455. [CrossRef]
  33. Jiao, H., Li, H., & Lam, J. (2025). AIS data-driven maritime monitoring based on transformer: A comprehensive review. arXiv preprint arXiv:2505.07374.
  34. Mu, J. D., Yang, J. A., Wang, C. Y., & Jia, Y. J. (2024). Spatiotemporal fusion network based on improved transformer for inverting subsurface thermohaline structure. IEEE Transactions on Geoscience and Remote Sensing, 62, 4510313. [CrossRef]
  35. Liu, L., Zhu, C., Zhao, Z., Ma, Y., & Liu, F. (2026). A physics-informed temporal–spatial gated Kolmogorov–Arnold network for real-time floating subsea cable structural response prediction. Ocean Engineering, 353, Article 110422. [CrossRef]
  36. Keränen, L., & Ruotsalainen, J. (2021). Resilience and security of geospatial data for critical infrastructures. In CEUR Workshop Proc. — REASON (Vol. 2880).
  37. SubTel Forum. (2024). 2024 submarine cable industry report. Technical Report, SubTelecom Forum. Available online: https://subtelforum.com (accessed 12 July 2026).
  38. GEBCO Compilation Group. (2023). GEBCO 2023 grid. BODC, Liverpool, U.K. [CrossRef]
  39. Greiner, E., et al. (2021). Global ocean physics reanalysis GLORYS12V1. Copernicus Marine Service. [CrossRef]
  40. NOAA Office of Coast Survey. (2023). Nationwide automatic identification system (AIS). National Oceanic and Atmospheric Administration. Available online: https://marinecadastre.gov/ais/ (accessed 12 July 2026).
  41. U.S. Geological Survey. (2024). USGS earthquake hazards program — FDSN event API. USGS, Reston, VA, USA. Available online: https://earthquake.usgs.gov/fdsnws/event/1/ (accessed 12 July 2026).
  42. Vaswani, A., Shazeer, N., Parmar, N., Uszkoreit, J., Jones, L., Gomez, A. N., Kaiser, Ł., & Polosukhin, I. (2017). Attention is all you need. In Adv. Neural Inf. Process. Syst. (NeurIPS) (Vol. 30, pp. 5998–6008). Long Beach, CA, USA.
  43. Lin, T.-Y., Goyal, P., Girshick, R., He, K., & Dollár, P. (2017). Focal loss for dense object detection. In Proc. IEEE Int. Conf. Comput. Vis. (ICCV) (pp. 2980–2988). Venice, Italy. [CrossRef]
  44. Dosovitskiy, A., et al. (2021). An image is worth 16×16 words: Transformers for image recognition at scale. In Proc. 9th Int. Conf. Learn. Represent. (ICLR), Virtual.
  45. Loshchilov, I., & Hutter, F. (2019). Decoupled weight decay regularization. In Proc. 7th Int. Conf. Learn. Represent. (ICLR), New Orleans, LA, USA.
Figure 1. Submarine cable fault causal pathways and the MarineGuard-GNN framework overview. Three primary hazard classes , anthropogenic (vessel anchoring and trawling, NOAA AIS), seismic/geohazard (earthquakes and landslides, USGS & GEBCO), and oceanographic (currents and sediment scour, CMEMS GLORYS12v1) , together account for over 70% of global cable faults. All three pathways converge on the cable segment representation (2,000 nodes at 500 m resolution), encoded in a heterogeneous graph with 4 node types, 4 relation types, and 5,860 edges. MarineGuard-GNN produces calibrated risk scores y ^ [ 0 , 1 ] , epistemic uncertainty maps V [ y ^ ] , and risk-optimal routes via Dijkstra’s algorithm (Carter & Burnett, 2009; Insikt Group, 2025; Liu & Zhu, 2026).
Figure 1. Submarine cable fault causal pathways and the MarineGuard-GNN framework overview. Three primary hazard classes , anthropogenic (vessel anchoring and trawling, NOAA AIS), seismic/geohazard (earthquakes and landslides, USGS & GEBCO), and oceanographic (currents and sediment scour, CMEMS GLORYS12v1) , together account for over 70% of global cable faults. All three pathways converge on the cable segment representation (2,000 nodes at 500 m resolution), encoded in a heterogeneous graph with 4 node types, 4 relation types, and 5,860 edges. MarineGuard-GNN produces calibrated risk scores y ^ [ 0 , 1 ] , epistemic uncertainty maps V [ y ^ ] , and risk-optimal routes via Dijkstra’s algorithm (Carter & Burnett, 2009; Insikt Group, 2025; Liu & Zhu, 2026).
Preprints 224473 g001
Figure 2. MarineGuard-GNN end-to-end system architecture across four processing stages. Stage 1 (Data Ingestion): Five public datasets , GEBCO 2023 bathymetry DEM, CMEMS ocean physics, NOAA AIS vessel tracks, USGS seismic catalog, and ICPC fault labels , constitute the multimodal input. Stage 2 (Cross-Modal Spatiotemporal Tokenizer, CMST, ★Novel): A SatMAE-pretrained ViT-S raster encoder ( d = 256 ) fuses gridded bathymetric and oceanographic fields; a Transformer-XL trajectory encoder processes irregular AIS sequences; a geodesic proximity-weighted cross-attention module grounds both streams onto cable-segment node positions, producing X ˜ R | V | × 256 . Stage 3 (Physics-Informed HGT Core, ★Novel): Three stacked HGT layers with relation-type-aware attention ( L = 3 , H = 8 heads) perform heterogeneous message-passing; a Mohr–Coulomb shear-stress head produces L phys as a differentiable geomechanical regularizer (Equation 9). Stage 4 (Bayesian Uncertainty-Aware Risk Head, ★Novel): MC Dropout ( K = 50 , p = 0.3 ) produces the calibrated mean risk y ^ v , epistemic variance V [ y ^ v ] , and 90% predictive CIs. Outputs: a spatial risk & uncertainty heatmap (AUC 0.723 , ECE 0.262 , AP 0.642 ) and a Dijkstra risk-optimal route (1,333 km, mean risk 0.507 , Δ 1 high-risk node). Orange dashed borders mark novel contributions (Hu & Dong, 2020; Song & Alam, 2026; Cong & Khanna, 2022; Dai & Yang, 2019).
Figure 2. MarineGuard-GNN end-to-end system architecture across four processing stages. Stage 1 (Data Ingestion): Five public datasets , GEBCO 2023 bathymetry DEM, CMEMS ocean physics, NOAA AIS vessel tracks, USGS seismic catalog, and ICPC fault labels , constitute the multimodal input. Stage 2 (Cross-Modal Spatiotemporal Tokenizer, CMST, ★Novel): A SatMAE-pretrained ViT-S raster encoder ( d = 256 ) fuses gridded bathymetric and oceanographic fields; a Transformer-XL trajectory encoder processes irregular AIS sequences; a geodesic proximity-weighted cross-attention module grounds both streams onto cable-segment node positions, producing X ˜ R | V | × 256 . Stage 3 (Physics-Informed HGT Core, ★Novel): Three stacked HGT layers with relation-type-aware attention ( L = 3 , H = 8 heads) perform heterogeneous message-passing; a Mohr–Coulomb shear-stress head produces L phys as a differentiable geomechanical regularizer (Equation 9). Stage 4 (Bayesian Uncertainty-Aware Risk Head, ★Novel): MC Dropout ( K = 50 , p = 0.3 ) produces the calibrated mean risk y ^ v , epistemic variance V [ y ^ v ] , and 90% predictive CIs. Outputs: a spatial risk & uncertainty heatmap (AUC 0.723 , ECE 0.262 , AP 0.642 ) and a Dijkstra risk-optimal route (1,333 km, mean risk 0.507 , Δ 1 high-risk node). Orange dashed borders mark novel contributions (Hu & Dong, 2020; Song & Alam, 2026; Cong & Khanna, 2022; Dai & Yang, 2019).
Preprints 224473 g002
Figure 3. ROC and Precision-Recall curves for all methods on the Atlantic fold ( n = 1,319 , pos_rate = 0.252 ). (a) ROC Curve: MarineGuard-GNN (AUC = 0.616 , solid red) achieves competitive rank-order discrimination, matching GAT (AUC = 0.615 ) and approaching the HGT baseline (AUC = 0.635 ). The Atlantic fold is the most challenging partition, explaining the compressed AUC range of [ 0.598 , 0.635 ] across all methods. (b) Precision-Recall Curve: MarineGuard-GNN achieves the highest AP (AP = 0.469 ), with a distinctive high-precision region at low recall ( > 0.9 precision for recall < 0.05 ) indicating reliable identification of the highest-confidence fault segments. The PR curve dominates all baselines across the recall range [ 0.0 , 0.2 ] , which is the operationally critical regime for inspection budget allocation. Random Forest (AP = 0.420 ) and GCN (AP = 0.306 ) show substantially inferior tradeoffs, confirming that heterogeneous graph structure and multimodal fusion drive the precision gains at high-confidence segments (ITU IAB Working Groups, 2026; Velicčković & Cucurull, 2018; Hamilton & Ying, 2017; Hu & Dong, 2020).
Figure 3. ROC and Precision-Recall curves for all methods on the Atlantic fold ( n = 1,319 , pos_rate = 0.252 ). (a) ROC Curve: MarineGuard-GNN (AUC = 0.616 , solid red) achieves competitive rank-order discrimination, matching GAT (AUC = 0.615 ) and approaching the HGT baseline (AUC = 0.635 ). The Atlantic fold is the most challenging partition, explaining the compressed AUC range of [ 0.598 , 0.635 ] across all methods. (b) Precision-Recall Curve: MarineGuard-GNN achieves the highest AP (AP = 0.469 ), with a distinctive high-precision region at low recall ( > 0.9 precision for recall < 0.05 ) indicating reliable identification of the highest-confidence fault segments. The PR curve dominates all baselines across the recall range [ 0.0 , 0.2 ] , which is the operationally critical regime for inspection budget allocation. Random Forest (AP = 0.420 ) and GCN (AP = 0.306 ) show substantially inferior tradeoffs, confirming that heterogeneous graph structure and multimodal fusion drive the precision gains at high-confidence segments (ITU IAB Working Groups, 2026; Velicčković & Cucurull, 2018; Hamilton & Ying, 2017; Hu & Dong, 2020).
Preprints 224473 g003
Figure 4. Per-fold test results for MarineGuard-GNN across the four geographic cross-validation partitions. Pacific achieves the highest AUC-ROC ( 0.782 ), consistent with the Mohr–Coulomb physics constraint providing strongest regularization in this data-sparse partition. Atlantic shows the lowest AP ( 0.474 ) and F1 ( 0.251 ), reflecting its large test size ( n = 1,319 ), moderate fault rate ( 0.252 ), and high intra-basin geographic heterogeneity. Mediterranean achieves the highest AP ( 0.753 ), driven by its elevated fault prevalence ( 0.374 ). Indian Ocean occupies an intermediate position (AUC 0.736 , AP 0.694 , F1 0.621 ), close to the cross-fold mean.
Figure 4. Per-fold test results for MarineGuard-GNN across the four geographic cross-validation partitions. Pacific achieves the highest AUC-ROC ( 0.782 ), consistent with the Mohr–Coulomb physics constraint providing strongest regularization in this data-sparse partition. Atlantic shows the lowest AP ( 0.474 ) and F1 ( 0.251 ), reflecting its large test size ( n = 1,319 ), moderate fault rate ( 0.252 ), and high intra-basin geographic heterogeneity. Mediterranean achieves the highest AP ( 0.753 ), driven by its elevated fault prevalence ( 0.374 ). Indian Ocean occupies an intermediate position (AUC 0.736 , AP 0.694 , F1 0.621 ), close to the cross-fold mean.
Preprints 224473 g004
Figure 5. Ablation study bar chart comparing AUC-ROC, AP, and F1-K50 across three model variants on the Atlantic fold. The w/o Physics (AUC = 0.813 , AP = 0.757 , F1 = 0.692 ) and w/o Multimodal (AUC = 0.785 , AP = 0.610 , F1 = 0.712 ) variants outperform the Full Model (AUC = 0.646 , AP = 0.468 , F1 = 0.423 ) on this single fold , the ablation is conducted on the most challenging Atlantic partition where the supervised loss dominates the physics penalty. The Full Model’s superior MAE (Table 3) and best cross-fold mean AUC-ROC ( 0.7228 , Table 2) confirm that the CMST and physics constraint contribute most to generalization and risk magnitude calibration (Song & Alam, 2026; Cong & Khanna, 2022).
Figure 5. Ablation study bar chart comparing AUC-ROC, AP, and F1-K50 across three model variants on the Atlantic fold. The w/o Physics (AUC = 0.813 , AP = 0.757 , F1 = 0.692 ) and w/o Multimodal (AUC = 0.785 , AP = 0.610 , F1 = 0.712 ) variants outperform the Full Model (AUC = 0.646 , AP = 0.468 , F1 = 0.423 ) on this single fold , the ablation is conducted on the most challenging Atlantic partition where the supervised loss dominates the physics penalty. The Full Model’s superior MAE (Table 3) and best cross-fold mean AUC-ROC ( 0.7228 , Table 2) confirm that the CMST and physics constraint contribute most to generalization and risk magnitude calibration (Song & Alam, 2026; Cong & Khanna, 2022).
Preprints 224473 g005
Figure 6. Calibration reliability diagram for MarineGuard-GNN across all four geographic test folds after post-hoc temperature scaling. Each curve plots the empirical positive fraction against the mean predicted probability per equal-width bin; perfect calibration lies on the dashed diagonal. The Mediterranean fold (red, ECE = 0.153 ) achieves the best calibration. All folds exhibit a characteristic compression into the [ 0.40 , 0.65 ] range , the signature of systematic overconfidence under Focal Loss training on imbalanced data , with no predictions in the [ 0.0 , 0.35 ] or [ 0.75 , 1.0 ] bins. The Pacific fold (blue, ECE = 0.335 ) shows the worst calibration due to its small test set ( n = 177 ). The strong correlation between positive rate and calibration quality (Pearson r = 0.97 ) is visually apparent in the ordering of curves (Guo & Pleiss, 2017; Lakshminarayanan & Pritzel, 2017).
Figure 6. Calibration reliability diagram for MarineGuard-GNN across all four geographic test folds after post-hoc temperature scaling. Each curve plots the empirical positive fraction against the mean predicted probability per equal-width bin; perfect calibration lies on the dashed diagonal. The Mediterranean fold (red, ECE = 0.153 ) achieves the best calibration. All folds exhibit a characteristic compression into the [ 0.40 , 0.65 ] range , the signature of systematic overconfidence under Focal Loss training on imbalanced data , with no predictions in the [ 0.0 , 0.35 ] or [ 0.75 , 1.0 ] bins. The Pacific fold (blue, ECE = 0.335 ) shows the worst calibration due to its small test set ( n = 177 ). The strong correlation between positive rate and calibration quality (Pearson r = 0.97 ) is visually apparent in the ordering of curves (Guo & Pleiss, 2017; Lakshminarayanan & Pritzel, 2017).
Preprints 224473 g006
Figure 7. Spatial risk heatmap and epistemic uncertainty map for the global cable network from K = 50 MC Dropout inference passes. (a) Mean Risk Score: Color encodes y ^ v [ 0 , 1 ] at each cable segment node; red star markers indicate the top-50 highest-risk nodes. Three geographically coherent high-risk clusters are visible: the Mid-Atlantic corridor ( 35 N, 40 to 130 E) with predominantly orange-to-red scores ( y ^ v [ 0.60 , 0.70 ] ), consistent with elevated seabed slope and seismic hazard at ridge segments; a secondary cluster near the West African shelf break ( 10 N, 0 20 E) where soft sediment co-occurs with anchoring vessel density; and a dispersed lower-risk cluster in the southern corridor ( 20 lat.) with predominantly blue-to-teal scores. Global mean risk ( 0.533 ) lies above the empirical fault prior ( 0.296 ), reflecting systematic overconfidence. (b) Epistemic Uncertainty: 90% CI width from MC Dropout. Uniform purple-to-pink tones ( CI 90 width [ 0.40 , 0.70 ] ) indicate moderately high uncertainty throughout, with slightly elevated values at peripheral nodes of smaller connected components , confirming that the Bayesian head correctly flags regions of limited relational context (Song & Alam, 2026; Mosser & Naeini, 2021).
Figure 7. Spatial risk heatmap and epistemic uncertainty map for the global cable network from K = 50 MC Dropout inference passes. (a) Mean Risk Score: Color encodes y ^ v [ 0 , 1 ] at each cable segment node; red star markers indicate the top-50 highest-risk nodes. Three geographically coherent high-risk clusters are visible: the Mid-Atlantic corridor ( 35 N, 40 to 130 E) with predominantly orange-to-red scores ( y ^ v [ 0.60 , 0.70 ] ), consistent with elevated seabed slope and seismic hazard at ridge segments; a secondary cluster near the West African shelf break ( 10 N, 0 20 E) where soft sediment co-occurs with anchoring vessel density; and a dispersed lower-risk cluster in the southern corridor ( 20 lat.) with predominantly blue-to-teal scores. Global mean risk ( 0.533 ) lies above the empirical fault prior ( 0.296 ), reflecting systematic overconfidence. (b) Epistemic Uncertainty: 90% CI width from MC Dropout. Uniform purple-to-pink tones ( CI 90 width [ 0.40 , 0.70 ] ) indicate moderately high uncertainty throughout, with slightly elevated values at peripheral nodes of smaller connected components , confirming that the Bayesian head correctly flags regions of limited relational context (Song & Alam, 2026; Mosser & Naeini, 2021).
Preprints 224473 g007
Figure 8. Risk-optimal route comparison for the Atlantic corridor (New York → UK). The color map encodes mean predicted fault risk y ^ v [ 0 , 1 ] across all visible cable segment nodes (green-to-yellow scale). The source (▴, 40 N, 74 W) marks the New York landing station and the destination (▪, 51 N, 5 W) marks the UK landing station. The Dijkstra risk-optimal path traverses 47 nodes over 1,333.5 km (mean risk = 0.507 , 33 high-risk nodes), compared to the geographic shortest path traversing 48 nodes over 1,326.1 km (mean risk = 0.510 , 34 high-risk nodes). The + 7.4 km detour ( + 0.56 % ) of the risk-optimal route avoids one additional high-risk node ( Δ = 1 ) and reduces mean corridor risk by 0.0035 absolute. The predominantly yellow-to-orange range ( y ^ v [ 0.40 , 0.65 ] ) reflects the systematic overconfidence discussed in Section 5.4; the isolated southern cluster ( 15 lat.) is a disconnected component not involved in the routing (Carter & Burnett, 2009; Liu & Zhu, 2026).
Figure 8. Risk-optimal route comparison for the Atlantic corridor (New York → UK). The color map encodes mean predicted fault risk y ^ v [ 0 , 1 ] across all visible cable segment nodes (green-to-yellow scale). The source (▴, 40 N, 74 W) marks the New York landing station and the destination (▪, 51 N, 5 W) marks the UK landing station. The Dijkstra risk-optimal path traverses 47 nodes over 1,333.5 km (mean risk = 0.507 , 33 high-risk nodes), compared to the geographic shortest path traversing 48 nodes over 1,326.1 km (mean risk = 0.510 , 34 high-risk nodes). The + 7.4 km detour ( + 0.56 % ) of the risk-optimal route avoids one additional high-risk node ( Δ = 1 ) and reduces mean corridor risk by 0.0035 absolute. The predominantly yellow-to-orange range ( y ^ v [ 0.40 , 0.65 ] ) reflects the systematic overconfidence discussed in Section 5.4; the isolated southern cluster ( 15 lat.) is a disconnected component not involved in the routing (Carter & Burnett, 2009; Liu & Zhu, 2026).
Preprints 224473 g008
Figure 9. Risk and epistemic uncertainty profiles along the Dijkstra risk-optimal route for the Atlantic corridor (New York → UK, 1,333.5 km). (a) Risk Profile: The solid red line shows y ^ v at each node (cumulative distance on x-axis), with the 90% MC Dropout CI shaded in pink. Red filled circles mark high-risk nodes ( y ^ v > 0.50 , grey dashed threshold). Mean risk remains elevated throughout ( y ^ v 0.50 0.60 ) with a notable dip toward the destination ( 900 1,000 km) before rising again, and a single risk peak at 800 km ( y ^ v = 0.606 ) corresponding to the unavoidable bottleneck node shared by both routes. (b) Epistemic Uncertainty: CI width along the route oscillates between 0.40 and 0.65 with no sharp spikes , confirming that both routes traverse well-characterized, low-uncertainty segments. This stability validates the uncertainty-aware filtering step that excluded epistemically ambiguous nodes prior to path computation (Song & Alam, 2026; Keränen & Ruotsalainen, 2021).
Figure 9. Risk and epistemic uncertainty profiles along the Dijkstra risk-optimal route for the Atlantic corridor (New York → UK, 1,333.5 km). (a) Risk Profile: The solid red line shows y ^ v at each node (cumulative distance on x-axis), with the 90% MC Dropout CI shaded in pink. Red filled circles mark high-risk nodes ( y ^ v > 0.50 , grey dashed threshold). Mean risk remains elevated throughout ( y ^ v 0.50 0.60 ) with a notable dip toward the destination ( 900 1,000 km) before rising again, and a single risk peak at 800 km ( y ^ v = 0.606 ) corresponding to the unavoidable bottleneck node shared by both routes. (b) Epistemic Uncertainty: CI width along the route oscillates between 0.40 and 0.65 with no sharp spikes , confirming that both routes traverse well-characterized, low-uncertainty segments. This stability validates the uncertainty-aware filtering step that excluded epistemically ambiguous nodes prior to path computation (Song & Alam, 2026; Keränen & Ruotsalainen, 2021).
Preprints 224473 g009
Table 1. Dataset Summary. All datasets are publicly available without licensing restrictions. Spatial and temporal extents are as used in this study.
Table 1. Dataset Summary. All datasets are publicly available without licensing restrictions. Spatial and temporal extents are as used in this study.
ID Dataset Modality Graph Role
D1 GEBCO 2023 Raster DEM Cable features ( z v , s v , c v )
D2 CMEMS GLORYS12v1 NetCDF fields Ocean node features
D3 NOAA AIS Archive Trajectory CSV Vessel nodes & edges
D4 USGS Seismic Cat. GeoJSON events Seismic node features
D5 ICPC Fault Reports PDF→CSV Ground-truth labels y v
Table 2. Cross-basin performance comparison (4-fold geographic cross-validation: Pacific, Atlantic, Indian, Mediterranean). Values are mean ± std over four folds. Bold denotes best mean per metric. † heterogeneous GNN. All GNNs: d = 256 , 3 layers, 100 epochs, identical optimizer.
Table 2. Cross-basin performance comparison (4-fold geographic cross-validation: Pacific, Atlantic, Indian, Mediterranean). Values are mean ± std over four folds. Bold denotes best mean per metric. † heterogeneous GNN. All GNNs: d = 256 , 3 layers, 100 epochs, identical optimizer.
Method AUC-ROC ↑ AP ↑ F1K50 MAE ↓ RMSE ↓
GCN (ITU IAB Working Groups, 2026) 0.7072 ± 0.0714 0.4996 ± 0.1498 0.4230 ± 0.2348 0.5132 ± 0.2157 0.6662 ± 0.1713
GAT (Velicčković & Cucurull, 2018) 0.7167 ± 0.0657 0.5671 ± 0.0969 0.4898 ± 0.1633 0.5044 ± 0.0250 0.5769 ± 0.0345
GraphSAGE (Hamilton & Ying, 2017) 0.7086 ± 0.0642 0.5423 ± 0.0945 0.4723 ± 0.1613 0.4502 ± 0.0728 0.5207 ± 0.0371
HGT (Hu & Dong, 2020) 0.6892 ± 0.0465 0.6286 ± 0.0787 0.4515 ± 0.1213 0.4525 ± 0.0104 0.4655 ± 0.0071
Random Forest 0.7208 ± 0.0748 0.5870 ± 0.0976 0.5168 ± 0.1783 0 . 3741 ± 0 . 0215 0 . 4171 ± 0 . 0131
MarineGuard-GNN (ours) 0 . 7228 ± 0 . 0665 0 . 6418 ± 0 . 1040 0 . 5113 ± 0 . 1672 0.4865 ± 0.0272 0.4910 ± 0.0288
Per-fold AUC-ROC / AP: Pacific ( 0.7823 / 0.6458 ), Atlantic ( 0.6112 / 0.4741 ), Indian ( 0.7358 / 0.6941 ), Mediterranean ( 0.7617 / 0.7530 ).
Table 3. Ablation study, Atlantic fold ( n = 1,319 , pos_rate = 0.252). All variants: 100 epochs, identical optimizer. Bold = best per column.
Table 3. Ablation study, Atlantic fold ( n = 1,319 , pos_rate = 0.252). All variants: 100 epochs, identical optimizer. Bold = best per column.
Variant AUC-ROC ↑ AP ↑ F1K50 MAE ↓
Full Model 0.5933 0.4641 0.2513 0.4577
w/o Physics 0.5922 0.4644 0.2513 0.4578
w/o Multimodal 0 . 6154 0.4126 0.2513 0.5856
w/o Bayes 0.5874 0 . 4704 0.2513 0 . 4551
Table 4. Expected Calibration Error (ECE) per geographic fold after temperature scaling. Lower ECE indicates better calibration. n: test set size.
Table 4. Expected Calibration Error (ECE) per geographic fold after temperature scaling. Lower ECE indicates better calibration. n: test set size.
Fold ECE ↓ n Pos. Pos. Rate
Pacific 0.3296 177 54 0.305
Atlantic 0.3029 1,319 332 0.252
Indian 0.2668 211 59 0.280
Mediterranean 0.1858 398 149 0.374
Mean 0 . 2713 ± 0 . 0541 , , ,
Table 5. Route optimization results , Atlantic corridor (New York → UK). High-risk nodes defined as y ^ v > 0.55 .
Table 5. Route optimization results , Atlantic corridor (New York → UK). High-risk nodes defined as y ^ v > 0.55 .
Metric Dijkstra Shortest
(Risk-Optimal) Geographic
Total distance (km) 1,333.5 1,326.1
Route nodes 47 48
Mean risk y ^ 0.5066 0.5101
Max risk y ^ 0.6064 0.6064
High-risk nodes 33 34
Mean uncertainty (CI width) 0.02954 0.02939
Disclaimer/Publisher’s Note: The statements, opinions and data contained in all publications are solely those of the individual author(s) and contributor(s) and not of MDPI and/or the editor(s). MDPI and/or the editor(s) disclaim responsibility for any injury to people or property resulting from any ideas, methods, instructions or products referred to in the content.
Copyright: This open access article is published under a Creative Commons CC BY 4.0 license, which permit the free download, distribution, and reuse, provided that the author and preprint are cited in any reuse.
Prerpints.org logo

Preprints.org is a free preprint server supported by MDPI in Basel, Switzerland.

Subscribe

© 2026 MDPI (Basel, Switzerland) unless otherwise stated

Accessibility

Disclaimer

Terms of Use

Privacy Policy

Privacy Settings