A state-of-the-art text classification model designed to categorize aviation incident reports into five distinct categories. Built on DeBERTa-v3-large (435M parameters), this model leverages disentangled attention mechanisms for superior natural language understanding of technical aviation terminology.
Each category contains 100 balanced samples with professional aviation terminology and root-cause-based labeling.
1from transformers import pipeline
2
3classifier = pipeline("text-classification", model="neurontorch/nasa_incident_classifier")
4
5# Example inference
6text = "Engine oil pressure warning illuminated during cruise at FL350. Crew followed QRH procedures and diverted."
7result = classifier(text)
8print(result) # [{'label': 'mechanical_failure', 'score': 0.98}]