Next Article in Journal
Advanced RuO2 Thin Films for pH Sensing Application
Previous Article in Journal
Cherry Tomato Production in Intelligent Greenhouses—Sensors and AI for Control of Climate, Irrigation, Crop Yield, and Quality
 
 
Font Type:
Arial Georgia Verdana
Font Size:
Aa Aa Aa
Line Spacing:
Column Width:
Background:
Article

SGDAN—A Spatio-Temporal Graph Dual-Attention Neural Network for Quantified Flight Delay Prediction

1
School of Software, Shandong University, Jinan 250101, China
2
TravelSky Mobile Technology Limited, Beijing 101318, China
*
Authors to whom correspondence should be addressed.
Sensors 2020, 20(22), 6433; https://doi.org/10.3390/s20226433
Submission received: 28 September 2020 / Revised: 29 October 2020 / Accepted: 7 November 2020 / Published: 11 November 2020
(This article belongs to the Section Intelligent Sensors)

Abstract

:
There has been a lot of research on flight delays. But it is more useful and difficult to estimate the departure delay time especially three hours before the scheduled time of departure, from which passengers can reasonably plan their travel time and the airline and airport staff can schedule flights more reasonably. In this paper, we develop a Spatio-temporal Graph Dual-Attention Neural Network (SGDAN) to learn the departure delay time for each flight with real-time conditions at three hours before the scheduled time of departure. Specifically, it first models the air traffic network as graph sequences, what is, using a heterogeneous graph to model a flight and its adjacent flights with the same departure or arrival airport in a special time interval, and using a sequence to model the flight and its previous flights that share the same aircraft. The main contributions of this paper are using heterogeneous graph-level attention to learn the influence between the flight and its adjacent flight together with sequence-level attention to learn the influence between the flight and its previous flight in the flight sequence. With aggregating features from the learned influence from both graph-level and sequence-level attention, SGDAN can generate node embedding to estimate the departure delay time. Experiments on a real-world large-scale data set show that SGDAN produces better results than state-of-the-art models in the accurate flight delay time estimation task.

1. Introduction

As an important issue in the air traffic system including airport management and flight scheduling, flight delay (i.e., the difference between the scheduled time and the actual time of departure or arrival) blurs the efficiency of the aeronautical system and the choice of passengers. As found in FlightStats, in September 2019, there were 489,801 flight delayed and 34,821 flights cancelled worldwide. Thus, flight delay has attracted a lot of researchers’ attention [1,2,3,4].
Actually, the reasons for flight delay are diverse. First of all, the most important and common reason is the weather. For instance, in July 2019, the flight delay rate of China was 27.58%. Among them, the flight delays due to thunderstorms accounted for 56.74% of all delays. In addition, air traffic control (ATC), mechanical failure, passengers-caused incidences, and emergencies can also cause flight delays. Meanwhile, flight delays that have occurred can be propagated through airports and airlines. In addition, the air routes between the same departure or arrival airports also affect each other within a special time interval and delay of a flight will lead to a chain reaction of these air routes.
The existing research mainly focuses on flight delay or no delay [5], the distribution of delays [1,2], and the delay propagation through airlines and airports [3,4]. But in many cases, the factors affecting flight delay are not independent. It is more useful and difficult to estimate the departure delay time with respect to real-time conditions, especially three hours before the scheduled time of departure, from which airline and airport staff can schedule flights more reasonably and passengers can reasonably plan their travel time more leisurely.
The difficulty of this problem lies in that an air traffic network is a special and complex Spatio-temporal network. The Spatio-temporal network differs from other networks, which mainly lies in: (1) Propagation and recurrence along with links play an important role in the computations performed. (2) The representational state of the network depends not only on the node firing but also on the node’s firing time. And the air traffic network is also different from Spatio-temporal network. Firstly, as shown in Figure 1, a flight such as the blue aircraft from airport A to B, affected by not only the flights departing at airport A, but also the flights arriving at airport B in some time interval. Secondly, it has a stronger temporal dependency, and delays on a flight may be propagated throughout the day. For example, in Figure 1, due to the departure delay at airport A, the blue aircraft arrived in airport B an hour later than the scheduled time of arrival. There is no doubt that it will cause the aircraft not to be able to take off on time in airport B. And when the delay is too long, the airline will have to temporarily change the aircraft from airport B to C or the delay will continue to be propagated to the flight from airport C to D. Finally, Air Traffic Control (ATC) will always regulate each waypoint in real-time. The above makes the flight departure a very complex decision-making process.
In addition, many emergencies cannot be obtained in time, such as temporary air traffic control and mechanical failures. Some necessary information is not accurate enough at three hours before the scheduled time of departure, such as weather forecasting. Therefore, it is necessary but difficult to predict the flight departure delay time from these limitations.
In this paper, we propose a novel model, named Spatio-temporal Graph Dual-Attention Neural Network (SGDAN), to model the air spatio-temporal network. And we use SGDAN to predict the flight departure delay time at the three hours before the scheduled time of departure. The whole end-to-end framework is shown in Figure 2.
We first model the complex air spatio-temporal network as a graph sequence. As shown in Figure 2, in an air traffic network, a graph sequence is a sequence of heterogeneous graphs, which models all flights made by an aircraft in a day in chronological order. Among them, a heterogeneous graph is a network constructed by the current flight and its neighbor flights. In each heterogeneous graph, a node denotes a flight and an edge between two flights denotes that the two flights have a certain relation based on a meta-path. There are two meta-paths, that is, FAF (flight-the same arrival airport-flight) or FDF (flight-the same departure airport-flight) in our dataset. Then we take weather conditions, aircraft type, aircraft age and other factors as the inherent attributes of the nodes in the graph.
Then the SGDAN is developed to embed the graph sequence we defined. And we can use the embedding to predict the departure delay time. First, we use heterogeneous graph-level attention to embed the heterogeneous graph and we use a soft-gate to control multi-head. Specifically, we use multi-head attention to learn the importance of each neighbor flight based on different meta-paths (FAF or FDF) and use the importance to aggregate the features of a node (flight) and the neighbor flights. And different heads extract features from different views to get different weights, so we use a small convolutional sub-network to compute a soft gate at each attention head to control its importance. Then, we get two new features through the two meta-paths. We also use attention to aggregate the two new features obtained through different meta-paths. Finally, we use sequence-level attention to learn the importance of previous flights and aggregate the features between a node (flight) and its previous nodes (flights) that share the same aircraft. Based on the heterogeneous graph-level and sequence-level attention, SGDAN can get the optimal combination of the heterogeneous graph and the flight sequence, which enables the learned node embedding to better capture the complex Spatio-temporal network information in the graph sequence. We will describe it in Section 3 in detail.
We validate SGDAN by predicting the departure delay time on a real dataset provided by Umetrip which brings together information on all flights from all airports and airlines. The results show that SGDAN produces an effective result in predicting the departure delay time. The results are better than state-of-the-art models in the accurate flight delay time estimation task.
In summary, this paper makes the following contributions:
  • It abstracts the complex air spatio-temporal network into graph sequences, which uses graphs to model spatial dependencies, and sequences to model temporal dependencies.
  • Based on the abstraction, it proposes a novel model, SGDAN, which embeds the graphs by using heterogeneous graph attention and a soft gate to control multi-head. Through the heterogeneous graph-level attention, SGDAN embeds the impact of other flights with the same departure or arrival airports effectively. Then SGDAN uses sequences-level attention to embed the flight sequences which integrates the impact of the previous flights that share the same aircraft.
  • In predicting the flight departure delay time task, SGDAN gets a better result compared with state-of-the-art models. It proves that it is feasible and effective to abstract the spatio-temporal network into graph sequences and then construct a graph neural network in spatio-temporal networks.

2. Related Work

2.1. Flight Delay Prediction

Researchers have studied flight delays based on various views, such as aircraft taxiing delay [6,7], distributions of departure or arrival delays [1,2], and how delay propagated through airports and airlines [3,4].
Specifically, as for aircraft taxi-out, Poornima Balakrishna et al. used reinforcement learning algorithms for predicting the aircraft taxi-out time [6]. The influencing factors included passenger demand, fares, flight frequency, aircraft size and so forth. Ludovica Adacher et.al. dealt with the problem of routing and scheduling aircraft ground movement operations to minimize the total routing taxiing delay [7].
As for distributions of departure, en route and arrival delays, Eric Mueller et al. used probabilistic models to analyze aircraft arrival and departure delay characteristics [1] and Yufeng Tu et al. used a statistical approach to identify and study major factors that influence flight departure delays, and developed a strategic departure delay prediction model which employed non-parametric methods for daily and seasonal trends [2].
As for airport capacity, Loan Le et al. studied optimum airport capacity utilization under congestion management to reduce flight delays [8]. Mayara Condé Rocha Murça et al. presented a data-driven framework to identify, characterize, and predict traffic flow patterns in the terminal area of multi-airport systems toward improved capacity planning decision support in complex airspace [9].
In addition, other researchers have analyzed flight delays for different scopes. Juan Jose Rebollo et al. focused on airports to predict departure delays for all flights, while considering delays in all airlines and air lines indifferently [10]. Other studies have investigated the efficiency of all airlines based on delays [11,12].
In recent years, some researchers studied how delay propagated through airports and airlines of flight delays. Du Wen-Bo et al. built a delay causality network (DCN) based on the Granger causality test to understand the mechanism of flight delay propagation at the system-level [11,12]. Weiwei Wu et al. captured the interdependency among the sequences of flight delays due to airline operations in airports, weather, and air traffic control conditions [4]. Weiwei Wu et al. used a set of real airline data and developed an enhanced Delay Propagation Tree model with Bayesian Network (DPT-BN) whose results showed that flights have non-homogeneous delay propagation effects [13].
In addition, a few models are able to predict accurate flight delay time [14]. But the overfitting of their results is severe and the performance is poor. G. Gui et al. built a dataset from automatic dependent surveillance-broadcast (ADS-B) messages and other information such as weather conditions, flight schedule, and airport information. Then, it used machine learning to predict accurate delay time [15]. Then, the same authors also proposed a gradient boosting decision tree (GBDT) based on the same dataset for generalized flight delay prediction [16].

2.2. Graph Neural Networks

As early as in 2009, Scarselli Franco et al. proposed the Graph Neural Networks (GNN) model [17] which first extended neural networks to the graph domain. The inputs of GNN include node features and the relations between the nodes. Its target is to learn an embedding that contains nodes’ features and the information of nodes’ neighbors.
In the following years, there was a lot of research on improving GNN. Among them, some researchers use convolutional networks to improve GNN. On the one hand, Joan Bruna et al. define the convolution operation in the Fourier domain that computes the eigendecomposition of graph’s Laplacian and proposed spectral networks [18]. And some research constantly optimizes and accelerates the calculation [19,20,21]. In the end, Graph Convolutional Networks (GCN) [22] becomes the most popular algorithm which is used for semi-supervised classification and FastGCN [23] optimizes GCN [22] for large-scale graphs. On the other hand, some research defines convolutions directly on the graph with operations on spatially-close neighbors and constantly optimize it [24,25,26,27]. Finally, William L Hamilton et al. proposed GraphSAGE [28], a general inductive framework that generated embedding by sampling and aggregating features from a node’s local neighbors. Rex Ying et al. extended this model for web-scale recommender systems [29].
Some researchers use attention mechanisms to improve GNN. Ashish Vaswani et al. show that self-attention can improve RNN-based or convolution-based models and build a powerful model that obtains access to the most advanced performance in machine translation tasks [30]. Inspired by this, GATs [31] was proposed and address several key challenges of spectral-based graph neural networks simultaneously. On this basis, Jiani Zhang et al. proposed GaAN [32], which adopted a multi-head attention-based aggregator with additional gates on the attention heads. In addition, other researchers improve GNN [33] based on GAN [34].
However, these simple graph-based GNN models cannot effectively model the flight delay system which includes different features, co-competitive graphs with the same departure or arrival airport and the flight sequence as described in Section 1.
In addition, some researchers have begun to use GNN’s ideas to solve more complex graph problems. HAN [35] uses the attention mechanism to embed the heterogeneous graphs. HAN includes two attention levels: it first learns the importance between a node and its meta-path based neighbors and on this basis learns the importance of different meta-paths. GMNN [36] combines the advantages of graph neural networks and statistical relational learning models. In the E-step, one graph neural network learns effective object representations via nodes’ features and their neighbors. In the M-step, another graph neural network is used to model the local label dependency.
Recently, lots of researchers have studies dual-attention graph neural networks [37,38] and developed a serious of application for general spatio-temporal network in different urban traffic scene [39,40].
Inspired by HAN [35] and GMNN [36], we try to solve this complicated graph problem through multiple levels (steps). Also, inspired by GaAN [32], we use a soft gate at each attention head to control its importance. The gate-generation network acts as a high-level controller that determines how to aggregate the features extracted by the attention heads. Thus, we abstract the complex spatio-temporal network into graph sequences. And based on the graph sequences, we proposed SGDAN.

3. Model: SGDAN

Due to the complexity of the air spatio-temporal network, we first model the complex air traffic network as graph sequences, thereby we can model the special network to predict the flight departure delay time at three hours before the scheduled time of departure. The notations are shown in Table 1.
Graph sequence. As shown in Figure 3, in an air Spatio-temporal network, a graph sequence, denotes as S = { G 1 , G 2 , , G N } , is a sequence of N graphs, means that an aircraft makes N flights in a day and G n , n { 1 , 2 , , N } is a heterogeneous graph of the current flight F n in the networks where a node represents a flight and an edge represents the relationship, that is, FAF (flight-the same arrival airport-flight) or FDF (flight-the same departure airport-flight), between two flights.
Firstly, as shown in Figure 1, a flight such as the blue aircraft from airport A to B, affected by not only the flights departing at airport A, but also the flights arriving at airport B in a special time interval. We firstly use a heterogeneous graph to model spatial dependencies. Specifically, we use a node to represent a flight and use an edge to represent the relationship between two flights. In the scenario shown in Figure 1, the relationships between two flights include FAF (flight-the same arrival airport-flight) and FDF (flight-the same departure airport-flight). Thus, we can construct a heterogeneous graph, denotes as G = ( V , E , M , L ) , includes a node set V, an edge set E, a meta-path set M and a nodes’ label set L. Here a node denotes a flight and an edge between two flights denotes that the two flights have a certain relation based on a meta-path such as the same arrival airport. For example, in Figure 1, the relation can be the same arrival airport and the same departure airport. The edge set through a map function Φ : E M , M is the meta-path set. In this paper, two flights can be connected via two meta-paths, that is, FAF (flight-the same arrival airport-flight) or FDF (flight-the same departure airport-flight). In addition, in Figure 3, according to the scenario in Figure 1, we only draw three neighbors for each flight based on each metapath, that is, m { 1 , 2 , 3 } . However, in our work, we build a graph sequence for each aircraft by day. And for each flight, according to the existing research [6,7] and the field experience of the data providing company, we used the time window, within half an hour before and after departure or arrive, to obtain neighbors with the same departure airport or the same arrival airport.
Secondly, as shown in Figure 1, an aircraft that is, the blue aircraft can make many flights in a day. Meanwhile, the previous flight’s delay will cause a chain reaction as mentioned above. For example, in the scenario shown in Figure 1, if the blue aircraft arrived at B airport two hours late due to the weather condition, it would not be able to take off at B airport on time, which would cause subsequent flights to be delayed. After modeling the spatial dependencies of a flight with a heterogeneous graph, we use sequences to model this temporal dependence. That is, we use a sequence of heterogeneous graphs to model all flights made by an aircraft in a day in chronological order. In general, we use { G 1 , G 2 , , G N } represents the graph sequence where G n , n { 1 , 2 , , N } represents the heterogeneous graph of the n -th flight F n that the aircraft made.
Based on graph sequence, we propose a spatio-temporal graph attention neural network, named SGDAN. SGDAN follows a hierarchical structure: heterogeneous graph-level attention → sequence-level attention neural networks. In Section 1, we have presented the whole end-to-end framework in Figure 2. And we will describe the details of the heterogeneous graph-level attention in Figure 4 and the details of the sequence-level attention in Figure 5. Firstly, we discuss the hierarchical attention structure.

3.1. Heterogeneous Graph-Level Attention

SGDAN first learns the impact of space factors which play a different role and show different importance on flights. In this paper, based on different meta-paths, that is, FDF and FAF described in Section 1, a flight has different neighbors and can be constructed as different networks. As shown in Figure 4, F n denotes a flight, { D n 1 , D n 2 , D n 3 } are its neighbors with the same departure airport and A n 1 , A n 2 , A n 3 are its neighbors with the same arrival airport, which compose the departure network and the arrival network respectively.

3.1.1. Nodes Aggregating Based on Different Meta-Path

First, as shown in Figure 4, in the departure network, we use the multi-head attention [31] to learn the weight between F n and its neighbors, that is, F n , D n 1 , D n 2 , D n 3 . In other words, the attention can learn the importance which means how important the neighbors, that is, F n , D n 1 , D n 2 , D n 3 , will be for node F n . For convenience, we use i , i { F n , D n 1 , D n 2 , D n 3 } to represent the neighbors of F n in the following. Thus the multi-head attention can be formulated as follows:
W F n i k = a t t h e a d ( h F n , h i , k ) , i { F n , D n 1 , D n 2 , D n 3 } , k { 1 , 2 , , K } ,
where W F n i k means the importance that node i , i { F n , D n 1 , D n 2 , D n 3 } will be for node F n by k-th head.
Different heads extract features from different views to get different weights. Together with that in the air Spatio-temporal network, different features such as visibility and temperature have a different impact on flights. So, inspired by Reference [32], SGDAN uses a small convolutional sub-network to compute a soft gate at each attention head to control its importance. We then can aggregate the features of F n and { D n 1 , D n 2 , D n 3 } via the weights obtained by the attention, the formula is:
h F n d = σ ( | | k = 1 K g D k i W F n i k h i ) , i { F n , D n 1 , D n 2 , D n 3 } ,
where g D k = ψ ( F n , i ) , ψ is a convolutional network that takes the F n and neighboring node features as the input to generate the gate values, σ is softmax activation function, | | represents concatenation, h i is the features of i and g D k is a scalar, the gate value of the k-th head.
Like the departure network, in the arrival network, we repeat the learning to aggregate the features of F n and { A n 1 , A n 2 , A n 3 } , thereby we can get a new aggregation feature of F n , that is, h F n a .

3.1.2. Different Meta-Path Aggregating

Generally, a node (flight) in the departure network and the arrival network, contains different information, thus h F n d and h F n a can only reflect the node’s information from one aspect. So, we use another attention q 1 to learn the importance of each meta-path, what is, measure the importance of F n d and F n a . The importance of each meta-path, denoted as W Φ , is shown as follows:
W Φ d = q 1 T · h F n d ,
W Φ a = q 1 T · h F n a ,
which can be interpreted as the contribution of the meta-path Φ for a specific task. With the learning weights as coefficients, we can fuse h F n d and h F n a to obtain the heterogeneous graph embedding h F n G as follows:
h F n G = σ ( W Φ d h F n d + W Φ a h F n a + b ) ,
where σ is softmax activation function and b is the bias vector.

3.2. Sequence-Level Attention

After the heterogeneous graph-level attention, SGDAN has embedded the flight with spatial factors. In other words, the embedding can be used to predict flight delays if we do not consider the impact of temporal factors that is, the previous flights. However, in fact, the delay of a flight often has a significant impact on its subsequent flights, especially when the delay is relatively long or the rest time between the flight F n 1 and its subsequent flight F n is relatively short.
Therefore, in order to measure the impact of the previous flights that share the same aircraft in different conditions, we design the sequence-level attention. To be specific, as shown in Figure 5, for every flight (node) F n , we use the sequence-level attention to learn the impact of its previous flight F n 1 . Here we use sequence features to learn. The sequence features, denote as h s n 1 , n , n { 1 , 2 , } contain the features, such as the distance between the arrival airport of F n 1 and the arrival airport F n , the rest time between the flight F n 1 and its subsequent flight F n . These features are closely related to the impact of the previous flights, but not reflected in h G n . The impact of the previous flight F i , denotes as W G n 1 , n , is shown as:
W G n 1 , n = q 2 T · h s n 1 , n ,
where q 2 is an attention vector. With the learning impact coefficients, we can fuse the flight embedding h F n G and its previous flight embedding h F n 1 G to obtain the final embedding h G n :
h G n = σ ( W G n 1 , n h F n 1 G + h F n G + b ) ,
where σ is softmax activation function and b is a bias vector. It should be pointed out that when n = 1 , h F G 0 is a zero vector because there are no previous flights for the first flight every day that shares the same aircraft.
The final embedding h G n is aggregated by all heterogeneous graph embedding. In this way, the final embedding h G n not only includes the impact of the current conditions on the flight but also includes the impact of its previous flights on it. Then we can apply the final embedding to specific tasks and design different loss functions which we will describe in the next section.

4. Experiments

To evaluate the performance of SGDAN in estimating the departure delay time, we take several semi-supervised classification experiments on our data set. Furthermore, a set of comparative experiments are conducted with the same experimental conditions to show the superior performance of our proposed model. We implement SGDAN with Tensorflow 1.9 (https://www.tensorflow.org) and Python 3.6 (https://www.python.org), and train the model with an NVIDIA GeForce RTX 2080 Ti GPU. The experiments are completed on Windows 10 with 24 Intel Xeon Gold CPUs.

4.1. Data Set

The dataset we used is provided by Umetrip that brings together information on all flights from all airports and airlines. The dataset we used in this paper includes 2834 aircraft flying for a week, involving 77,924 flights. The data on every flight includes the departure airport, the arrival airport, the scheduled time of departure, the scheduled time of arrival, the actual time of departure, the actual time of arrival, the aircraft type and age, and weather data (involves temperature, visibility, wind speed, cloud and weather phenomenon) for relevant dates at the airports.

4.1.1. Data Preprocessing

There are some dirty data in the original data set. For example, some required data such as the scheduled time is null, and some data is wrong. We manually proofread these data, correct the data that can be corrected, and discard the data that cannot be corrected. In addition, there are some flights that will stopover somewhere. These flights are still affected by airports, airlines, and passengers during the stopover and still affect other flights. Therefore, we divide these stopover flights into multiple flights for processing. That is, every time a flight stops, we treat it as a new one.
After processing, our valid dataset includes 74,297 flights. Here we use 40,000 flights for training, 2000 for validating and the rest for testing.
We compute the departure delay time by calculating the difference between the actual time of departure and the scheduled time of departure. Then we transform these time slots into bins of constant values (30 min). To fit the learning process of SGDAN, these constant values are considered as the predicted representative labels in this experiment.

4.1.2. Features.

Based on the existing paper [5] and the experience from the data-providing company, that is, Umetrip, we extracted some detailed features. Before giving the definition of the final features, we first give some definitions of different attributes.
  • weather.
    w = [ w t , w v , w s , w c , w p ] ,
    where w t , w v , w s , w c and w p are temperature, visibility, wind speed, cloud, and weather phenomenon.
  • aircraft.
    a = [ a t , a g ] ,
    where a t and a g are the aircraft type and age.
  • time.
    t = [ t w , t d , t m , t s ] ,
    where t w , t d , t m and t s are the day of week, day of month, month and the season.
  • air routes.
    r = [ r d , r a , r b , r d e , r d a , r a r ] ,
    where r d , r a , r b , r d e , r d a and r a r are the crow-fly distance, the azimuth angle of the routes, backlog rate at the departure airport, departure rate at the departure airport, delay rate at the arrival airport and acceptance rate at the arrival airport. Among them, r d and r a are calculated from latitude and longitude of the departure airport and arrival airport, the others are calculated by the following formulas:
    r b = N ( D N ) N ( D A ) ,
    where N ( D N ) is the number of flights that should have departed but did not actually depart in the time window, and N ( D A ) is the number of flights that should have departed in the time window.
    r d e = N ( F D ) N ( D V ) ,
    where N ( F D ) is the number of flights that have departed in the time window, and N ( D V ) is the mean of historical departures in the time window.
    r d a = N ( A N ) N ( A A ) ,
    where N ( A N ) is the number of flights that should have arrived but did not actually arrive in the time window, and N ( A A ) is the number of flights that should have arrived in the time window.
    r a r = N ( F A ) N ( F V ) ,
    where N ( F A ) is the number of flights that have arrived in the time window, and N ( F V ) is the mean of historical arrivals in the time window.
From the above, we can define our features of every fight, that is, h i , i { F n , D n 1 , D n 2 , D n 3 } in Equation (2), as
h i = [ w d , w a , a , t , r ]
where w d is the weather w of the flight i’s departure airport and w a is the weather w of the flight i’s arrive airport. a, t and r are the aircraft vector, time vector, air routes vector we have defined before.
The sequences features, that is, h s n 1 , n , n { 2 , 3 , } are as follows:
  • Crow-fly distance. A crow-fly distance of flight F n 1 , calculated from latitude and longitude of its departure airport and arrival airport.
  • the rest time between the previous flight F n 1 and the flight F n .
  • the distance between the arrival airport of the previous flight F n 1 and the departure airport of the flight F n .
Among these features, we use one-hot for discrete features such as weather phenomena and normalize continuous features such as crow-fly distance. Then we construct the SGDAN based on the flights with the same departure airport and the flights with the same departure airport in a special time interval (such as one hour), as well as the flights that share an aircraft on the same days.

4.2. Experimental Evaluation

We define the problem of estimating the departure delay time as a piecewise classification [4] rather than regression. There are two reasons: Firstly, delays that cannot be predicted from the data set, such as delays caused by human factors or mechanical failures, will cause excessive differences in regression. Secondly, passengers and flight dispatchers usually do not need the exact delay time. In fact, a smaller delay interval can meet the demand. In our dataset, we classify each flight’s departure delay time into 30 min.
However, as mentioned in the existing paper [2], the departure delay distribution is fat-tailed distribution. And our dataset does obey the fat-tailed distribution as shown in Figure 6. In other words, the classes are imbalanced and it is a universal problem in flight delays. So we use a weighted cross-entropy as the loss function:
L o s s = i = 1 N w i L i ln ( Y i ) ,
where w i is the weight of the delay time class, L i and Y i are the labels and embedding of flight i.
Due to the fat-tail distribution of the departure delay time as Figure 6, in our experiments, we use Precision, Recall and F 1 to evaluate the performance of the baseline model and SGDAN. In addition, whether the boundary value of each class, such as a delay of 29 min, is predicted to be in the critical class (delay 30–60 mins) is also correct. The range of this boundary value is five minutes before and after the threshold, that is, 25–35, 55–65, 85–95 and 115–125 min.
As for the weight of the delay time, w i , there are usually two methods to calculate it:
w i = ( P + N ) / P
w i = N / ( P + N ) ,
where P and N are the number of positive cases and negative cases of the class i in our dataset.
We conducted experiments with Equations (18) and (19) respectively, and the results are shown in Table 2 and Table 3.
From Table 2 and Table 3, we can find that Table 2 shows a better precision performance of SGDAN and Table 3 shows a recall performance of SGDAN. This is because Equation (19) gives a higher weight to fewer categories in the weighted cross-entropy. However, for passengers, airlines and airports, it is better not to give early warnings of delays than to give false early warnings. Therefore, getting better precision is always more important than recall. Thus, in our paper, we use Equation (18) to calculate the weighted cross-entropy, that is, Equation (17).

4.3. Baselines

We compare SGDAN with two state-of-the-art models [15,16]. In References [15,16], the authors also define the predicted flight delay time as a classification problem: include binary categories, three categories, and four categories. Because these two papers [15,16] have no released data set, and due to the particularity of the data set, the method cannot be reproduced. In this situation, we only doing the same tasks to compare SGDAN with these methods. Meanwhile, we use the same evaluation as the two methods, that is, accuracy and precision [15,16] in the comparison.

4.3.1. Binary Categories

Binary-Categories is to predict flight delay or no delay. In addition to the methods [15,16], we also compared other methods for the same task. Zhongbin Li et al. and Young Jin Kim et al. use long short term memory (LSTM) network to predict flight delay [41,42] and Nuno Fernandes et al. extracts a series of features and uses machine learning, that is, Neural Network (NN), Support Vector Machines (SVM) and Random Forest (RF) to predict [5]. These models were evaluated with accuracy in the paper. The results are shown in Table 4.
From Table 4, we can see that SGDAN achieves the best performance. Comparing with Reference [5], SGDAN’s results far exceed it. It is due to the fact that SGDAN not only takes into account the delayed propagation in the flight sequences, but also captures the spatial factors which impact flights. Meanwhile, Zhongbin Li et al. [41] and Young Jin Kim et al. [42] also take into account the delayed propagation in the flight sequences but it does not model the spatial factors, so the results are still worse than SGDAN. The results demonstrate that the graph sequence we proposed and the model, SGDAN, proposed for this are effective.

4.3.2. Three Categories

Three-Categories divide the flight delay time into no delay, delay within 2 h and delay over 2 h. The results are shown in Table 5. We first give the precision as the methods [15,16] and finally give a total accuracy.

4.3.3. Four Categories

Four-Categories is to divide the flight delay time into no delay, delay within 1 h, delay within 2 h and delay over 2 h. We also first give the precision as the methods [15,16] and finally give a total accuracy.
From Table 5 and Table 6, we can find that SGDAN performs better than others, especially when predicting the long delays, that is, delay time over 2 h. Meanwhile, SGDAN can achieve better accuracy with better precision, which means that our recall value is much higher than other methods. As we mentioned above, it is worse to give false early warnings of delays than not to give early warnings. Thus, SGDAN is more efficient and practical. In addition, by comparing Table 5 and Table 6, we find that the performance of these two methods [15,16] in the Four-Categories is much worse than the Three-Categories, while the performance of SGDAN almost remain the same level. Obviously, our approach makes it easier to distinguish between different delay periods. This is due to the more detailed feature, and the special loss function in our model. Like in the methods [15,16], compared with the weighted cross-entropy loss function, the data noise is increased by using a random under-sampling strategy to obtain fairer prediction results. Besides, both the spatio-temporal factors and the propagation of delays in space-times are considered, which allows SGDAN to better learn how long each flight would be delayed and make SGDAN have a stronger modeling ability for delays in different time periods.

4.4. Discussion

Combined with the analysis of Table 2, we find a fact that the flights with the delay time less than 30 min account for 80%, so it is easy for the model to fully learn this category and get better results. Besides, delays of unpredicted flights are mostly caused by factors not clearly declared in the dataset such as air traffic control and mechanical failure. And the delay time is usually very long in these two categories. Because of once such delay occurs, it is often difficult to be compensated through the subsequent flights, which cause a long delay for all subsequent flights sharing the aircraft. We find such reasons cause a large proportion of long-delayed flights. Due to the fact that missing air traffic control data in our dataset, the features of this category are difficult to learn. However, as we mentioned above, comparing with the existing methods, even in the absence of these data, our model still got the best results so far.
The experiments prove that it is feasible to abstract the spatio-temporal network into graph sequences and then construct graph neural networks to learn.

5. Conclusions

This paper first models the complex air spatio-temporal network as graph sequences which uses graphs to model the spatial dependence and uses sequences to model the temporal dependence. Then, this paper proposes a novel model, SGDAN, which embeds the graph sequences. SGDAN uses graph-level attention to embed the heterogeneous graph firstly. Then, SGDAN uses sequence-level attention to aggregate the features between a node (flight) and the previous nodes (flights) that share the same aircraft. We conducted extensive and comprehensive experiments on a real dataset to evaluate the performance of SGDAN. The experimental results demonstrate that SGDAN significantly outperforms state-of-the-art models in two alternative tasks.
SGDAN is not limited to the prediction of flight delays. The idea of modeling the spatio-temporal network as a graph sequence and then using a graph neural network to learn can be widely extended to other similar spatio-temporal networks or used to study other flight problems. It will be our next work.
There are several potential improvements and extensions that can be addressed as future work. SGDAN has the general limitation of Graph Neural Network, what is, stacking multiple layers will result in over-smoothing and all vertices will converge to the same value. Therefore, training with fewer neural layers will lead to poor results when an aircraft makes too many flights. But in fact, an aircraft rarely makes more than 4 flights. In other words, fewer passengers will experience poorer services when others will have a better experience.

Author Contributions

Investigation, Z.G., G.M., H.T. and D.W.; Conceptualization, S.L.; Methodology, Z.G., G.M., S.L. and L.B.; Data curation, Z.G., L.B., H.T. and D.W.; Experiments, Z.G. and G.M.; Validation, Z.G., H.T. and D.W.; Writing—Original draft, Z.G.; Writing—Review & Editing, S.L., L.P. and L.B.; Funding, S.L. and L.P. All authors have read and agreed to the published version of the manuscript.

Funding

This work was jointly supported in part by the National Natural Science Foundation of China [Grant No. 61872222] and the Young Scholars Program of Shandong University.

Conflicts of Interest

The authors declare no conflict of interest.

References

  1. Mueller, E.; Chatterji, G. Analysis of aircraft arrival and departure delay characteristics. In Proceedings of the AIAA’s Aircraft Technology, Integration, and Operations (ATIO) 2002 Technical Forum, Los Angeles, CA, USA, 1–3 October 2002; p. 5866. [Google Scholar]
  2. Tu, Y.; Ball, M.O.; Jank, W.S. Estimating flight departure delay distributions—A statistical approach with long-term trend and short-term pattern. J. Am. Stat. Assoc. 2008, 103, 112–125. [Google Scholar] [CrossRef]
  3. Du, W.B.; Zhang, M.Y.; Zhang, Y.; Cao, X.B.; Zhang, J. Delay causality network in air transport systems. Transp. Res. Part E Logist. Transp. Rev. 2018, 118, 466–476. [Google Scholar] [CrossRef]
  4. Wu, W.; Wu, C.L.; Feng, T.; Zhang, H.; Qiu, S. Comparative analysis on propagation effects of flight delays: A case study of china airlines. J. Adv. Transp. 2018, 2018, 5236798. [Google Scholar] [CrossRef] [Green Version]
  5. Fernandes, N.; Moro, S.; Costa, C.J.; Aparício, M. Factors influencing charter flight departure delay. Res. Transp. Bus. Manag. 2019, 100413. [Google Scholar] [CrossRef]
  6. Balakrishna, P.; Ganesan, R.; Sherry, L. Accuracy of reinforcement learning algorithms for predicting aircraft taxi-out times: A case-study of Tampa Bay departures. Transp. Res. Part C Emerg. Technol. 2010, 18, 950–962. [Google Scholar] [CrossRef]
  7. Adacher, L.; Flamini, M.; Romano, E. Airport ground movement problem: Minimization of delay and pollution emission. IEEE Trans. Intell. Transp. Syst. 2018, 19, 3830–3839. [Google Scholar] [CrossRef]
  8. Le, L.; Donohue, G.; Hoffman, K.; Chen, C.H. Optimum airport capacity utilization under congestion management: A case study of New York LaGuardia airport. Transp. Plan. Technol. 2008, 31, 93–112. [Google Scholar] [CrossRef]
  9. Murça, M.C.R.; Hansman, R.J. Identification, Characterization, and Prediction of Traffic Flow Patterns in Multi-Airport Systems. IEEE Trans. Intell. Transp. Syst. 2018, 20, 1683–1696. [Google Scholar] [CrossRef]
  10. Rebollo, J.J.; Balakrishnan, H. Characterization and prediction of air traffic delays. Transp. Res. Part C Emerg. Technol. 2014, 44, 231–241. [Google Scholar] [CrossRef]
  11. Kim, A.M. The impacts of changing flight demands and throughput performance on airport delays through the Great Recession. Transp. Res. Part A Policy Pract. 2016, 86, 19–34. [Google Scholar] [CrossRef]
  12. Kim, A.; Hansen, M. Deconstructing delay: A non-parametric approach to analyzing delay changes in single server queuing systems. Transp. Res. Part B Methodol. 2013, 58, 119–133. [Google Scholar] [CrossRef]
  13. Wu, W.; Wu, C.L. Enhanced delay propagation tree model with Bayesian Network for modelling flight delay propagation. Transp. Plan. Technol. 2018, 41, 319–335. [Google Scholar] [CrossRef]
  14. Ye, B.; Liu, B.; Tian, Y.; Wan, L. A Methodology for Predicting Aggregate Flight Departure Delays in Airports Based on Supervised Learning. Sustainability 2020, 12, 2749. [Google Scholar] [CrossRef] [Green Version]
  15. Gui, G.; Liu, F.; Sun, J.; Yang, J.; Zhou, Z.; Zhao, D. Flight Delay Prediction Based on Aviation Big Data and Machine Learning. IEEE Trans. Veh. Technol. 2020, 69, 140–150. [Google Scholar] [CrossRef]
  16. Liu, F.; Sun, J.; Liu, M.; Yang, J.; Gui, G. Generalized Flight Delay Prediction Method Using Gradient Boosting Decision Tree. In Proceedings of the 2020 IEEE 91st Vehicular Technology Conference (VTC2020-Spring), Antwerp, Belgium, 25–28 May 2020; pp. 1–5. [Google Scholar]
  17. Franco, S.; Marco, G.; Ah Chung, T.; Markus, H.; Gabriele, M. The graph neural network model. IEEE Trans. Neural Netw. 2009, 20, 61. [Google Scholar]
  18. Bruna, J.; Zaremba, W.; Szlam, A.; Lecun, Y. Spectral Networks and Locally Connected Networks on Graphs. arXiv 2013, arXiv:1312.6203. [Google Scholar]
  19. Henaff, M.; Bruna, J.; LeCun, Y. Deep convolutional networks on graph-structured data. arXiv 2015, arXiv:1506.05163. [Google Scholar]
  20. Hammond, D.K.; Vandergheynst, P.; Gribonval, R. Wavelets on graphs via spectral graph theory. Appl. Comput. Harmon. Anal. 2011, 30, 129–150. [Google Scholar] [CrossRef] [Green Version]
  21. Defferrard, M.; Bresson, X.; Vandergheynst, P. Convolutional neural networks on graphs with fast localized spectral filtering. In Proceedings of the neural information processing systems, Barcelona, Spain, 5–10 December 2016; pp. 3844–3852. [Google Scholar]
  22. Kipf, T.N.; Welling, M. Semi-Supervised Classification with Graph Convolutional Networks. arXiv 2016, arXiv:1609.02907. [Google Scholar]
  23. Chen, J.; Ma, T.; Xiao, C. Fastgcn: Fast learning with graph convolutional networks via importance sampling. arXiv 2018, arXiv:1801.10247. [Google Scholar]
  24. Duvenaud, D.; Maclaurin, D.; Aguileraiparraguirre, J.; Gómezbombarelli, R.; Hirzel, T.; Aspuruguzik, A.; Adams, R.P. Convolutional Networks on Graphs for Learning Molecular Fingerprints. In Proceedings of the International Conference on Neural Information Processing Systems, Montreal, QC, Canada, 7–12 December 2015. [Google Scholar]
  25. Atwood, J.; Towsley, D. Diffusion-convolutional neural networks. In Proceedings of the Advances in Neural Information Processing Systems, Barcelona, Spain, 5–10 December 2016; pp. 1993–2001. [Google Scholar]
  26. Niepert, M.; Ahmed, M.O.; Kutzkov, K. Learning convolutional neural networks for graphs. In Proceedings of the International Conference on Machine Learning, New York, NY, USA, 19–24 June 2016; pp. 2014–2023. [Google Scholar]
  27. Monti, F.; Boscaini, D.; Masci, J.; Rodola, E.; Svoboda, J.; Bronstein, M.M. Geometric deep learning on graphs and manifolds using mixture model cnns. In Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition, Honolulu, HI, USA, 21–26 July 2017; pp. 5115–5124. [Google Scholar]
  28. Hamilton, W.L.; Ying, Z.; Leskovec, J. Inductive Representation Learning on Large Graphs. In Proceedings of the Neural Information Processing Systems, Long Beach, CA, USA, 4–9 December 2017; pp. 1024–1034. [Google Scholar]
  29. Ying, R.; He, R.; Chen, K.; Eksombatchai, P.; Hamilton, W.L.; Leskovec, J. Graph Convolutional Neural Networks for Web-Scale Recommender Systems. In Proceedings of the 24th ACM SIGKDD International Conference on Knowledge Discovery & Data Mining, London, UK, 19–23 August 2018. [Google Scholar]
  30. Vaswani, A.; Shazeer, N.; Parmar, N.; Uszkoreit, J.; Jones, L.; Gomez, A.N.; Kaiser, Ł.; Polosukhin, I. Attention is all you need. In Proceedings of the Advances in Neural Information Processing Systems, Long Beach, CA, USA, 4–9 December 2017; pp. 5998–6008. [Google Scholar]
  31. Veličković, P.; Cucurull, G.; Casanova, A.; Romero, A.; Lio, P.; Bengio, Y. Graph Attention Networks. In Proceedings of the International Conference on Learning Representations, Vancouver, BC, Canada, 30 April–3 May 2018. [Google Scholar]
  32. Zhang, J.; Shi, X.; Xie, J.; Hao, M.; Yeung, D.Y. GaAN: Gated Attention Networks for Learning on Large and Spatiotemporal Graphs. arXiv 2018, arXiv:1803.07294. [Google Scholar]
  33. Ding, M.; Tang, J.; Zhang, J. Semi-supervised learning on graphs with generative adversarial nets. In Proceedings of the 27th ACM International Conference on Information and Knowledge Management, Torino, Italy, 22–26 October 2018; pp. 913–922. [Google Scholar]
  34. Goodfellow, I. NIPS 2016 Tutorial: Generative Adversarial Networks. arXiv 2016, arXiv:1701.00160. [Google Scholar]
  35. Wang, X.; Ji, H.; Shi, C.; Wang, B.; Cui, P.; Yu, P.; Ye, Y. Heterogeneous Graph Attention Network. In Proceedings of the World Wide Web Conference, San Francisco, CA, USA, 13–17 May 2019; pp. 2022–2032. [Google Scholar]
  36. Qu, M.; Bengio, Y.; Tang, J. GMNN: Graph Markov Neural Networks. arXiv 2019, arXiv:1905.06214. [Google Scholar]
  37. Chen, F.; Pan, S.; Jiang, J.; Huo, H.; Long, G. DAGCN: Dual Attention Graph Convolutional Networks. In Proceedings of the 2019 International Joint Conference on Neural Networks (IJCNN), Budapest, Hungary, 14–19 July 2019; pp. 1–8. [Google Scholar] [CrossRef] [Green Version]
  38. Zhang, X.; Zhang, T.; Zhao, W.; Cui, Z.; Yang, J. Dual-Attention Graph Convolutional Network. In Pattern Recognition; Palaiahnakote, S., Sanniti di Baja, G., Wang, L., Yan, W.Q., Eds.; Springer: Cham, Switzerland, 2020; pp. 238–251. [Google Scholar]
  39. Yuan, Z.; Liu, H.; Liu, Y.; Zhang, D.; Yi, F.; Zhu, N.; Xiong, H. Spatio-Temporal Dual Graph Attention Network for Query-POI Matching. In Proceedings of the 43rd International ACM SIGIR Conference on Research and Development in Information Retrieval, Virtual Event, Xi’an, China, 25–30 July 2020; pp. 629–638. [Google Scholar]
  40. Park, C.; Lee, C.; Bahng, H.; Tae, Y.; Jin, S.; Kim, K.; Ko, S.; Choo, J. ST-GRAT: A Novel Spatio-temporal Graph Attention Networks for Accurately Forecasting Dynamically Changing Road Speed. In Proceedings of the 29th ACM International Conference on Information & Knowledge Management, Galway, Ireland, 19–23 October 2020; pp. 1215–1224. [Google Scholar]
  41. Li, Z.; Chen, H.; Ge, J.; Ning, K. An Airport Scene Delay Prediction Method Based on LSTM. In Advanced Data Mining and Applications; Gan, G., Li, B., Li, X., Wang, S., Eds.; Springer: Cham, Switzerland, 2018; pp. 160–169. [Google Scholar]
  42. Kim, Y.J.; Choi, S.; Briceno, S.; Mavris, D. A deep learning approach to flight delay prediction. In Proceedings of the 2016 IEEE/AIAA 35th Digital Avionics Systems Conference (DASC), Sacramento, CA, USA, 25–29 September 2016; pp. 1–6. [Google Scholar]
Figure 1. A simplified illustration of an aircraft (the blue aircraft) flying in a day, which is usually called a flight sequence.
Figure 1. A simplified illustration of an aircraft (the blue aircraft) flying in a day, which is usually called a flight sequence.
Sensors 20 06433 g001
Figure 2. The Spatio-temporal graph dual-attention neural network. h F n G , n { 1 , 2 , 3 } are the embedding of flight F n in the whole heterogeneous graph. And h G n , n { 1 , 2 , 3 } are the final embedding of flight F n which are aggregated by all heterogeneous graph and the graph sequences.
Figure 2. The Spatio-temporal graph dual-attention neural network. h F n G , n { 1 , 2 , 3 } are the embedding of flight F n in the whole heterogeneous graph. And h G n , n { 1 , 2 , 3 } are the final embedding of flight F n which are aggregated by all heterogeneous graph and the graph sequences.
Sensors 20 06433 g002
Figure 3. A graph sequence based on the scenario shown in Figure 1. F n , n { 1 , 2 , 3 } denotes the n-th flight made by the blue aircraft. For example, F 1 denotes the flight from airport A to airport B made the blue aircraft. D n m , n , m { 1 , 2 , 3 } are the flights with the same departure airport as F n , n { 1 , 2 , 3 } and A n m , n , m { 1 , 2 , 3 } are the flights with the same arrival airport as F n , n { 1 , 2 , 3 } . For example, D 1 1 denotes the flights departing from airport A except for the blue filights. And A 1 1 denotes the flights arriving at airport B except for the blue filights.
Figure 3. A graph sequence based on the scenario shown in Figure 1. F n , n { 1 , 2 , 3 } denotes the n-th flight made by the blue aircraft. For example, F 1 denotes the flight from airport A to airport B made the blue aircraft. D n m , n , m { 1 , 2 , 3 } are the flights with the same departure airport as F n , n { 1 , 2 , 3 } and A n m , n , m { 1 , 2 , 3 } are the flights with the same arrival airport as F n , n { 1 , 2 , 3 } . For example, D 1 1 denotes the flights departing from airport A except for the blue filights. And A 1 1 denotes the flights arriving at airport B except for the blue filights.
Sensors 20 06433 g003
Figure 4. The heterogeneous graph-level attention in Spatio-temporal Graph Dual-Attention Neural Network (SGDAN) where the green background vectors need to be learned with the Equation (1). The departure network and the arrival network are constructed by different meta-paths, i.e., FDF and FAF respectively.
Figure 4. The heterogeneous graph-level attention in Spatio-temporal Graph Dual-Attention Neural Network (SGDAN) where the green background vectors need to be learned with the Equation (1). The departure network and the arrival network are constructed by different meta-paths, i.e., FDF and FAF respectively.
Sensors 20 06433 g004
Figure 5. The sequence-level attention in SGDAN. And the details of F n G , n { 1 , 2 , 3 } are the embedding by the heterogeneous graph-level attention shown in Figure 4. h G n , n { 1 , 2 , 3 } are the final embedding of flight F n which are aggregated by all heterogeneous graph and the graph sequences. And Y n , n { 1 , 2 , 3 } are the prediction results obtained by embedding.
Figure 5. The sequence-level attention in SGDAN. And the details of F n G , n { 1 , 2 , 3 } are the embedding by the heterogeneous graph-level attention shown in Figure 4. h G n , n { 1 , 2 , 3 } are the final embedding of flight F n which are aggregated by all heterogeneous graph and the graph sequences. And Y n , n { 1 , 2 , 3 } are the prediction results obtained by embedding.
Sensors 20 06433 g005
Figure 6. The departure delay time distribution in our dataset.
Figure 6. The departure delay time distribution in our dataset.
Sensors 20 06433 g006
Table 1. List of notational conventions.
Table 1. List of notational conventions.
VariablesDescription
VA node set
EAn edge set
MA meta-path set, include FAF and FDF
LThe nodes’ label set
G n = { V , E , M , L } A heterogeneous graph, n { 1 , 2 , , N }
S = { G 1 , G 2 , , G N } A graph sequence.
F n The current flight of the n-th heterogeneous graph in graph sequence
D n m The flight F n ’s neighbors with the same departure airport, m { 1 , 2 , 3 }
A n m The flight F n ’s neighbors with the same arrival airport, m { 1 , 2 , 3 }
h i Flight i’s features, i { F n , D n m , A n m }
h F n d Aggregate feature of flight F n in the departure network
h F n a Aggregate feature of flight F n in the arrival network
h F n G Aggregate feature of flight F n in the whole heterogeneous graph
g D k The soft gate to control the importance of k-th head in departure network
g A k The soft gate to control the importance of k-th head in arrival network
h s n 1 , n The feature of sequence F n 1 and F n
h G n Final embedding of Flight F n
Table 2. The classification results of SGDAN with Equation (18).
Table 2. The classification results of SGDAN with Equation (18).
Delay Time (min)PrecisionRecall F 1
≤300.920.950.93
31–600.830.750.79
61–900.850.720.76
91–1200.830.630.72
121–1500.900.400.55
>1500.910.450.60
total accuracy0.89
Table 3. The classification results of SGDAN with Equation (19).
Table 3. The classification results of SGDAN with Equation (19).
Delay Time (min)PrecisionRecall F 1
≤300.970.790.87
31–600.800.810.80
61–900.540.700.61
91–1200.350.850.50
121–1500.160.920.27
>1500.200.950.33
total accuracy0.79
Table 4. The classification results of binary categories.
Table 4. The classification results of binary categories.
ModelAccuracy
[41] LSTM0.88
[42] LSTM0.87
[5] NN0.73
[5] SVM0.73
[5] RF0.76
[16] GBDT0.88
[15]0.90
SGDAN0.91
Table 5. The classification results of three categories.
Table 5. The classification results of three categories.
Delay Time[16] GBDT[15]SGDAN
≤300.7780.8060.925
31–1200.8550.8890.841
>1200.6910.6730.912
Total accuracy0.7950.8140.901
Table 6. The classification results of four categories.
Table 6. The classification results of four categories.
Delay Time[16] GBDT[15]SGDAN
≤300.7860.8530.918
31–600.5820.5450.831
61–1200.6030.6920.843
>1200.7230.7190.904
Total accuracy0.6740.7000.894
Publisher’s Note: MDPI stays neutral with regard to jurisdictional claims in published maps and institutional affiliations.

Share and Cite

MDPI and ACS Style

Guo, Z.; Mei, G.; Liu, S.; Pan, L.; Bian, L.; Tang, H.; Wang, D. SGDAN—A Spatio-Temporal Graph Dual-Attention Neural Network for Quantified Flight Delay Prediction. Sensors 2020, 20, 6433. https://doi.org/10.3390/s20226433

AMA Style

Guo Z, Mei G, Liu S, Pan L, Bian L, Tang H, Wang D. SGDAN—A Spatio-Temporal Graph Dual-Attention Neural Network for Quantified Flight Delay Prediction. Sensors. 2020; 20(22):6433. https://doi.org/10.3390/s20226433

Chicago/Turabian Style

Guo, Ziyu, Guangxu Mei, Shijun Liu, Li Pan, Lei Bian, Hongwu Tang, and Diansheng Wang. 2020. "SGDAN—A Spatio-Temporal Graph Dual-Attention Neural Network for Quantified Flight Delay Prediction" Sensors 20, no. 22: 6433. https://doi.org/10.3390/s20226433

Note that from the first issue of 2016, this journal uses article numbers instead of page numbers. See further details here.

Article Metrics

Back to TopTop