A Small-Sample Graph Neural Network Approach for Predicting Sortie Mission Reliability of Shipborne Vehicle Layouts
Abstract
1. Introduction
- To develop an effective modeling framework for capturing the complex multidimensional dependencies between shipborne vehicles, to improve the accuracy of sortie mission reliability prediction [33];
- To implement a theoretically sound uncertainty quantification module that provides calibrated uncertainty estimates for all predictions to support risk-aware decision-making in operational naval scenarios [36].
2. Methods
2.1. Problem Definition and Graph Representation Learning
- Spatial adjacency edges: These connect physically adjacent vehicles; edge weights are given by the Euclidean distance between vehicle positions.
- Functional dependency edges: These link vehicles that exhibit functional dependencies under physical constraints or mission rules. Edge weights represent dependency strength, determined according to vehicle types, constraint conditions, and mission-specific criteria.
- Sortie-order edges: These are directed edges that represent the temporal ordering of vehicle sorties; edge weights correspond to inter-sortie time intervals.
2.2. Small-Sample Graph Neural Network Architecture Design
2.2.1. Multi-Relational Graph Convolutional Layer
2.2.2. Attention Mechanism with Adaptive Weighting
2.2.3. Small-Sample Regularization Techniques
2.2.4. Uncertainty Quantification Module
2.3. Training Strategy
2.3.1. Meta-Learning Pretraining
- Sample a batch of missions ;
- For each mission, compute the adapted parameters via one (or several) inner-loop gradient steps: ;
- Evaluate the meta-objective across missions: ;
- Update the initialization by taking a gradient step on the meta-objective: .
2.3.2. Contrastive Learning for Enhanced Representations
- Node-feature perturbation: Add Gaussian noise to node features or apply feature masking;
- Edge perturbation: Randomly add or delete a proportion of edges.
2.3.3. Knowledge Distillation and Transfer Learning
2.4. Reliability Prediction and Evaluation Methods
2.4.1. Reliability Prediction Pipeline
- Graph construction: Construct a multi-relational graph according to the vehicles’ layouts, including nodes, edges and associated features.
- Graph encoding: Employ multi-relational graph convolutional layers together with attention mechanisms to learn low-dimensional node representations.
- Graph pooling: Aggregate node representations into a graph-level representation using attention pooling. , where denotes the attention weight of node v, which is computed by a small neural network.
- Reliability prediction: Feed the graph-level representation into a fully connected layer to obtain the reliability prediction . , where denotes the sigmoid activation function, mapping the output to the interval [0, 1] to represent a reliability probability.
- Uncertainty estimation: Obtain an uncertainty estimate by performing multiple forward passes via Monte Carlo sampling and computing the variance of the predictions.
2.4.2. Evaluation Metrics
- Predictive accuracy metrics: Mean squared error (MSE)—; mean absolute error (MAE)—; and coefficient of determination (R2)—;
- Reliability assessment metrics: Reliability accuracy—the proportion of predictions whose deviation from the true reliability lies within a preset allowable tolerance; interval coverage—the proportion of predicted uncertainty intervals that contain the true value, used to assess the calibration of uncertainty estimates;
- Computational efficiency metrics: Training time—wall-clock time required to train the model, inference time—time required for a single prediction, computational complexity—theoretical analysis of the model’s time and space complexity.
2.4.3. Baseline Comparisons
- Traditional reliability analysis method: Minimal path-set method;
- Classical machine learning methods: Support vector regression (SVR), random forest regression, and multilayer perceptron (MLP);
- Standard graph neural network methods: Graph convolutional network (GCN), graph attention network (GAT), and graph sampling and aggregation (GraphSAGE).
3. Experiments
3.1. Experimental Setup
3.1.1. Dataset Description
- Vehicles’ attributes: Vehicle type, physical dimensions, failure rates and other basic parameters.
- Spatial layout: Two-dimensional coordinates, exit coordinates, orientation and other positional information.
- Spatial relationships: Inter-vehicle distances, relative positions and mutual influence information.
- Sortie-mission information: Vehicle dispatch order, path planning and other mission-related details.
- Reliability labels: Sortie-mission reliability values computed by the improved minimal path-set method proposed in our previous work [6]. The calculation process adopts the disjoint sum-of-products algorithm with a computational error controlled below 0.1% to ensure label accuracy. The reliability values are normalized to the interval [0, 1].
3.1.2. Experimental Environment and Hyperparameter Settings
3.1.3. Comparative Methods and Parameter Settings
- Minimal path-set method: Minimal path sets are identified using an improved tabu-search algorithm augmented with a divide-and-conquer strategy, and the resulting minimal path sets are processed using the disjoint sum-of-products method.
- Classical machine learning methods:
- Support Vector Regression (SVR): Radial basis function (RBF) kernel; regularization parameter C = 1.0; kernel coefficient = 0.1.
- Random Forest Regression: Ensemble of 100 decision trees; maximum tree depth = 10.
- Multilayer Perceptron (MLP): Three hidden layers, each with 64 neurons; ReLU activation.
- Graph neural network methods:
- Graph Convolutional Network (GCN): 2 GCN layers; hidden dimension = 64.
- Graph Attention Network (GAT): 2 GAT layers; 4 attention heads; hidden dimension = 64.
- GraphSAGE (sampling and aggregation): Neighbor sample size = 10; LSTM aggregator.
3.2. Experimental Results and Analysis
3.2.1. Comparison of Predictive Accuracy
3.2.2. Computation-Efficiency Comparison
3.2.3. Effectiveness Analysis of the Small-Sample Learning Strategy
3.2.4. Analysis of Uncertainty Estimation Performance
3.2.5. Parameter Sensitivity Analysis
4. Discussion
4.1. Advantages of the Proposed Method
4.2. Interpretability Analysis
4.3. Practical Value
4.4. Comparison with Existing Studies
5. Limitations
- Extreme small-sample scenario constraints: While SS-GNN achieves satisfactory performance with 60 training samples, preliminary experiments show that its drops to 0.83 when the sample size is reduced to 15, indicating that the model still has limitations in extreme, few-shot scenarios with fewer than 20 samples. Future work will introduce few-shot learning methods based on prototype learning to further improve performance in ultra-low data regimes.
- Insufficient domain knowledge integration: The current model only incorporates basic spatial and functional constraints, and does not integrate deeper domain knowledge such as failure propagation mechanisms, mission priority rules, and marine environmental impacts. The integration of domain knowledge graphs and physics-informed neural networks will be explored in future work to further improve prediction fidelity.
- Interpretability deficiencies: Although we have conducted attention-weight-based interpretability analysis, the model still lacks causal interpretability for decision-making. Future work will introduce explainable AI frameworks to provide explicit causal chains between layout features and reliability predictions, to meet the transparency requirements of military decision support systems.
6. Conclusions
Author Contributions
Funding
Data Availability Statement
Acknowledgments
Conflicts of Interest
Nomenclature
| Classification | Symbol | Description |
| Basic Parameters | Attributed graph corresponding to the shipborne vehicle layout | |
| Set of shipborne vehicle nodes | ||
| Set of edges encoding spatial relations or inter-vehicle dependencies | ||
| Node feature matrix | ||
| Individual shipborne vehicle node | ||
| Feature vector of node | ||
| Edge connecting node and | ||
| Parameters for the multi-relational graph convolutional layer | Feature vector of node in the -th network layer | |
| Non-linear activation function | ||
| Set of edge relation types | ||
| Set of neighbor nodes of node under relation | ||
| Normalization constant for node under relation | ||
| Learnable weight matrix for relation in the -th layer | ||
| Learnable weight matrix for self-feature transformation of nodes in the -th layer | ||
| Feature vector of node in the -th network layer | ||
| Parameters for the attention mechanism | Raw attention coefficient between target node and neighbor under relation | |
| Leaky Rectified Linear Unit activation function | ||
| Learnable attention weight vector | ||
| Feature transformation matrix | ||
| Embedding vector of relation | ||
| Normalized attention weight | ||
| Softmax normalization operation performed over the neighbor set of node under relation | ||
| Parameters for the small-sample regularization | Graph Laplacian regularization term | |
| Adjacency matrix element, indicating whether node and are connected | ||
| / | Feature representation of node / | |
| Feature matrix after noise injection | ||
| Injected Gaussian noise | ||
| Gaussian distribution with mean 0 and variance | ||
| Hyperparameter of noise intensity | ||
| Parameters for the uncertainty quantification | Set of model weights | |
| Set of variational parameters | ||
| Individual model weight parameter | ||
| Variational parameter corresponding to individual weight | ||
| Parameters for the Meta-learning pretraining | Sampled individual task | |
| Loss function for individual task | ||
| Adapted parameters after inner-loop update for a single task | ||
| Inner-loop learning rate for meta-learning | ||
| Gradient operation with respect to parameter | ||
| Model parameterized by | ||
| Meta-objective loss function | ||
| Outer-loop learning rate for meta-learning | ||
| Parameters for the contrastive learning | Contrastive learning loss function | |
| Original graph sample | ||
| Positive sample graph after data augmentation | ||
| / | Representation vector of original graph / augmented graph | |
| Similarity calculation function, typically cosine similarity | ||
| Temperature hyperparameter | ||
| Negative sample graph | ||
| Parameters for the knowledge distillation and transfer learning | Total distillation loss function | |
| Weight coefficient of task loss | ||
| Task-specific prediction loss | ||
| Knowledge distillation loss | ||
| Kullback-Leibler divergence calculation function | ||
| Output logits of the student model | ||
| Output logits of the teacher model | ||
| Temperature hyperparameter for distillation | ||
| Parameters for the reliability prediction | Graph-level representation vector, obtained by weighted aggregation of node representations | |
| Pooling attention weight of node | ||
| Reliability prediction value | ||
| Weight matrix of the output layer | ||
| Bias term of the output layer | ||
| Sigmoid activation function | ||
| Parameters for the evaluation metrics | Mean Squared Error | |
| Mean Absolute Error | ||
| Coefficient of Determination | ||
| Total number of samples | ||
| Ground-truth reliability value of the -th sample | ||
| Predicted reliability value of the -th sample | ||
| Mean value of ground-truth reliability |
References
- Bildik, E.; Yuksek, B.; Tsourdos, A.; Inalhan, G. Development of Reinforcement Learning Based Mission Planning Method for Active Off-board Decoys on Naval Platforms. In Proceedings of the AIAA Science and Technology Forum and Exposition (AIAA SciTech Forum), San Diego, CA, USA, 3–7 January 2022. [Google Scholar] [CrossRef]
- Park, S.; Min, S.; Ha, Y. Analysis of the Combat Effectiveness of the Unmanned Surface Vehicle. J. Korea Soc. Nav. Sci. Technol. 2022, 5, 134–142. [Google Scholar] [CrossRef]
- Lee, B.Y.; Lee, J.-Y. A Study on the Required Capacities of the Multi-Purpose Unmanned Vehicle System in Marine Environment. J. Korea Soc. Syst. Eng. 2022, 18, 14–32. [Google Scholar] [CrossRef]
- Boretti, A. Unmanned surface vehicles for naval warfare and maritime security. J. Def. Model. Simul. Appl. Methodol. Technol. 2024, 15485129241283056. [Google Scholar] [CrossRef]
- Dui, H.; Zhang, C.; Bai, G.; Chen, L. Mission reliability modeling of UAV swarm and its structure optimization based on importance measure. Reliab. Eng. Syst. Saf. 2021, 215, 107879. [Google Scholar] [CrossRef]
- Shi, H.; Wang, N.; Liu, Q. Calculation Method for Sortie Mission Reliability of Shipborne Unmanned Vehicle Group. J. Mar. Sci. Eng. 2024, 12, 1309. [Google Scholar] [CrossRef]
- Wang, L.; Zhao, X.; Zhang, Y.; Wang, X.; Ma, T.; Gao, X. Unmanned aerial vehicle swarm mission reliability modeling and evaluation method oriented to systematic and networked mission. Chin. J. Aeronaut. 2021, 34, 466–478. [Google Scholar] [CrossRef]
- Nie, J.J.; Xu, Y.; Huang, Y.C.; Li, J.H. The Review of Image Processing Based on Graph Neural Network. In Proceedings of the 14th International Conference on Intelligent Robotics and Applications (ICIRA), Yantai, China, 22–25 October 2021. [Google Scholar] [CrossRef]
- Gkarmpounis, G.; Vranis, C.; Vretos, N.; Daras, P. Survey on Graph Neural Networks. IEEE Access 2024, 12, 128816–128832. [Google Scholar] [CrossRef]
- Maghdid, S.S.; Rashid, T.A.; Askar, S.K. Graph neural networks: Historical backgrounds, present revolutions, and conventionalization for the future. Int. J. Data Sci. Anal. 2025, 20, 5237–5299. [Google Scholar] [CrossRef]
- Wu, L.F.; Cui, P.; Pei, J.; Zhao, L.; Guo, X.J. Graph Neural Networks: Foundation, Frontiers and Applications. In Proceedings of the 29th ACM SIGKDD Conference on Knowledge Discovery and Data Mining (KDD), Long Beach, CA, USA, 6–10 August 2023. [Google Scholar] [CrossRef]
- Liu, Z.H.; Tan, H.C. Traffic Prediction with Graph Neural Network: A Survey. In Proceedings of the 20th and 21st Joint COTA International Conference of Transportation Professionals—Advanced Transportation, Enhanced Connection, Xian, China, 16–20 December 2021. [Google Scholar]
- Zhou, Y.; Zheng, H.X.; Huang, X.; Hao, S.F.; Li, D.A.; Zhao, J.M. Graph Neural Networks: Taxonomy, Advances, and Trends. ACM Trans. Intell. Syst. Technol. 2022, 13, 15. [Google Scholar] [CrossRef]
- Ruiz, L.; Gama, F.; Ribeiro, A. Graph Neural Networks: Architectures, Stability, and Transferability. Proc. IEEE 2021, 109, 660–682. [Google Scholar] [CrossRef]
- Lachaud, G.; Conde-Cespedes, P.; Trocan, M. Mathematical Expressiveness of Graph Neural Networks. Mathematics 2022, 10, 4770. [Google Scholar] [CrossRef]
- Asif, N.A.; Sarker, Y.; Chakrabortty, R.K.; Ryan, M.; Ahamed, M.H.; Saha, D.K.; Badal, F.R.; Das, S.K.; Ali, M.F.; Moyeen, S.I.; et al. Graph Neural Network: A Comprehensive Review on Non-Euclidean Space. IEEE Access 2021, 9, 60588–60606. [Google Scholar] [CrossRef]
- Skarding, J.; Gabrys, B.; Musial, K. Foundations and Modeling of Dynamic Networks Using Dynamic Graph Neural Networks: A Survey. IEEE Access 2021, 9, 79143–79168. [Google Scholar] [CrossRef]
- Cheung, M.; Shi, J.; Jiang, L.; Wright, O.; Moura, J.M.F. Pooling in Graph Convolutional Neural Networks. In Proceedings of the 53rd Asilomar Conference on Signals, Systems, and Computers (ACSSC), Pacific Grove, CA, USA, 3–6 November 2019. [Google Scholar] [CrossRef]
- Tan, Q.; Lai, J.L.; Zhao, C.R.; Wu, Z.Z.; Zhang, X. AFGN: Adaptive Filtering Graph Neural Network for Few-Shot Learning. Appl. Sci. 2024, 14, 8988. [Google Scholar] [CrossRef]
- Zhou, Y.F.; Yu, L.L. Few-shot learning via weighted prototypes from graph structure. Pattern Recognit. Lett. 2023, 176, 230–235. [Google Scholar] [CrossRef]
- Liu, Z.; Xia, Y.T.; Zhang, B.C. Graph Embedding Relation Network for Few-Shot Learning. In Proceedings of the 39th Chinese Control Conference (CCC), Shenyang, China, 27–29 July 2020. [Google Scholar] [CrossRef]
- Zhang, R.H.; Yang, S.; Zhang, Q.; Xu, L.X.; He, Y.; Zhang, F. Graph-based few-shot learning with transformed feature propagation and optimal class allocation. Neurocomputing 2021, 470, 247–256. [Google Scholar] [CrossRef]
- Li, X.T.; Ng, M.K.; Xu, G.N.; Yip, A. Multi-relational graph convolutional networks: Generalization guarantees and experiments. Neural Netw. 2023, 161, 343–358. [Google Scholar] [CrossRef] [PubMed]
- Li, S.Y.; Jin, T.; Wang, E.R.; Tao, R.T.; Lu, J.X..; Xi, K. DMGNN: A Dual Multi-Relational GNN Model for Enhanced Recommendation. Comput. Mater. Contin. 2025, 84, 2331–2353. [Google Scholar] [CrossRef]
- Yi, R.; Lu, J.G.; Tang, X.H. Dynamic graph-enhanced multi-scale attention network for FW-UAV fault diagnosis under small sample. Appl. Soft Comput. 2026, 190, 114589. [Google Scholar] [CrossRef]
- Cheng, H.; Zhou, J.T.; Tay, W.P.; Wen, B.H. Graph Neural Networks With Triple Attention for Few-Shot Learning. IEEE Trans. Multimed. 2023, 25, 8225–8239. [Google Scholar] [CrossRef]
- Lai, V.D.; Nguyen, M.V.; Nguyen, T.H.; Dernoncourt, F. Graph Learning Regularization and Transfer Learning for Few-Shot Event Detection. In Proceedings of the 44th International ACM SIGIR Conference on Research and Development in Information Retrieval, Virtual Event, 11–15 July 2021. [Google Scholar] [CrossRef]
- Wu, Z.H.; Wang, T.X.; Cao, Y.; Zhang, M.; Guo, W.J.; Yang, L.X. Transfer Learning-Based Dual GCN for Radar Active Deceptive Jamming Few-Shot Recognition. IEEE Trans. Aerosp. Electron. Syst. 2025, 61, 2185–2197. [Google Scholar] [CrossRef]
- Walsh, R.; Shehata, M. Regularized Meta-Training with Embedding Mixup for Improved Few-Shot Learning. In Proceedings of the 18th International Symposium on Visual Computing (ISVC), Lake Tahoe, NV, USA, 16–18 October 2023. [Google Scholar] [CrossRef]
- Huang, Y.H.; Hu, X.X.; Chen, F.; Cao, J.M.; He, Y.M.; Ming, Q.; Wang, H.; Wang, J.N.; Tang, T. Dynamic graph meta-learning with multi-sensor spatial dependencies for cross-category small-sample fault diagnosis in ZDJ9-RTAs. Adv. Eng. Inform. 2026, 70, 104132. [Google Scholar] [CrossRef]
- Wang, P.; He, R.K.; Zhang, Q.B.; Wang, J.K.; Mihaylova, L.; Bouaynaya, N.C. Bayesian Neural Networks Uncertainty Quantification with Cubature Rules. In Proceedings of the International Joint Conference on Neural Networks (IJCNN) Held as Part of the IEEE World Congress on Computational Intelligence (IEEE WCCI), Glasgow, Scotland, 19–24 July 2020. [Google Scholar] [CrossRef]
- Valkanas, A.; Panzini, A.W.; Coates, M. Towards Bayesian Learning of the Architecture, Graph and Parameters for Graph Neural Networks. In Proceedings of the 2022 56th Asilomar Conference on Signals, Systems, And Computers, Pacific Grove, CA, USA, 31 October–2 November 2022. [Google Scholar] [CrossRef]
- Qiu, T.; Lam, C.T.; Liu, B.W.; Ng, B.K.; Yuan, X.C.; Im, S.K. FEN-MRMGCN: A Frontend-Enhanced Network Based on Multi-Relational Modeling GCN for Bus Arrival Time Prediction. IEEE Access 2025, 13, 5296–5307. [Google Scholar] [CrossRef]
- Lee, S.B.; Park, J.H.; Kim, J.Y.; Lee, S.Y.; Heo, J.P. Regularization with Multiple Feature Combination for Few-Shot Learning. In Proceedings of the IEEE International Conference on Big Data and Smart Computing (BigComp), Jeju Island, Republic of Korea, 17–20 January 2021. [Google Scholar] [CrossRef]
- Heidari, M.; Alchihabi, A.; En, Q.; Guo, Y.H. Adaptive Parametric Prototype Learning for Cross-Domain Few-Shot Classification. In Proceedings of the 27th International Conference on Artificial Intelligence and Statistics (AISTATS), Valencia, Spain, 2–4 May 2024. [Google Scholar]
- Xiao, G.; Cao, Y.; Huang, J.C.; Jin, X.H.; Zhang, Y.M. Knowledge Graph Metric Learning Network for Few-Shot Health Status Assessment. IEEE Sens. J. 2025, 25, 3898–3908. [Google Scholar] [CrossRef]
- Sang, L.; Zhang, C.; Huang, M.H.; Mu, L.; Zhang, Y.W.; Wu, X.D. Heterogeneous Neighborhood-Enhanced Graph Contrastive Learning for Recommendation. IEEE Trans. Comput. Soc. Syst. 2025, 1–17. [Google Scholar] [CrossRef]



| Parameter Name | Parameter Value | Description |
|---|---|---|
| Learning rate | 0.001 | Initial learning rate for the Adam optimizer |
| Batch size | 4 | Number of samples per training batch |
| Epochs | 1000 | Maximum number of training epochs |
| Early-stopping patience | 50 | Number of epochs without improvement in validation loss before early stopping |
| Hidden dimension | 64 | Dimensionality of hidden layers in the graph neural network |
| Number of attention heads | 4 | Number of heads in the multi-head attention mechanism |
| Dropout rate | 0.3 | Dropout probability |
| DropEdge rate | 0.2 | Edge dropout probability |
| Noise intensity | 0.1 | Standard deviation of injected feature noise |
| Temperature parameter | 0.5 | Temperature used in contrastive learning |
| Monte Carlo sampling count | 20 | Number of forward-pass samples for uncertainty estimation |
| Method | MSE (↓) | MAE (↓) | R2 (↑) | Computation Time (s) (↓) |
|---|---|---|---|---|
| Minimal path-set method | 0.0087 ± 0.0003 | 0.0732 ± 0.0021 | 0.8421 ± 0.0056 | 284.6 ± 12.3 |
| SVR | 0.0124 ± 0.0007 | 0.0893 ± 0.0032 | 0.7765 ± 0.0087 | 0.8 ± 0.1 |
| RFR | 0.0108 ± 0.0005 | 0.0817 ± 0.0028 | 0.8032 ± 0.0074 | 1.2 ± 0.1 |
| MLP | 0.0095 ± 0.0004 | 0.0764 ± 0.0025 | 0.8247 ± 0.0068 | 1.5 ± 0.2 |
| GCN | 0.0071 ± 0.0003 | 0.0643 ± 0.0022 | 0.8654 ± 0.0059 | 2.3 ± 0.2 |
| GAT | 0.0068 ± 0.0003 | 0.0621 ± 0.0020 | 0.8712 ± 0.0054 | 2.8 ± 0.2 |
| GraphSAGE | 0.0065 ± 0.0002 | 0.0608 ± 0.0018 | 0.8789 ± 0.0049 | 3.1 ± 0.2 |
| SS-GNN | 0.0043 ± 0.0001 * | 0.0462 ± 0.0012 * | 0.9247 ± 0.0028 * | 3.5 ± 0.3 |
| Strategy Combinations | MSE (↓) | MAE (↓) | R2 (↑) |
|---|---|---|---|
| Baseline GCN | 0.0071 | 0.0643 | 0.8654 |
| Baseline GCN + multi-relational graph convolution | 0.0065 | 0.0612 | 0.8789 |
| Baseline GCN + attention mechanism | 0.0062 | 0.0597 | 0.8834 |
| Baseline GCN + small-sample regularization techniques | 0.0058 | 0.0569 | 0.8912 |
| Baseline GCN + uncertainty quantification | 0.0060 | 0.0578 | 0.8887 |
| Baseline GCN + meta-learning pretraining | 0.0054 | 0.0536 | 0.9021 |
| Baseline GCN + contrastive learning | 0.0052 | 0.0521 | 0.9068 |
| Baseline GCN + knowledge distillation | 0.0055 | 0.0543 | 0.8997 |
| SS-GNN | 0.0043 | 0.0462 | 0.9247 |
| Model Configuration | MSE (↓) | Performance Degradation vs. Full SS-GNN | Component Contribution |
|---|---|---|---|
| Full SS-GNN | 0.0043 | - | - |
| Multi-relational graph convolution | 0.0057 | +32.6% | 20.7% |
| Attention mechanism | 0.0060 | +39.5% | 18.5% |
| Small-sample regularization techniques | 0.0059 | +37.2% | 19.2% |
| Uncertainty quantification | 0.0047 | +9.3% | 4.8% |
| Meta-learning pretraining | 0.0055 | +27.9% | 22.4% |
| Contrastive learning | 0.0052 | +20.9% | 24.6% |
| Knowledge distillation | 0.0050 | +16.3% | 9.8% |
| Confidence Level | Prediction Interval Coverage (%) | Average Prediction Interval Width (%) |
|---|---|---|
| 90% | 87.5 | 0.082 |
| 95% | 93.8 | 0.106 |
| 99% | 97.5 | 0.143 |
| Relation Type | Average Attention Weight | Contribution to Prediction |
|---|---|---|
| Sortie order | 0.42 ± 0.05 | 42.0% |
| Functional dependency | 0.35 ± 0.04 | 35.0% |
| Spatial adjacency | 0.23 ± 0.03 | 23.0% |
| Node Position Category | Average Attention Weight (High-Reliability Layout) | Average Attention Weight (Low-Reliability Layout) |
|---|---|---|
| Near sortie channel exit | 0.17 ± 0.03 | 0.31 ± 0.05 |
| Middle area | 0.12 ± 0.02 | 0.14 ± 0.03 |
| Rear area | 0.08 ± 0.02 | 0.09 ± 0.02 |
| Auxiliary vehicle area | 0.06 ± 0.01 | 0.07 ± 0.01 |
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. |
© 2026 by the authors. Licensee MDPI, Basel, Switzerland. This article is an open access article distributed under the terms and conditions of the Creative Commons Attribution (CC BY) license.
Share and Cite
Shi, H.; Wang, N.; Liu, Q. A Small-Sample Graph Neural Network Approach for Predicting Sortie Mission Reliability of Shipborne Vehicle Layouts. J. Mar. Sci. Eng. 2026, 14, 599. https://doi.org/10.3390/jmse14070599
Shi H, Wang N, Liu Q. A Small-Sample Graph Neural Network Approach for Predicting Sortie Mission Reliability of Shipborne Vehicle Layouts. Journal of Marine Science and Engineering. 2026; 14(7):599. https://doi.org/10.3390/jmse14070599
Chicago/Turabian StyleShi, Han, Nengjian Wang, and Qinhui Liu. 2026. "A Small-Sample Graph Neural Network Approach for Predicting Sortie Mission Reliability of Shipborne Vehicle Layouts" Journal of Marine Science and Engineering 14, no. 7: 599. https://doi.org/10.3390/jmse14070599
APA StyleShi, H., Wang, N., & Liu, Q. (2026). A Small-Sample Graph Neural Network Approach for Predicting Sortie Mission Reliability of Shipborne Vehicle Layouts. Journal of Marine Science and Engineering, 14(7), 599. https://doi.org/10.3390/jmse14070599

