Designed and Developed FOQA readout analysis product which is being used by pilots, flight data analysts in different airlines, during accidents data from BlackBox Recorders are taken and processed which comes in the form of .bin,.dat,.fdt formats and also Imagery datasets taken from different GIS products to analyze.RNN and CNN along with other techs were used to do investigation of accidents and also analyze Pilot behaviour, fuel usage efficiency, predict Fuel usage and Aircraft parts maintenance or replacement.
Flight data from blackbox recorders, SAGE, etc for different aircraft types were taken and grouped based on Pilots to analyze timeseries data.
Flight paths were received from ArcGIS and openflights.org to analyze different flight routes.
Flights review were taken from different social networks to get and understand the sentiments of the flights based on comments from the customers.
All the data sets from different sources are bundled into TensorFlow 2 to process and analyze.
Defined the Domain Specific Word Embeddings based on business logic, Recurrent drop out for regularization has been used, Word Vectors trainned on large data.
TensorFlow provides a Tokenizer to convert text docs into integer encoded sequences and Defined the RNN archtiecture with frozen weights across all the nueral networks used.
Preparing Data for RNN model to predict, we created 90:10 training/test split model and also used the Bidirectional GRU unit that scans the text both forward and backward.
CNNs captured different images to follow the flight plan, climate, locations , etc using object detection, transfer learning which uses pretrained weights to do the processing using Keras in Python.
Compiled using AdamOptimizer and targetted the Mean Sqaured Loss for this task and we trainned for upto 100 epochs and also tested this model.
Combined the text data and images that we got to use stackedLSTM to process multiple inputs along with CNN to get data.
RNNs captured long range dependencies to capture fuel usage predict future fuel usage and predict maintenance for different aircraft types.