Aircraft Historical Maintenance Dataset(2012-2017)
Problem and Action taken in aircraft maintenance logs for NLP
@kaggle.merishnasuwal_aircraft_historical_maintenance_dataset
Problem and Action taken in aircraft maintenance logs for NLP
@kaggle.merishnasuwal_aircraft_historical_maintenance_dataset
Aircraft maintenance logs record dataset derived from MaintNet. This dataset contains free text fields describing the maintenance issues (problems) and actions performed (fixes).
The dataset contains 6,169 instances and 76,866 tokens. Thank you to University of North Dakota Aviation Program.
[1]Akhbardeh, F., Desell, T., and Zampieri, M., “MaintNet: A Collaborative Open-Source Library for Predictive Maintenance Language Resources”, arXiv e-prints, Art. no. arXiv:2005.12443, 2020. doi:10.48550/arXiv.2005.12443.
CREATE TABLE aircraft_annotation_datafile (
"ident" BIGINT,
"problem" VARCHAR,
"action" VARCHAR
);
CREATE TABLE aviation_abbreviation_dataset (
"abbriviation_code" BIGINT,
"abbreviated" VARCHAR,
"standard_description" VARCHAR
);
CREATE TABLE aviation_grammar_dataset (
"word" VARCHAR,
"description" VARCHAR,
"compound" VARCHAR,
"lemma" VARCHAR,
"stem" VARCHAR,
"part_of_speech_pos" VARCHAR -- Part Of Speech (POS)
);
CREATE TABLE aviation_morphosyntactic_dataset (
"word" VARCHAR,
"description" VARCHAR,
"compound" VARCHAR,
"lemma" VARCHAR,
"stem" VARCHAR,
"part_of_speech_pos" VARCHAR -- Part Of Speech (POS)
);
CREATE TABLE aviation_termbanks_dataset (
"word" VARCHAR,
"example" VARCHAR
);
Anyone who has the link will be able to view this.