Subscribe to RSS

DOI: 10.1055/a-2719-8970
A Novel BERT-Based Machine Learning Approach for Enhanced CSF Leak Prediction in Endoscopic Endonasal Skull Base Surgery
Authors
Abstract
Objectives
To evaluate the performance of the BERT (bidirectional encoder representations from transformers) model in predicting cerebrospinal fluid (CSF) leaks and compare it with traditional logistic regression analysis.
Methods
In this study, we employed a machine learning-based natural language processing (NLP) model, specifically BERT, and compared its performance to conventional statistical logistic regression in predicting CSF leaks. We analyzed all cases of skull base pathologies treated by a multidisciplinary team specializing in rhinology and skull base surgery, and neurosurgery at a single center between March 2015 and July 2020. The dataset included the following factors: (1) demographics, (2) perioperative clinical CSF leak indicators, (3) pathology-related factors, (4) surgical factors, and (5) perioperative CT scan features.
Results
The BERT model outperformed the traditional logistic regression model in predicting CSF leaks, achieving an AUC of 1.0000, sensitivity of 1.0000, specificity of 0.9808, positive predictive value (PPV) of 0.8889, negative predictive value (NPV) of 1.0000, and an F1 score of 0.9657. In contrast, the logistic regression model yielded an AUC of 0.847, with a sensitivity of 0.2143, specificity of 0.9060, PPV of 0.4471, and NPV of 0.7649.
Conclusion
BERT NLP model outperforms traditional logistic regression in predicting cerebrospinal fluid leaks after endoscopic skull base surgery, demonstrating superior accuracy with qualitative clinical data, enhancing risk stratification and decision-making.
Introduction
The endoscopic endonasal approach has become the dominant and widely accepted method for removing skull base tumors in the sellar and parasellar regions.[1] Skull base reconstruction plays a pivotal role in mitigating the risk of cerebrospinal fluid (CSF) leakage and its associated complications, including the development of meningitis.[2] Achieving successful skull base reconstruction and preventing CSF leaks has significant positive implications for reducing hospitalization duration and alleviating the burden on healthcare costs.[3] CSF leak is a recognized risk during endoscopic sellar surgery, especially when managing large tumors or craniopharyngiomas. Evidence indicates that intraoperative CSF leaks occur in about 30.1% of cases, while postoperative leaks are reported in roughly 3.7 to 9%,[4] [5] influenced by various factors such as surgeon experience, tumor characteristics, and individual patient-related variables. The risk of CSF leak following endoscopic skull base surgery is further affected by tumor size and consistency, patient age, BMI, and surgical factors[6]; prevention depends on appropriate reconstruction techniques, with autologous grafts used for small, low-flow defects and vascularized tissue, particularly the nasoseptal flap, serving as the gold standard for larger or high-flow leaks in anterior skull base reconstruction.[7]
Despite established reconstruction techniques and known risk factors, accurately predicting which patients will develop postoperative CSF leaks remains challenging, necessitating more sophisticated predictive methodologies.
The advancement of artificial intelligence in healthcare enables the development of machine learning (ML) models that can predict CSF leak risk factors.[7] AI models can integrate multiple patient, tumor, and surgical variables to predict intraoperative CSF leaks. In a cohort of 238 pituitary adenoma cases, machine-learning methods were tested; random forest performed best, accurately identifying most leaks and outperforming traditional statistics and other ML models.[8]
This capability will significantly impact surgical practice by informing pre-, intra-, and postoperative management decisions, including reconstruction method selection. In natural language processing (NLP), BERT has become a benchmark model because it is first exposed to vast amounts of raw, unlabeled text and can process information from both directions across relatively long passages. BERT, short for bidirectional encoder representations from transformers, uses only the encoder part of the transformer architecture to learn word meanings that depend on the words that come before and after them, producing a highly adaptable, context-aware language representation. Although the original BERT was trained on general-purpose English text, researchers have since built tailored versions for specialized domains. For example, BioBERT, BlueBERT, SciBERT, and PubMedBERT have been retrained on biomedical literature so the model recognizes technical vocabulary and clinical phrasing more accurately. These domain-specific variants preserve BERT's key strengths, bidirectional context, and the ability to digest long sequences while improving performance on biomedical text-mining tasks.[9] This is the first study to compare a BERT-based model with conventional statistical techniques for detecting CSF-leak risk factors in endoscopic skull-base surgery, leveraging qualitative (nonnumeric) inputs to simplify the handling of large, variable datasets and ultimately boost predictive accuracy and guide reconstruction decisions more effectively.
Materials and Methods
King Saud University Medical City, in collaboration with the College of Computer Science at King Saud University. In this study, we developed a traditional logistic regression model and compared its performance to an NLP model, specifically a BERT model. Ethical approval for the study was obtained from the ethics committee at the College of Medicine at King Saud University (no. 23-8232). [Fig. 1] shows the overall methodological process of this project.


Data Categorization
We extracted information from healthcare records within the study setting, including all cases of skull base pathologies managed by a multidisciplinary team specializing in rhinology, skull base surgery, and neurosurgery at King Saud University Medical City. The available data, which served as input for both the BERT model and the traditional statistical model, were categorized into the following groups: demographics: age, gender, and BMI. Perioperative clinical CSF leak indicators: postoperative clinical symptoms or signs raising suspicion, need for postoperative CT scans and their timing, and length of hospital stay. Pathology-related factors: tumor size, presence of hydrocephalus, tumor location, and histopathology. Surgical factors: type and extent of surgical approach, preoperative CSF diversion, intraoperative CSF leak presence, CSF leak flow rate, nasal flap reconstruction, use of nasal packing, and types of reconstruction materials used. Perioperative CT scan features, including the timing, presence, and location of pneumocephalus; the presence and size of any hematoma; graft characteristics; signs of air communication; and findings from repeat CT scans, were evaluated by a skull-base team comprising a rhinologist, neurosurgeon, and radiologist. The resulting radiological findings data were then entered manually into a text-based datasheet.
Development of the Traditional Logistic Regression Model
Descriptive statistics were generated using the compareGroups package, with missing data imputed (Hmisc), categorical variables factorized, and class imbalance addressed via upsampling (caret). Continuous data were summarized as mean ± SD or median/IQR, and categorical data as counts and percentages. Univariate analysis used Somers' D and the C statistic (AUC) to assess variable discrimination. Clinically relevant variables with high C statistics were included regardless of significance. Upsampling outperformed SMOTE and ROSE, preserving data structure and improving model performance. A bootstrap approach reduced overfitting, and nonsignificant variables were excluded. The final logistic regression model, validated by ROC and kappa statistics, showed improved predictive accuracy and robustness.
Development of the BERT Model
Categorical medical data input: previously described were collected as input data, forming the foundation of the predictive model.
Tabular Dataset
Each patient record is represented as a sequence x = [c1,…,c⅞,y], where c contains k categorical attributes encoded as their text labels (e.g., “male,” “Craniopharyngioma”) and y∈{0,1} denotes the presence of a CSF leak. The entire text string is passed to the standard BERT tokenizer (bert-base-uncased), which automatically converts the words into WordPiece tokens, adds the special [CLS] and [SEP] markers, and pads or truncates the sequence to a fixed length.
The resulting token IDs are fed to the BERT encoder. Within each layer, multi-head self-attention computes contextualized representations using the canonical (see [Supplementary Material S1], available in the online version only, for formulas details), followed by residual connections, layer normalization, and feed-forward sublayers. After the final layer, the [CLS] token is prepended to each sequence, and its final hidden state is extracted as a pooled representation and passed through a linear layer to classify CSF leak versus no leak, as illustrated in [Fig. 2].


All mathematical derivations, hyperparameters, and the training loss are presented in [Supplementary Material S1] (available in the online version only).
BERT Model Training and Optimization
The BERT classifier was fine-tuned on twofold cross-validation (50% training/50% testing). Optimization used AdamW (learning-rate 1 × 10−5, weight-decay 1 × 10−2) for 20 epochs and a binary cross-entropy objective; focal weighting was applied to mitigate class imbalance (see [Supplementary Material S2], available in the online version only, for the exact loss formula). Performance was reported as the mean of the two folds using accuracy, precision, recall (sensitivity), positive and negative predictive values, F1 score (the harmonic mean of precision and recall, ranging from 0 to 1), and AUC.
Results
Descriptive Statistics for the Study Subjects
A total of 116 skull-base surgery patients were included. No statistically significant differences were found between the CSF-leak and no-leak groups in age (median: 29 years vs. 42 years, p = 0.526), gender (60.0% vs. 57.4% female, p = 1.000), preoperative CSF diversion (53.3% vs. 50.5%, p = 1.000), or hydrocephalus (26.7% vs. 8.9%, p = 0.065). Weight, tumor location, pathology size, reconstruction materials (fat, fascia, hard graft, flap, nasal pack, glue, gasket), and surgical approach also showed no significant differences. Moreover, within both the gross-total resection (GTR) and subtotal resection (STR) groups, the proportions of CSF-leak versus no-leak cases were not significantly different (all p > 0.05) as detailed in [Table 1].
Performance and Results of Logistic Regression Model
Odds Ratio of Different Variables
Preoperative hydrocephalus (odds ratio [OR] = 5.15, p = 0.016), overweight status (OR = 7.15, p < 0.001), fat use in reconstruction (OR = 19.65, p < 0.001), and gross total resection (OR = 3.83, p = 0.001) were all associated with increased odds of CSF leak. In contrast, nasal pack (OR = 0.03, p < 0.001), gasket use (OR = 0.20, p = 0.003), and sellar/suprasellar tumor location (OR = 0.10, p < 0.001) significantly reduced leak risk as shown in [Table 2].
Intraoperative CSF leaks occurred in 20% of the leak group versus 16.8% of the nonleak group (p = 0.721). Among leak cases, high-flow leaks were more common (13.3% vs. 5.95%), while low-flow leaks were less frequent (6.67% vs. 14.3%) compared to nonleak cases (p = 0.367). Reconstruction methods varied between groups but showed no significant difference (p = 0.167). Postoperative CT revealed significantly more and higher-grade pneumocephalus in the leak group (p = 0.004). Excessive fat was more frequent (58.3% vs. 12.7%, p = 0.001), and fat size was more often inadequate (p = 0.048) in the leak group. Hematoma requiring evacuation was slightly more common but not significant (p = 0.492). Postoperative CT revealed factors associated with CSF leaks, including greater extra-cavitary fat graft displacement (p = 0.002) and less favorable solid reconstruction positioning (p = 0.047). Flap adherence was reduced in the leak group (p = 0.060), and air continuity between the nasal and surgical cavities was observed in only one leak case (p = 0.153). Although resection extent varied: standard approach: transsphenoidal transsellar versus Extended approach, the difference was not statistically significant (p = 0.862) as shown in [Table 3].
Reconstruction materials, including fat, fascia lata, hard grafts, nasoseptal flap, nasal packing, and bone, varied between CSF leak and nonleak groups, but none showed statistically significant differences (all p > 0.05), as shown in [Table 1]. Histopathological tumor types showed no significant association with CSF leak incidence, with pituitary adenoma being the most common in leak cases (26.7%), followed by meningioma (20.0%), chordoma and craniopharyngioma (13.3% each), and all comparisons yielded nonsignificant p-values as shown in [Table 4].
Logistic Regression Model Performance
The logistic regression model achieved an AUC of 0.847, with high specificity (90.6%) but low sensitivity (21.4%) and a Kappa of 0.1447, indicating slight agreement. McNemar's test (p < 2e-16) showed significant prediction bias; positive predictive value (PPV) was 44.7%, negative predictive value (NPV) 76.5%, with CSF leak prevalence at 26.2%, detection rate 5.6%, and detection prevalence 12.6%. The balanced accuracy of 56.0% reflects poor performance in detecting true CSF leaks due to class imbalance.
Performance and Results of the BERT Model
In terms of performance metrics for the BERT model at the confusion matrix (50:2), it was found to have an AUC of 1.0000 and an accuracy of 0.9833, a PPV of 0.8889, an NPV of 1.0000, a recall of 0.9808, and an F1 score of 0.9657
The average grouped attention weights across twofold of the proposed model's training revealed the following findings: perioperative CT scans received the highest attention weight by far, followed by surgical factors. The other three groups: demographics, suspicion of CSF leak, and pathology-related factors (including histopathology type) had significantly lower attention weights, as shown in [Fig. 3].


Comparison of the Logistic Regression Model versus the BERT Model
The BERT model surpassed the traditional logistic regression model in predicting CSF leaks, achieving an accuracy of 98%, a PPV of 89%, an NPV of 100%, a recall of 98%, and an F1 score of 96%. In contrast, the logistic regression model had an accuracy of 72%, sensitivity of 20%, specificity of 90%, detection rate of 5%, and PPV of 44%, as illustrated in [Table 5] and [Fig. 4].


Discussion
In this study, we developed a BERT-based NLP model that transforms qualitative medical data into numerical form for machine learning analysis to predict CSF leaks after skull base surgery. The model significantly outperformed traditional logistic regression, achieving 98% accuracy, 89% precision, 98% recall, and a 96% F1 score, compared to logistic regression's 72% accuracy, 20% sensitivity, 90% specificity, 5% detection rate, and 44% PPV, highlighting the potential of NLP-based models for superior clinical outcome prediction.
Our BERT model analysis revealed that perioperative CT scan features suggestive of CSF leakage carried the highest attention weight for prediction, followed by surgical factors. These findings align with a large multicenter study that evaluated three predictive models (logistic regression, decision tree, and neural network) for CSF leak prediction. Their research identified intraoperative CSF leakage as the most significant risk factor for CSF rhinorrhea, with elevated BMI and revision surgery also contributing significantly in transsphenoidal approaches.[10] The consistency between their conclusions and our results reinforces the superior performance of machine learning methodologies compared to traditional statistical approaches in predicting this critical surgical complication. The BERT model processed the full dataset without manual feature selection, revealing that perioperative CT findings and intraoperative factors were stronger predictors of CSF leak than preoperative variables. Including early postoperative CT data allowed the model to identify key indicators of CSF leak at the time of clinical suspicion, highlighting the value of focusing on perioperative and surgical data for more precise prediction models. A neural network study for predicting intraoperative CSF leaks during pituitary surgery demonstrated 88% classification accuracy (AUC: 0.84), outperforming conventional statistical methods, which identified no significant risk factors. The neural network achieved high sensitivity (83%) and specificity (89%), with high suprasellar Hardy grade, prior surgery, and older age as the primary predictive factors.[11] A systematic review of seven AI studies for CSF leak prediction in pituitary surgery found performance metrics ranging from 0.73 to 0.98 (AUC) and 0.70 to 0.97 (accuracy). Random Forest was the most frequently used algorithm, with k-fold cross-validation as the predominant validation method. Notably, deep learning models demonstrated significantly higher pooled sensitivity than machine learning models (99% vs. 86.2%, p < 0.01), while specificity remained comparable between approaches (90.6% vs. 92.1%, p = 0.87).[12] Our 12% CSF leak rate aligns with previous studies; elevated BMI was a significant risk factor (OR = 7.15), consistent with Ivan et al,[13] while Fraser et al,[14] specifically identified BMI > 25 kg/m2 and posterior fossa tumors as predictors of higher postoperative leak rates in their 615-patient EEA study. While our data showed no significant correlation between histopathological types or tumor location and CSF leak risk, Zhang et al,[15] found clival tumors associated with higher leak rates in their 100 extra-sellar tumor cases. Our results identified preoperative hydrocephalus as a significant predictor (OR: 5.15, CI: 1.46–21.61, p = 0.016), consistent with Patel et al,[16] who found only BMI and hydrocephalus as significant predictors in their 806-case analysis. Our analysis found no statistical significance for various reconstruction techniques, including solid reconstruction. A multicenter analysis of 706 patients reported a 7.8% postoperative CSF leak rate, indicating that rigid reconstruction and older age were protective factors against postoperative sellar leaks, whereas BMI was not linked to increased risk[17]—contrary to our findings. Kuan et al,[18] reported that only intraoperative CSF leak was associated with recurrence in their 300 consecutive repair cases. A large systematic review and meta-analysis of risk factors for postoperative CSF leakage after endonasal endoscopic skull-base surgery reported that overweight and obesity were associated with an OR of 1.88 (95% CI, 1.35 – 2.63; p < 0.01), a result that aligns with our findings. Regarding reconstruction, 16 studies (total n = 3,579) assessed pedicled vascularized flaps, showing a pooled OR of 0.62 for CSF leakage compared with free grafts.[19] In contrast, our findings demonstrated an unexpectedly high OR of 19.56 for CSF leak when fat grafts were used. This finding diverges from prior literature, in a systematic review of fat graft use in transsphenoidal surgery, postoperative CSF leak requiring intervention was significantly lower in the fat-in-sphenoid-sinus repair group (4.4 %) than in multilayer (20.3 %) or no-repair groups (12.6 %; p < 0.01).[20] One plausible explanation for this discrepancy is that fat grafts in our series were preferentially applied to high-flow defects, which inherently carry a greater leak risk.
Our study introduces a novel application of an NLP model for CSF leak prediction in skull base surgery. We believe that the BERT model holds considerable promise for advancing both clinical practice and research. Its implementation in future studies with larger sample sizes may lead to improved clinical decision-making, as the model has demonstrated the ability to identify patterns and associations that traditional statistical methods may overlook. Furthermore, the application of this model in research settings could offer significant advantages in handling large and complex datasets, particularly those involving qualitative variables. Unlike conventional approaches, BERT's key advantage lies in its ability to directly process qualitative data without numerical conversion, preserving contextual information while streamlining analysis. Despite promising results, the exceptionally high-performance metrics suggest potential overfitting or data leakage. As a single-center study, our findings face generalizability limitations. Future validation should include a critical review of CT features, rigorous verification of train/test methodology, validation on independent datasets, and optimization of model complexity. We recommend multicenter implementation of BERT for CSF leak analysis to increase sample size and potentially identify risk factors undetectable through conventional statistical approaches.
Conclusion
BERT NLP model outperforms traditional logistic regression in predicting CSF leaks after endoscopic skull base surgery, demonstrating superior accuracy with qualitative clinical data, enhancing risk stratification and decision-making.
Conflict of Interest
The authors declare that they have no conflict of interest.
Acknowledgement
The authors would like to thank Ongoing Research Funding Program, (ORFFT-2025-78-1), King Saud University, Riyadh, Saudi Arabia for financial support.
Data Availability Statement
The datasets analyzed during the current study are available from the corresponding author on request.
Ethical Approval
Ethical approval for the study was obtained from the ethics committee at the College of Medicine at King Saud University (no. 23-8232).
-
References
- 1 Conger A, Zhao F, Wang X. et al. Evolution of the graded repair of CSF leaks and skull base defects in endonasal endoscopic tumor surgery: trends in repair failure and meningitis rates in 509 patients. J Neurosurg 2019; 130 (03) 861-875
- 2 Clavenna MJ, Turner JH, Chandra RK. Pedicled flaps in endoscopic skull base reconstruction: review of current techniques. Curr Opin Otolaryngol Head Neck Surg 2015; 23 (01) 71-77
- 3 Hannan CJ, Almhanedi H, Al-Mahfoudh R, Bhojak M, Looby S, Javadpour M. Predicting post-operative cerebrospinal fluid (CSF) leak following endoscopic transnasal pituitary and anterior skull base surgery: a multivariate analysis. Acta Neurochir (Wien) 2020; 162 (06) 1309-1315
- 4 Karnezis TT, Baker AB, Soler ZM. et al. Factors impacting cerebrospinal fluid leak rates in endoscopic sellar surgery. Int Forum Allergy Rhinol 2016; 6 (11) 1117-1125
- 5 Khan DZ, Ali AMS, Koh CH. et al. Skull base repair following endonasal pituitary and skull base tumour resection: a systematic review. Pituitary 2021; 24 (05) 698-713
- 6 Xue H, Wang X, Yang Z, Bi Z, Liu P. Risk factors and outcomes of cerebrospinal fluid leak related to endoscopic pituitary adenoma surgery. Br J Neurosurg 2020; 34 (04) 447-452
- 7 Ein L, Sargi Z, Nicolli EA. Update on anterior skull base reconstruction. Curr Opin Otolaryngol Head Neck Surg 2019; 27 (05) 426-430
- 8 Tariciotti L, Fiore G, Carrabba G. et al. A supervised machine-learning algorithm predicts intraoperative CSF leak in endoscopic transsphenoidal surgery for pituitary adenomas. J Neurosurg Sci 2023; 67 (04) 393-407
- 9 Su P, Vijay-Shanker K. Investigation of improving the pre-training and fine-tuning of BERT model for biomedical relation extraction. BMC Bioinformatics 2022; 23 (01) 120
- 10 CRANIAL Consortium. Machine learning driven prediction of cerebrospinal fluid rhinorrhoea following endonasal skull base surgery: a multicentre prospective observational study. Front Oncol 2023; 13: 1046519
- 11 Staartjes VE, Zattra CM, Akeret K. et al. Neural network-based identification of patients at high risk for intraoperative cerebrospinal fluid leaks in endoscopic pituitary surgery. J Neurosurg 2019; 133 (02) 329-335
- 12 Hajikarimloo B, Sabbagh Alvani M, Koohfar A. et al. Clinical application of artificial intelligence in prediction of intraoperative cerebrospinal fluid leakage in pituitary surgery: a systematic review and meta-analysis. World Neurosurg 2024; 191: 303-313.e1
- 13 Ivan ME, Iorgulescu JB, El-Sayed I. et al. Risk factors for postoperative cerebrospinal fluid leak and meningitis after expanded endoscopic endonasal surgery. J Clin Neurosci 2015; 22 (01) 48-54
- 14 Fraser S, Gardner PA, Koutourousiou M. et al. Risk factors associated with postoperative cerebrospinal fluid leak after endoscopic endonasal skull base surgery. J Neurosurg 2018; 128 (04) 1066-1071
- 15 Zhang H, Peeters S, Vengorivich G. et al. Risk factors associated with postoperative CSF leak in extrasellar tumors. J Neurol Surg B Skull Base 2023; 85 (01) 15-20
- 16 Patel PN, Stafford AM, Patrinely JR. et al. Risk factors for intraoperative and postoperative cerebrospinal fluid leaks in endoscopic transsphenoidal sellar surgery. Otolaryngol Head Neck Surg 2018; 158 (05) 952-960
- 17 Abiri A, Bitner BF, Nguyen TV. et al. Clinical and technical factors in endoscopic skull base surgery associated with reconstructive success. Rhinology 2024; 62 (03) 330-341
- 18 Kuan EC, Yoo F, Patel PB, Su BM, Bergsneider M, Wang MB. An algorithm for sellar reconstruction following the endoscopic endonasal approach: a review of 300 consecutive cases. J Neurol Surg B Skull Base 2018; 79 (02) 177-183
- 19 Kim JS, Hong SD. Risk factors for postoperative CSF leakage after endonasal endoscopic skull base surgery: a meta-analysis and systematic review. Rhinology 2021; 59 (01) 10-20
- 20 Baig Mirza A, Boardman T, Okasha M. et al; Cohort Study and Systematic Review. Fat in the fossa and the sphenoid sinus: a simple and effective solution to CSF leaks in transsphenoidal surgery. Cohort study and systematic review. J Neurol Surg B Skull Base 2022; 84 (02) 143-156
Correspondence
Publication History
Received: 01 August 2025
Accepted: 05 October 2025
Accepted Manuscript online:
10 October 2025
Article published online:
23 October 2025
© 2025. The Author(s). This is an open access article published by Thieme under the terms of the Creative Commons Attribution License, permitting unrestricted use, distribution, and reproduction so long as the original work is properly cited. (https://creativecommons.org/licenses/by/4.0/)
Georg Thieme Verlag KG
Oswald-Hesse-Straße 50, 70469 Stuttgart, Germany
-
References
- 1 Conger A, Zhao F, Wang X. et al. Evolution of the graded repair of CSF leaks and skull base defects in endonasal endoscopic tumor surgery: trends in repair failure and meningitis rates in 509 patients. J Neurosurg 2019; 130 (03) 861-875
- 2 Clavenna MJ, Turner JH, Chandra RK. Pedicled flaps in endoscopic skull base reconstruction: review of current techniques. Curr Opin Otolaryngol Head Neck Surg 2015; 23 (01) 71-77
- 3 Hannan CJ, Almhanedi H, Al-Mahfoudh R, Bhojak M, Looby S, Javadpour M. Predicting post-operative cerebrospinal fluid (CSF) leak following endoscopic transnasal pituitary and anterior skull base surgery: a multivariate analysis. Acta Neurochir (Wien) 2020; 162 (06) 1309-1315
- 4 Karnezis TT, Baker AB, Soler ZM. et al. Factors impacting cerebrospinal fluid leak rates in endoscopic sellar surgery. Int Forum Allergy Rhinol 2016; 6 (11) 1117-1125
- 5 Khan DZ, Ali AMS, Koh CH. et al. Skull base repair following endonasal pituitary and skull base tumour resection: a systematic review. Pituitary 2021; 24 (05) 698-713
- 6 Xue H, Wang X, Yang Z, Bi Z, Liu P. Risk factors and outcomes of cerebrospinal fluid leak related to endoscopic pituitary adenoma surgery. Br J Neurosurg 2020; 34 (04) 447-452
- 7 Ein L, Sargi Z, Nicolli EA. Update on anterior skull base reconstruction. Curr Opin Otolaryngol Head Neck Surg 2019; 27 (05) 426-430
- 8 Tariciotti L, Fiore G, Carrabba G. et al. A supervised machine-learning algorithm predicts intraoperative CSF leak in endoscopic transsphenoidal surgery for pituitary adenomas. J Neurosurg Sci 2023; 67 (04) 393-407
- 9 Su P, Vijay-Shanker K. Investigation of improving the pre-training and fine-tuning of BERT model for biomedical relation extraction. BMC Bioinformatics 2022; 23 (01) 120
- 10 CRANIAL Consortium. Machine learning driven prediction of cerebrospinal fluid rhinorrhoea following endonasal skull base surgery: a multicentre prospective observational study. Front Oncol 2023; 13: 1046519
- 11 Staartjes VE, Zattra CM, Akeret K. et al. Neural network-based identification of patients at high risk for intraoperative cerebrospinal fluid leaks in endoscopic pituitary surgery. J Neurosurg 2019; 133 (02) 329-335
- 12 Hajikarimloo B, Sabbagh Alvani M, Koohfar A. et al. Clinical application of artificial intelligence in prediction of intraoperative cerebrospinal fluid leakage in pituitary surgery: a systematic review and meta-analysis. World Neurosurg 2024; 191: 303-313.e1
- 13 Ivan ME, Iorgulescu JB, El-Sayed I. et al. Risk factors for postoperative cerebrospinal fluid leak and meningitis after expanded endoscopic endonasal surgery. J Clin Neurosci 2015; 22 (01) 48-54
- 14 Fraser S, Gardner PA, Koutourousiou M. et al. Risk factors associated with postoperative cerebrospinal fluid leak after endoscopic endonasal skull base surgery. J Neurosurg 2018; 128 (04) 1066-1071
- 15 Zhang H, Peeters S, Vengorivich G. et al. Risk factors associated with postoperative CSF leak in extrasellar tumors. J Neurol Surg B Skull Base 2023; 85 (01) 15-20
- 16 Patel PN, Stafford AM, Patrinely JR. et al. Risk factors for intraoperative and postoperative cerebrospinal fluid leaks in endoscopic transsphenoidal sellar surgery. Otolaryngol Head Neck Surg 2018; 158 (05) 952-960
- 17 Abiri A, Bitner BF, Nguyen TV. et al. Clinical and technical factors in endoscopic skull base surgery associated with reconstructive success. Rhinology 2024; 62 (03) 330-341
- 18 Kuan EC, Yoo F, Patel PB, Su BM, Bergsneider M, Wang MB. An algorithm for sellar reconstruction following the endoscopic endonasal approach: a review of 300 consecutive cases. J Neurol Surg B Skull Base 2018; 79 (02) 177-183
- 19 Kim JS, Hong SD. Risk factors for postoperative CSF leakage after endonasal endoscopic skull base surgery: a meta-analysis and systematic review. Rhinology 2021; 59 (01) 10-20
- 20 Baig Mirza A, Boardman T, Okasha M. et al; Cohort Study and Systematic Review. Fat in the fossa and the sphenoid sinus: a simple and effective solution to CSF leaks in transsphenoidal surgery. Cohort study and systematic review. J Neurol Surg B Skull Base 2022; 84 (02) 143-156








