Next Article in Journal
Architecture Preliminary Design and Trade-Off Optimization of Stratospheric Airship Based on MBSE
Next Article in Special Issue
Characteristics of Ice Super Saturated Regions in Washington, D.C. Airspace (2019–2023)
Previous Article in Journal
Rapid and Near-Analytical Planning Method for Entry Trajectory under Time and Full-State Constraints
Previous Article in Special Issue
Identification of Traffic Flow Spatio-Temporal Patterns and Their Associated Weather Factors: A Case Study in the Terminal Airspace of Hong Kong
 
 
Font Type:
Arial Georgia Verdana
Font Size:
Aa Aa Aa
Line Spacing:
Column Width:
Background:
Article

Air Traffic Control Speech Enhancement Method Based on Improved DNN-IRM

School of Computer Science, Civil Aviation Flight University of China, Guanghan 618307, China
*
Authors to whom correspondence should be addressed.
Aerospace 2024, 11(7), 581; https://doi.org/10.3390/aerospace11070581
Submission received: 6 June 2024 / Revised: 11 July 2024 / Accepted: 14 July 2024 / Published: 16 July 2024

Abstract

:
The quality of air traffic control speech is crucial. However, internal and external noise can impact air traffic control speech quality. Clear speech instructions and feedback help optimize flight processes and responses to emergencies. The traditional speech enhancement method based on a deep neural network and ideal ratio mask (DNN-IRM) is prone to distortion of the target speech in a strong noise environment. This paper introduces an air traffic control speech enhancement method based on an improved DNN-IRM. It employs LeakyReLU as an activation function to alleviate the gradient vanishing problem, improves the DNN network structure to enhance the IRM estimation capability, and adjusts the IRM weights to reduce noise interference in the target speech. The experimental results show that, compared with other methods, this method improves the perceptual evaluation of speech quality (PESQ), short-term objective intelligibility (STOI), scale-invariant signal-to-noise ratio (SI-SNR), and speech spectrogram clarity. In addition, we use this method to enhance real air traffic control speech, and the speech quality is also improved.

1. Introduction

The airspace operation environment is becoming more and more complex, air traffic flow continues to increase, and the problems arising from various aspects, such as air transportation efficiency and flight safety, are becoming more and more serious [1], demanding higher standards for air traffic control. Air traffic control primarily relies on radio communication between air traffic control officers and pilots, where controllers transmit instructions, pilots read them back, and the controllers confirm them before the pilots execute the instructions. As the initial step in executing air traffic control directives, clear and accurate voice communication between controllers and pilots is a crucial factor in ensuring flight safety [2]. According to statistical data released by the European Organization for the Safety of Air Navigation and the European Telecommunications Standards Institute for Aviation, as many as 30% of aviation incidents are related to misheard voice instructions [3].
During airplane flights and air traffic control procedures, communication between controllers and pilots is often subject to various disturbances due to restricted communication conditions. These disturbances originate partly from external environmental sources such as cabin instrument noise, aircraft engine roar, and air traffic control center noise, as well as noise from the communication process itself, including radio noise and high-frequency communication noise. Due to these disturbances, conversations between the parties frequently suffer from suboptimal quality, resulting in unsafe occurrences such as unclear semantic expression, misinterpretations, and missed information. Therefore, researching methods for speech enhancement in air traffic control communication holds significant practical importance. This research ensures that controllers can convey instructions, aids pilots in better understanding these instructions, enhances flight safety, reduces communication issues and risks, and promotes more effective aviation traffic management.
Traditional speech enhancement methods can be broadly categorized into those based on time–frequency (T-F) domain filtering and those based on statistical models. T-F domain-filtering methods include spectral subtraction [4], subspace methods [5], Wiener filtering [6], and minimum mean square error estimation [7]. These techniques operate under the assumption that “noise is stationary,” aiming to reduce noise by reducing its spectrum. Methods based on statistical models encompass Hidden Markov models [8] and Gaussian mixture models [9]. These statistical models rely on specific acoustic assumptions and model structures. However, noise often exhibits variability in natural environments, rendering the acoustic assumptions about noise invalid. Consequently, the denoising effectiveness of traditional speech enhancement methods is limited, and these methods tend to generate artifacts resembling musical interference.
With the rise of deep learning, various neural network models have been introduced and applied to the field of speech enhancement. Xu et al. [10,11] proposed a supervised method based on a DNN, aiming to directly map enhanced speech by seeking the mapping function between the noise and clean speech signals. Wang et al. [12,13] employed a DNN to estimate two different targets, namely, the ideal binary mask (IBM) and the IRM, aiming to reduce noise interference in the target speech signal. Zhou et al. [14] integrated the estimation of the IRM with the target binary mask (TBM) to obtain an improved mask for speech enhancement. The performance of the fused mask was found to be superior to the masks estimated individually. Liu et al. [15] proposed an amplitude fusion method based on deep learning, which effectively improves the effect of speech dereverberation by combining the mapping method with the ideal amplitude masking (IAM) method. The IBM is simple to implement but may cause speech distortion; the IAM offers smooth transitions and improved sound quality but has higher computational complexity and may retain some noise; and the IRM provides the best results in smoothness and noise suppression of the three masks but is computationally complex and requires accurate estimation of speech and noise energy.
This research aims to solve the quality problem of air traffic control speech in complex noisy environments. Specifically, the following research questions and hypotheses are proposed. First, we explore how to effectively enhance the clarity and intelligibility of air traffic control speech in intense noise environments. Second, it is assumed that an improved DNN-IRM method can reduce the distortion of target speech in a noisy environment and outperform the traditional method. In addition, it is assumed that introducing the LeakyReLU activation function can alleviate the gradient vanishing problem and improve the accuracy of the IRM estimation, and thus improve the score of the relevant speech quality. We hope to verify these hypotheses through experiments and prove the effectiveness of the proposed method in actual air traffic control speech enhancement.
This paper’s main contributions are as follows:
  • We propose an air traffic control speech enhancement method based on an improved DNN-IRM. It uses the LeakyReLU activation function to mitigate the gradient vanishing issue, refines the DNN architecture to boost the IRM estimation accuracy, and modifies the IRM weights to minimize noise interference with the target speech.
  • We select some pure noise segments from the air traffic control speech database as noise, add them to other clean speech, and create speech pairs of clean speech and noisy speech. Additionally, we conduct three sets of comparative experiments using the PESQ [16], short-time objective intelligibility (STOI) [17], the structural similarity index measure (SSIM) [18] and the scale-invariant signal-to-distortion ratio (SI-SDR) [19] as evaluation metrics. The SSIM is utilized to measure the similarity between the original speech spectrogram and the enhanced speech spectrogram.
  • We use air traffic control speech in a natural environment to test the performance of the method proposed in this article and also use the speech quality non-reference evaluation method to test the overall score of the enhanced speech, respectively, deep noise suppression mean opinion score (DNSMOS) [20] and non-intrusive speech quality assessment (NISQA) [21].
  • We investigate the impact of different parameter values on the experimental results when adjusting the IRM weights.
The rest of the article is organized as follows. In Section 2, we begin by explaining the relevant concepts covered in the paper, followed by a detailed exposition of the adopted method’s process and network structure. Section 3 compares the proposed method with other speech enhancement methods and explores the impact of adjusting the mask weight on the experimental results. Section 4 provides a comprehensive summary of the entire document and outlines prospects for future research directions.

2. Concepts and Method

In this section, we first explain some concepts related to the method, then introduce the specific process of the proposed method, and finally analyze the network structure of the proposed method.

2.1. Relevant Concepts

This section first introduces the activation function needed in this method, then introduces the mask used in the method, and finally describes in detail how to adjust the mask.

2.1.1. Activation Function

Activation function is crucial for the learning process in neural networks, as neural networks perform linear operations, but human perception of speech signals is nonlinear. Additionally, sensitivity to low-frequency signals is higher compared to high-frequency signals. By incorporating an activation function, neural networks acquire the ability to perform nonlinear operations, enabling the model to capture nonlinear relationships within the data, thus enhancing the network’s learning capability.
The activation functions needed for this experiment are R e L U [22], L e a k y R e L U [23], and S i g m o i d [24], whose respective equations are:
R e L U x = x , x > 0 0 , x 0
L e a k y R e L U x = x , x > 0 α · x , x 0
S i g m o i d x = 1 1 + e x
where x represents input features, with the value of α being 0.01. Traditional DNN-IRM-based speech enhancement methods usually use R e L U as the activation function, which may ignore the impact of negative values. The introduction of LeakyReLU can solve this problem more effectively because it allows partial information transfer even when the input of the network layer is negative, which not only helps to alleviate the gradient disappearance problem during the training process but also improves learning efficiency. As the I R M values range from 0 to 1, the utilization of the Sigmoid function is required for data correction in the final network output.

2.1.2. Ideal Ratio Mask

We assume the equation for the noisy speech signal is:
y = n + s
where s represents the clean speech, n stands for the noise signal, and y denotes the noisy speech.
The key idea of the I R M is to determine the relative contribution of the clean speech and noisy speech energies within each T-F unit based on their ratio. When the I R M approaches 1, it signifies a greater presence of the speech signal in that frequency component, while an I R M close to 0 indicates a higher presence of the noise signal in that frequency component. This is expressed in the following equation:
I R M ( t , f ) = S ( t , f ) S t , f + N ( t , f ) β
where S ( t , f ) and N ( t , f ) , respectively, represent the clean speech energy and noisy speech energy of the T-F unit. β is an adjustable parameter used to scale the mask, and when its value is set to 0.5, it provides a more accurate signal estimation.

2.1.3. Adjusting IRM Weights

The purpose of this operation is to further reduce the interference of noise in the noisy speech, as depicted in Figure 1. For the network-estimated IRM, it aims to preserve the T-F units primarily containing target speech energy while attenuating those that do not predominantly contain target speech energy. This yields the adjusted I R M . The process can be expressed as:
I R M ~ ( t , f ) = I R M ^ ( t , f ) , I R M ^ ( t , f ) > δ γ · I R M ^ ( t , f ) , I R M ^ ( t , f ) δ
where I R M ^ ( t , f ) represents the network-estimated IRM and I R M ~ ( t , f ) represents the adjusted IRM. The parameter ( δ ) ranges from 0 to 1, used to differentiate between noisy speech and clean speech. Specifically, the signals where I R M ^ ( t , f ) > δ are considered as clean speech, while the signals where I R M ^ ( t , f ) δ are regarded as noisy speech. Another parameter ( γ ), also ranging from 0 to 1, aims to mitigate the impact of noisy speech on clean speech. γ and δ selected in this article are both 0.5.
When I R M ^ ( t , f ) > δ , that is, the weights represented by the red squares in Figure 1, there is no need to adjust the weights; when I R M ^ t , f δ , that is, represented by the orange and yellow squares at the top of Figure 1, it is necessary to multiply the original weights by γ to get the corresponding squares at the bottom of Figure 1. The upper orange squares correspond to the lower yellow squares, and the upper yellow squares correspond to the lower green squares. In Figure 1, the value of γ is 0.5, and we can observe that the weight is reduced by half.

2.2. Method Process

The process of the air traffic control speech enhancement method based on improved DNN-IRM is illustrated in Figure 2.
The processing of the method includes a training stage and an enhancement stage. The input of the training stage is noisy speech and clean speech, and its purpose is to train the DNN and narrow the gap between the noisy speech and clean speech. In the enhancement stage, the noisy speech is directly input into the trained DNN, and the enhanced speech is finally obtained through DNN decoding and related processing. The specific details of the training stage and speech enhancement stage will be introduced in Section 2.2.1 and Section 2.2.2.

2.2.1. Training Stage

During the training stage, we begin by extracting features from the speech signal to obtain log power spectrum (LPS) features, which are then fed into the DNN for training. The network produces the estimated IRM values, which are subsequently compared with actual IRM values. Throughout this process, there is continuous adjustment of the network parameters to achieve outputs closer to the actual mask values.
Due to the nonlinear nature of human auditory perception of audio, directly processing the amplitude spectrum after the short-time Fourier transform (STFT) is inappropriate. Therefore, it is necessary to use LPS features as input features for training. The specific principles behind extracting the LPS feature parameters and calculating the IRM are illustrated in Figure 3.
The specific processing steps are as follows:
(a)
Taking y as the noisy speech, y undergoes framing and windowing operations to obtain the short-time signal for each frame, denoted as y ( n ) . The purpose of framing is to use shorter single frames as steady-state signals so that parameters between frames can transition more smoothly; the purpose of windowing is to reduce leakage in the frequency domain.
(b)
STFT transforms the time-domain data into frequency-domain data, resulting in the amplitude spectrum and phase spectrum for each frame. The equations are as follows:
Y ( t , f ) ,   θ ( t , f ) = n = n = y n ω n t e j 2 π N f n
where Y ( t , f ) represents the amplitude spectrum, θ ( t , f ) represents the phase spectrum, ω ( n ) is a Hamming Window with length N , t is a time-sensitive index, f is a frequency index, N is the length of each band, and e j 2 π N f n is the kernel that can be transformed.
(c)
The energy spectrum ( E ( t , f ) ) for each frame after STFT transformaton is calculated as follows:
E ( t , f ) = Y ( t , f ) 2
(d)
The L P S features corresponding to the energy spectrum ( L P S ( t , f ) ) are calculated as follows:
L P S ( t , f ) = l o g E ( t , f )
(e)
Steps (a) to (c) are repeated for the clean speech ( s ) and the noisy speech ( n ) to obtain the energy of the noisy speech ( N ( t , f ) ) and the energy of the clean speech ( S ( t , f ) ). Then, the I R M values are calculated using Equation (5).
Using the Mean Squared Error ( M S E ) as the loss function during the training process, the model continuously updates and optimizes its parameters to minimize the disparity between the actual I R M and the estimated I R M . The definition of M S E is as follows:
E ( t , f ) = t , f I R M t , f I R M ^ ( t , f ) 2
where I R M t , f represents the actual I R M and I R M ^ ( t , f ) represents the IRM estimated by the D N N .

2.2.2. Enhancement Stage

During the enhancement stage, the LPS features of the noisy speech are fed into a trained D N N , which outputs I R M ^ ( t , f ) . Subsequently, the weights of I R M ^ ( t , f ) are adjusted to obtain I R M ~ ( t , f ) . After multiplying I R M ~ ( t , f ) with the amplitude spectrum Y ( t , f ) of the noisy speech, and then performing the natural exponential operation ( E x p ), the enhanced amplitude spectrum ( Y ^ ( t , f ) ) is obtained. Y ^ ( t , f ) is then multiplied with the phase spectrum ( θ ( t , f ) ) of the speech under processing. After performing the inverse short-time Fourier transform (ISTFT), the enhanced speech ( x ) is obtained.
Y ^ ( t , f ) = E x p Y ( t , f ) I R M ~ ( t , f ) X ( t , f ) = Y ^ ( t , f ) θ ( t , f ) x = t X ( t , f ) ω ( n t ) e j 2 π N f n t ω 2 ( n t )
where represents the Hadamard product, X ( t , f ) is the frequency after amplification, ω ( n t ) is the transformation of the window function, and t ω 2 ( n t ) is a multiplication function to ensure the width consistency when the signal is repeated. The process of speech reconstruction is illustrated in Figure 4.
This section has introduced the specific processing flow of the proposed method, and also explained in detail the specific data flow in the speech feature extraction stage and the speech reconstruction stage. The following sections will introduce the internal structure of the DNN in detail.

2.3. Network Architecture

This section outlines the network architecture of the DNN in the method process, as illustrated in Figure 5. In the diagram, “linear” represents the alteration in the number of input and output units. Each layer’s network parameters are detailed in Table 1. The model comprises one input layer, three hidden layers, and one output layer, with 1799 units in the input layer, 2048 units in each hidden layer, and 257 units in the output layer. LeakyReLU serves as the activation function for every hidden and output layer. The negative slope of the LeakyReLU function is set to 0.1. As the desired estimated IRM values need to be constrained within the range of 0 to 1, a Sigmoid function is appended to the final layer of the network to regulate the output data range. The model utilizes MSE as its loss function. It employs the Adaptive Moment Estimation algorithm for network optimization and integrates Dropout to enhance the model’s noise generalization ability. The Dropout rate for the input layer and each hidden layer is set to 0.1, while the output layer’s Dropout rate is 0. The network utilizes an adaptive learning rate, initially set at 0.01, gradually decreasing to 0.001 as the number of training iterations increases. Additionally, Batch Normalization (BN) is applied to all layers. The network underwent 100 training iterations and underwent a series of steps continuously fine-tuning the network parameters, ultimately resulting in the DNN model used for speech enhancement.
Additionally, to leverage the inter-frame correlation among input features and enhance the model’s noise suppression capability, frame expansion operations are employed in the input features. Considering the i-th frame as the central frame, the three preceding and succeeding frames of the noisy speech’s LPS are included as model inputs. Therefore, the input sequence Y satisfies the following equation:
Y = Y ( i 3 ) , Y ( i 2 ) , Y ( i 1 ) , Y ( i ) , Y ( i + 1 ) , Y ( i + 2 ) , Y ( i + 3 )
where Y ( i ) represents the LPS of the i-th frame of the noisy speech. Y ( i ) stands for the IRM estimated by the network.

3. Experiments and Results Analysis

This section first introduces the experimental setup, then gives a detailed explanation of the air traffic control speech dataset, and finally shows the experimental results of the comparative experiments and each group of experiments.

3.1. Experimental Setup

The experiment is conducted using the PyTorch 1.8.0 framework. Table 2 provides the specific details of the experimental setup.

3.2. Dataset

Both the training and test speech data come from the air traffic control speech database provided by the Civil Aviation Administration of China, totaling 50,000 pieces of speech data. The characteristics of air traffic control speech are a fast speaking speed and bilingual broadcasting in Chinese and English. In addition, due to the limitation of voice calls, it is impossible to collect completely clean speech data. Therefore, we assessed the NISQA score for all the speech data, and regarded the speech signals with a score greater than 3.0 as “clean speech data”, and obtained 20,000 speech data that could be used for the experiments. Each piece of speech data is about 3 s long and the total length is about 17 h. Overall, 70% were randomly selected as training data, and the remaining 30% were used as test data; some pure noise segments with a score less than 1.5 were selected from the speech data and they were extended to the same length as the clean speech signal. The noise includes more than 130 types of noise, such as aircraft cockpit noise, high-frequency communication noise, and air traffic control (ATC) center noise. After the dataset was collected, all the acquired data were uniformly processed into mono, single-channel waveform files with a sampling rate of 16 kHz. Subsequently, noise was added to the clean speech at SNRs of −5 dB, 0 dB, 5 dB, and 10 dB to generate noisy training and test speech.

3.3. Constrast Experiment

To verify the performance of the method proposed in this paper, four sets of experiments were set up to provide results for discussion, as follows:
(a)
R-UnAdj: This method adopts the traditional speech enhancement method based on DNN-IRM, uses ReLU as the activation function, and does not adjust the IRM weights;
(b)
R-Adj: This method is based on R-UnAdj, uses ReLU as the activation function, but adjusts the IRM weights;
(c)
LR-UnAdj: This method is based on R-UnAdj, uses LeakyReLU as the activation function, and does not adjust the IRM weights;
(d)
LR-Adj: This method is based on R-UnAdj, uses LeakyReLU as the activation function, and adjusts the IRM weights. LR-Adj is considered as the proposed method in this paper.
In addition, we trained the networks using ReLU and LeakyReLU for 100 epochs each, and recorded the loss for each epoch of both networks, as shown in Figure 6. We observed that the network trained with LeakyReLU was more stable and had lower losses.

3.4. Results Analysis

To evaluate the actual performance of the air traffic control speech enhancement method based on the improved DNN-IRM proposed in this article, the experimental data results were compared and analyzed from two aspects: reference evaluation and non-reference evaluation. We used the SSIM, PESQ, STOI, and SI-SDR as the parametric evaluation methods. The SSIM was used to judge the similarity between the original speech spectrogram and the enhanced speech spectrogram; for the non-parametric evaluation method, we chose DNSMOS and NISQA, and chose non-parametric evaluation. The purpose of the method was to test the performance of the proposed method in a natural air traffic control speech environment. Finally, we also discuss the impact on the experimental results when the parameter ( δ ) and the parameter ( γ ) take different values when adjusting the IRM weights. In the process of conducting the comparative experiments, when analyzing one parameter, we fixed the other parameter.

3.4.1. Spectrogram Comparison and SSIM

The spectrogram plays a crucial role in speech analysis, providing a visual understanding of speech data. Figure 7 shows the spectrogram of the clean speech used in the experiment, while Figure 8, Figure 9 and Figure 10 display the spectrograms of the same speech data under different SNR conditions, affected by aircraft cockpit noise, ATC center noise, and high-frequency communication (HFcommunication) noise, respectively. Additionally, the enhanced spectrograms after applying the four aforementioned methods are presented. Each column in the figures corresponds to a set of instances. Taking Figure 8 as an example, Figure 8a to Figure 8e, respectively, show the spectrogram with −5 dB aircraft cockpit noise, the spectrogram enhanced by R-UnAdj, the spectrogram enhanced by R-Adj, the spectrogram enhanced by LR-UnAdj, and the spectrogram enhanced by LR-Adj. From Figure 8, it can be observed that aircraft cockpit noise is mainly concentrated in specific frequency bands. At −5 dB noise levels, LR-Adj effectively eliminates high-frequency noise, but some noise remains in the low-frequency range, especially in pure noisy speech segments. ATC center noise gradually weakens from low to high frequencies, and LR-Adj and LR-UnAdj show the best enhancement at 10 dB, while preserving more speech details. Aircraft cockpit noise is concentrated in specific frequency bands, and all methods exhibit the worst enhancement at −5 dB noise levels. LR-Adj significantly reduces noise in pure noisy speech segments at 0 dB, 5 dB, and 10 dB. In summary, through the observation of the three figures, it can be seen that the LR-Adj method generally outperforms the other three methods, especially in low SNR conditions, where it effectively eliminates low-frequency noise.
The SSIM measures the similarity between the clean speech spectrograms and enhanced speech spectrograms. It considers three aspects of information: brightness, contrast, and structure. Figure 11 shows the SSIM score of the speech spectrogram after four enhancement methods at different SNR levels.
The SSIM score is obtained by comparing the enhanced speech spectrum with the clean speech spectrum. The ordinate of each chromatogram in the figure represents the SSIM score of the four methods, and the abscissa represents the added noise level. It can be observed that the speech spectrum enhanced by the LR-Adj achieved the highest SSIM scores across all noise levels. From Figure 11b, it can be observed that the LR-Adj has a significant effect on processing low SNR ATC center noise. From Figure 11a,c, it can be seen that although the LR-Adj does not have a significant effect on processing low SNR aircraft cockpit noise and HFcommunication noise, the ability of the proposed method to process these two noises is improved at high SNR.

3.4.2. PESQ and STOI

The main purpose of the PESQ is to simulate listeners’ perception of speech quality and provide a numerical score to represent the quality of the speech. The PESQ generates a quality score between −0.5 and 4.5, where a higher score indicates better speech quality and a lower score indicates poorer quality. We selected airplane takeoff and landing noise, aircraft cabin noise, and electric current noise to test the performance of each method. The PESQ scoring results of each method at different noise types and SNR levels are shown in Table 3.
According to the data in Table 3, the enhancement effects of each method vary under different types of noise and SNR levels. We used the score for the enhanced speech minus the score of the noisy speech, and then divided it by the score of the noisy speech to obtain the improvement offered by the method. For each noise type, the improvement effect under all the SNR values was averaged to get the average improvement effect of the method under the noise type. Under aircraft cabin noise, the average enhancement effects for R-UnAdj, R-Adj, LR-UnAdj, and LR-Adj were 43.08%, 53.26%, 63.11%, and 78.35%, respectively. Under electric current noise, the average enhancement effects for each method were 40.04%, 53.50%, 70.08%, and 79.48%, respectively. Under airplane takeoff and landing noise, the average enhancement effects for each method were 42.92%, 53.38%, 65.17%, and 78.60%, respectively. Overall, the LR-Adj method generally exhibited better performance, followed by LR-UnAdj, then R-Adj, and finally the R-UnAdj method. These results demonstrate that the improved DNN-IRM method significantly improves the PESQ scores across different noise types compared to the original methods, highlighting its superiority in enhancing speech quality. Furthermore, we observed that using LeakyReLU rather than ReLU could significantly improve the performance of the model with adjusted IRM weights because the loss in the network trained by LeakyReLU is smaller than that in the network trained by ReLU. Moreover, under high SNR, the mask value estimation is relatively accurate, and we can improve the speech quality by reducing the weight of the noise mask.
STOI is an objective assessment method that measures speech clarity and intelligibility. Scores range from 0 to 1, where 1 represents complete intelligibility and 0 represents complete unintelligibility. Higher STOI scores indicate clearer and more understandable speech, while lower scores indicate poorer intelligibility. The evaluation results for STOI for each method at different noise types and various SNR levels are shown in Table 4.
According to the data in Table 4, we can see that LR-Adj and LR-UnAdj have similar performance in terms of STOI, among which LR-Adj shows the seven best indicators. The advantages of LR-Adj are mainly reflected in high SNR levels. LR-Adj is generally higher than the three other methods for STOI scores at 5 dB and 10 dB. In contrast, LR-UnAdj performs well on six indicators and shows better enhancement effects at −5 dB and 0 dB. The reasons for the excellent effect of the LR-Adj method are the same as before. On the one hand, the network loss trained by LeakyReLU is low, and, on the other hand, reducing the weight of the noise mask can improve speech quality.

3.4.3. Comparisons with Other Methods and Testing Real Speech

To further verify the performance of this method, we also tested the effects of other masks on this method.
The I B M at each time and frequency point is marked as belonging to target speech or noisy speech. If a time and frequency point contains mainly speech information, then the point is marked as 1 in the ideal binary mask; otherwise, it is marked as 0, as follows:
I B M ( t , f ) = 1 ,         S ( t , f ) > N ( t , f ) 0 ,         S ( t , f ) N ( t , f )
where S ( t , f ) represents the target speech and N ( t , f ) represents the noisy speech.
The ideal amplitude mask ( I B M ) is similar to the I R M , but it considers the impact of the target speech and noisy speech on the results, as follows:
I A M ( t , f ) = S ( t , f ) Y ( t , f ) 0.5
where S ( t , f ) represents the target speech and Y ( t , f ) represents the mixed speech.
We used the same data to train the IBM and IAM, and then randomly mixed the noise of the test data between 0 and 5 dB. The generated noise data was denoised through the three methods to obtain the enhanced speech. Finally, we used three evaluation indicators (PESQ, STOI, SI-SDR) to measure the performance of each method, and the results are shown in Table 5. Under the three different noise types, our method excelled in all three evaluation metrics (PESQ, STOI, SI-SDR). The improvement value is calculated as the difference between the noisy speech score and the enhanced speech score. For the PESQ, our method achieved an average improvement of 1.04, significantly better than the DNN-IBM’s 0.31 and the DNN-IAM’s 0.94. In STOI, our method showed an average improvement of 0.143, also surpassing the DNN-IBM and DNN-IAM, both at 0.13. For the SI-SDR, our method achieved an average improvement of 11.09, slightly higher than the DNN-IAM’s 11.06 and the DNN-IBM’s 10.90. This demonstrates that our method consistently provided better speech quality and intelligibility while effectively suppressing noise across various noise environments, showcasing its broad superiority.
In addition, we randomly selected 50 pieces of abandoned original control speech data. These data had not been processed by noise type, and the noise in the speech came from real ATC center noise. These data were used to test the performance of the proposed method. The DNSMOS and NISQA were used as evaluation indicators. The results are shown in Table 6. It can be seen that compared with the other two methods, the method proposed in this article shows a good performance using both the DNSMOS and NISQA.

3.4.4. Impact of Parameter Values

This section investigates the impact of the parameter values, δ and γ , on the experimental outcomes during the adjustment of the IRM weights. The experiment was still conducted on data from the air traffic control speech database, and the average PESQ obtained at three noise conditions was used as the evaluation criterion. By employing a method with fixed parameters, the study delved deeper into analyzing the individual parameter’s influence on the experimental outcomes.
Table 7 shows the comparison of the PESQ values within the LR-Adj method for different γ values when δ = 0.5 . Among these, the γ values of 0.4 and 0.5 achieved the optimal average PESQ score, both reaching 2.15. γ = 0.6 exhibited the best PESQ performance at 0 dB. The optimal scores were achieved at −5 dB when the values were set to 0.3 and 0.4. Additionally, γ = 0.4 was also effective at 10 dB. The poorest average PESQ score was seen at γ = 0 , scoring only 1.47. In addition, when γ = 1 , it produced almost the same results as LR-UnAdj.
Table 8 presents the comparison of PESQ values within the LR-Adj for different δ values when γ = 0.5 . The optimal average PESQ scores were observed at δ values of 0.8 and 0.9, both reaching 2.17. Conversely, the least favorable average PESQ performance occurred at δ = 1 , scoring only 1.95. Moreover, for δ values of 0.5, 0.6, and 0.8, they were suitable for handling speech at a −5 dB noise environment, with scores reaching 1.54.
Figure 12 illustrates the average PESQ scores from Table 5 and Table 6. The red line represents the average PESQ scores for different γ values when δ = 0.5 , while the green line represents the average PESQ scores for different δ values when γ = 0.5 .
This section has mainly explored the impact of different values of the parameters on the experimental results when adjusting the IRM weight. From Figure 12, it can be observed that at γ = 0.5 and δ = 0.8 , the speech enhancement performs optimally under various noise conditions, achieving the highest average scores. When the parameter value is close to 0 or close to 1, the PESQ score is very low, especially when γ = 0 and δ = 0.5 . At this time, the adjusted mask is similar to the IBM, and the noise signal is assigned to 0, but unlike the IBM, the target signal is not assigned to 1.

4. Discussion and Conclusions

Aiming at the quality and clarity issues of air traffic control speech in complex noisy environments, an air traffic control speech enhancement method based on an improved DNN-IRM is proposed by using noise and speech from the air traffic control speech database. The interference of noise in the target speech is reduced by refining the network architecture, using LeakyReLU as the activation function, and adjusting the network output IRM weight.
The experimental results show that the proposed method has made some progress in the PESQ, STOI, SI-SNR, and SSIM indicators, proving that adjusting the weight of the network output IRM is feasible for improving speech quality, because this step reduces the weight of the noise mask. It also proves that LeakyReLU is more suitable for speech enhancement tasks than ReLU, because the loss of the network trained with LeakyReLU is smaller than that of the network trained with ReLU. In addition, when enhancing actual air traffic control speech, the performance of the proposed method is also better than that of the IBM-based method and the IAM-based method.
The amplitude spectrum and phase spectrum can be obtained after Fourier transform of the speech signal, but the mask used in this paper only considers the influence of the amplitude spectrum, and does not consider the influence of the phase spectrum on speech enhancement. Future experiments will consider more advanced masks, such as the complex ratio mask [25], to ensure that the original information in the speech is not lost.

Author Contributions

Conceptualization, Y.W. and P.L.; methodology, P.L.; software, P.L.; validation, Y.W., P.L., and S.Z.; formal analysis, Y.W. and S.Z; investigation, P.L.; writing—original draft preparation, Y.W. and P.L.; writing—review and editing, Y.W., P.L., and S.Z.; project administration, Y.W.; funding acquisition, Y.W. All authors have read and agreed to the published version of the manuscript.

Funding

This research was funded in part by the National Key R&D Program of China (program no. 2021YFF0603904) and in part by the Fundamental Research Funds for the Central Universities (program no. ZJ2022-004).

Data Availability Statement

The data presented in this study are available on request from the corresponding author. The data are not publicly available for privacy reasons.

Conflicts of Interest

The authors declare that there are no conflicts of interest regarding the publication of this paper.

Abbreviations

The following abbreviations are used in this manuscript:
DNNDeep neural network
IRMIdeal ratio mask
IBMIdeal binary mask
IAMIdeal amplitude mask
PESQPerceptual evaluation of speech quality
STOIShort-time objective intelligibility
SSIMStructural similarity index measure
T-FTime–Frequency
SNRSignal-to-noise ratio
BNBatch Normalization
LPSLog power spectrum
STFTShort-time Fourier transform
ISTFTInverse short-time Fourier transform
MSEMean Squared Error
SI-SNRScale-invariant signal-to-noise ratio
NISQANon-intrusive speech quality assessment
DNSMOSDeep noise suppression mean opinion score
ATCAir traffic control

References

  1. Peng, Y.; Wen, X.; Kong, J.; Meng, Y.; Wu, M. A Study on the Normalized Delineation of Airspace Sectors Based on Flight Conflict Dynamics. Appl. Sci. 2023, 13, 12070. [Google Scholar] [CrossRef]
  2. Wu, Y.; Li, G.; Fu, Q. Non-Intrusive Air Traffic Control Speech Quality Assessment with ResNet-BiLSTM. Appl. Sci. 2023, 13, 10834. [Google Scholar] [CrossRef]
  3. Yi, L.; Min, R.; Kunjie, C.; Dan, L.; Ziqiang, Z.; Fan, L.; Bo, Y. Identifying and managing risks of AI-driven operations: A case study of automatic speech recognition for improving air traffic safety. Chin. J. Aeronaut. 2023, 36, 366–386. [Google Scholar]
  4. Boll, S. Suppression of Acoustic Noise in Speech Using Spectral Subtraction. IEEE Trans. Acoust. Speech Signal Process. 1979, 27, 113–120. [Google Scholar] [CrossRef]
  5. Ephraim, Y.; Van Trees, H.L. A Signal Subspace Approach for Speech Enhancement. IEEE Trans. Speech Audio Process. 1995, 3, 251–266. [Google Scholar] [CrossRef]
  6. Chen, J.; Benesty, J.; Huang, Y.; Doclo, S. New Insights into the Noise Reduction Wiener Filter. IEEE Trans. Audio Speech Lang. Process. 2006, 14, 1218–1234. [Google Scholar] [CrossRef]
  7. Martin, R. Speech enhancement based on minimum mean-square error estimation and supergaussian priors. IEEE Trans. Speech Audio Process. 2005, 13, 845–856. [Google Scholar] [CrossRef]
  8. Ephraim, Y.; Malah, D.; Juang, B.H. On the application of hidden Markov models for enhancing noisy speech. IEEE Trans. Acoust. Speech Signal Process. 1989, 37, 1846–1856. [Google Scholar] [CrossRef]
  9. Kundu, A.; Chatterjee, S.; Murthy, A.S.; Sreenivas, T.V. GMM based Bayesian approach to speech enhancement in signal/transform domain. In Proceedings of the 2008 IEEE International Conference on Acoustics, Speech and Signal Processing, Las Vegas, NV, USA, 31 March–4 April 2008. [Google Scholar]
  10. Xu, Y.; Du, J.; Dai, L.R.; Lee, C.H. An experimental study on speech enhancement based on deep neural networks. IEEE Signal Process. Lett. 2013, 21, 65–68. [Google Scholar] [CrossRef]
  11. Xu, Y.; Du, J.; Dai, L.R.; Lee, C.H. A regression approach to speech enhancement based on deep neural networks. IEEE-ACM Trans. Audio Speech Lang. 2014, 23, 7–19. [Google Scholar]
  12. Wang, Y.; Wang, D. Towards scaling up classification-based speech separation. IEEE Trans. Audio Speech Lang. Process. 2013, 21, 1381–1390. [Google Scholar] [CrossRef]
  13. Wang, Y.; Narayanan, A.; Wang, D. On training targets for supervised speech separation. IEEE-ACM Trans. Audio Speech Lang. 2014, 22, 1849–1858. [Google Scholar]
  14. Zhou, L.; Jiang, W.; Xu, J.; Wen, F.; Liu, P. Masks fusion with multi-target learning for speech enhancement. arXiv 2021, arXiv:2109.11164. [Google Scholar]
  15. Liu, C.; Wang, L.; Dang, J. Deep Learning-Based Amplitude Fusion for Speech Dereverberation. Discrete Dyn. Nat. Soc. 2020, 2020, 4618317. [Google Scholar] [CrossRef]
  16. Rix, A.W.; Beerends, J.G.; Hollier, M.P.; Hekstra, A.P. Perceptual evaluation of speech quality (PESQ)—A new method for speech quality assessment of telephone networks and codecs. In Proceedings of the 2001 IEEE International Conference on Acoustics, Speech, and Signal Processing, Salt Lake City, UT, USA, 7–11 May 2001. [Google Scholar]
  17. Taal, C.H.; Hendriks, R.C.; Heusdens, R.; Jensen, J. A short-time objective intelligibility measure for time-frequency weighted noisy speech. In Proceedings of the 2010 IEEE International Conference on Acoustics, Speech and Signal Processing, Dallas, TX, USA, 14–19 March 2010. [Google Scholar]
  18. Wang, Z.; Bovik, A.C.; Sheikh, H.R.; Simoncelli, E.P. Image quality assessment: From error visibility to structural similarity. IEEE Trans. Image Process. 2004, 13, 600–612. [Google Scholar] [CrossRef] [PubMed]
  19. Roux, J.L.; Wisdom, S.; Erdogan, H.; Hershey, J.R. SDR—Half-baked or Well Done? In Proceedings of the ICASSP 2019, 2019 IEEE International Conference on Acoustics, Speech and Signal Processing (ICASSP), Brighton, UK, 12–17 May 2019. [Google Scholar]
  20. Reddy, C.K.A.; Gopal, V.; Cutler, R. DNSMOS: A Non-Intrusive Perceptual Objective Speech Quality Metric to Evaluate Noise Suppressors. In Proceedings of the ICASSP 2021, 2021 IEEE International Conference on Acoustics, Speech and Signal Processing (ICASSP), Toronto, ON, Canada, 6–11 June 2021. [Google Scholar]
  21. Mittag, G.; Naderi, B.; Chehadi, A.; Möller, S. NISQA: A deep CNN-self-attention model for multidimensional speech quality prediction with crowdsourced datasets. arXiv 2021, arXiv:2104.09494. [Google Scholar]
  22. Glorot, X.; Bordes, A.; Bengio, Y. Deep Sparse Rectifier Neural Networks. In Proceedings of the Fourteenth International Conference on Artificial Intelligence and Statistics, Fort Lauderdale, FL, USA, 11–13 April 2011. [Google Scholar]
  23. Chen, Y.; Dai, X.; Liu, M.; Chen, D.; Yuan, L.; Liu, Z. Dynamic ReLU. In Proceedings of the European Conference on Computer Vision, Cham, Switzerland, 23–28 August 2020. [Google Scholar]
  24. Yin, X.; Goudriaan, J.; Lantinga, E.A.; Vos, J.; Spiertz, H.J. A flexible sigmoid function of determinate growth. Ann. Bot. 2003, 91, 361–371. [Google Scholar] [CrossRef] [PubMed]
  25. Williamson, D.S.; Wang, Y.; Wang, D. Complex Ratio Masking for Joint Enhancement of Magnitude and Phase. In Proceedings of the 2016 IEEE International Conference on Acoustics, Speech and Signal Processing (ICASSP), Shanghai, China, 20–25 March 2016. [Google Scholar]
Figure 1. Schematic diagram of adjusting IRM weights.
Figure 1. Schematic diagram of adjusting IRM weights.
Aerospace 11 00581 g001
Figure 2. Proposed method diagram.
Figure 2. Proposed method diagram.
Aerospace 11 00581 g002
Figure 3. Schematic diagram of feature extraction principle and IRM calculation.
Figure 3. Schematic diagram of feature extraction principle and IRM calculation.
Aerospace 11 00581 g003
Figure 4. Speech reconstruction process diagram.
Figure 4. Speech reconstruction process diagram.
Aerospace 11 00581 g004
Figure 5. The network architecture for speech enhancement.
Figure 5. The network architecture for speech enhancement.
Aerospace 11 00581 g005
Figure 6. Loss of two networks after 100 epochs of training.
Figure 6. Loss of two networks after 100 epochs of training.
Aerospace 11 00581 g006
Figure 7. Spectrogram of clean speech.
Figure 7. Spectrogram of clean speech.
Aerospace 11 00581 g007
Figure 8. Comparison of aircraft cockpit noise spectrum and speech spectrum enhanced by 4 methods at different SNR levels.
Figure 8. Comparison of aircraft cockpit noise spectrum and speech spectrum enhanced by 4 methods at different SNR levels.
Aerospace 11 00581 g008
Figure 9. Comparison of ATC center noise spectrum and speech spectrum enhanced by 4 methods at different SNR levels.
Figure 9. Comparison of ATC center noise spectrum and speech spectrum enhanced by 4 methods at different SNR levels.
Aerospace 11 00581 g009
Figure 10. Comparison of HFcommunication noise spectrum and speech spectrum enhanced by 4 methods at different SNR levels.
Figure 10. Comparison of HFcommunication noise spectrum and speech spectrum enhanced by 4 methods at different SNR levels.
Aerospace 11 00581 g010
Figure 11. SSIM score line chart of the speech spectrogram enhanced by various methods at different noise levels. (a) indicates that it is affected by aircraft cockpit noise, (b) indicates that it is affected by ATC center noise, and (c) indicates that it is affected by HFcommunication noise.
Figure 11. SSIM score line chart of the speech spectrogram enhanced by various methods at different noise levels. (a) indicates that it is affected by aircraft cockpit noise, (b) indicates that it is affected by ATC center noise, and (c) indicates that it is affected by HFcommunication noise.
Aerospace 11 00581 g011
Figure 12. The effects of γ and δ on LR-Adj, respectively.
Figure 12. The effects of γ and δ on LR-Adj, respectively.
Aerospace 11 00581 g012
Table 1. Network parameters for each layer.
Table 1. Network parameters for each layer.
LayerUnitsActivationDropoutBN
Input1799LeakyReLU0.1Yes
Hidden12048LeakyReLU0.1Yes
Hidden22048LeakyReLU0.1Yes
Hidden32048LeakyReLU0.1Yes
Output257LeakyReLU, Sigmoid0Yes
Table 2. Experimental setup.
Table 2. Experimental setup.
Experimental SetupSpecific Configuration
CPU13th Gen Intel(R) Core(TM) i5-13490F
(Intel, Santa Clara, CA, USA)
GPUNVIDIA RTX4060Ti
(Nvidia, Santa Clara, CA, USA)
OSWindows 11 64-bit (Redmond, WA, USA)
Table 3. PESQ scores of each method for different noise types and at different SNR levels.
Table 3. PESQ scores of each method for different noise types and at different SNR levels.
Noise TypesSNRNoiseR-UnAdjR-AdjLR-UnAdjLR-Adj
Airplane10 dB1.362.272.352.482.72
5 dB1.141.771.982.072.29
0 dB1.061.441.541.711.82
−5 dB1.031.181.271.311.44
Current10 dB1.282.182.372.572.77
5 dB1.151.721.952.212.27
0 dB1.081.361.491.721.80
−5 dB1.041.211.281.361.44
Cabin10 dB1.472.342.592.682.81
5 dB1.271.982.202.272.39
0 dB1.071.551.741.861.95
−5 dB1.051.271.421.571.68
The black bold number indicates the best result. Airplane represents aircraft takeoff and landing noise, Current represents electronic current noise, and Cabin represents aircraft cabin noise.
Table 4. STOI scores for each method at different noise types and different SNR levels.
Table 4. STOI scores for each method at different noise types and different SNR levels.
Noise TypeSNRNoiseR-UnAdjR-AdjLR-UnAdjLR-Adj
Airplane10 dB0.850.910.910.920.93
5 dB0.780.850.860.890.89
0 dB0.640.790.780.800.81
−5 dB0.510.680.650.740.72
Current10 dB0.830.910.910.920.93
5 dB0.750.850.860.870.88
0 dB0.650.780.780.810.81
−5 dB0.530.670.680.730.71
Cabin10 dB0.870.900.910.930.94
5 dB0.810.870.880.890.91
0 dB0.710.810.830.860.85
−5 dB0.630.710.750.790.77
The black bold number indicates the best result. Airplane represents aircraft takeoff and landing noise, Current represents electronic current noise, and Cabin represents aircraft cabin noise.
Table 5. Scores of different mask conditions.
Table 5. Scores of different mask conditions.
Noise TypeMetricNoiseDNN-IBMDNN-IAMOur Method
CockpitPESQ1.101.362.072.10
STOI0.710.850.840.86
SI-SDR2.5412.0012.9812.84
HFcommunicationPESQ1.131.461.982.24
STOI0.700.830.840.85
SI-SDR2.5312.3312.6112.76
ATCcenterPESQ1.171.512.172.17
STOI0.760.870.880.89
SI-SDR2.5414.9815.1915.27
The black bold number indicates the best result. Cockpit stands for aircraft cockpit noise, ATCcenter stands for ATC center noise, and HFcommunication stands for high-frequency communication noise.
Table 6. Scores of each method after evaluation by DNSMOS and NISQA.
Table 6. Scores of each method after evaluation by DNSMOS and NISQA.
MetricNoiseDNN-IBMDNN-IAMOur Method
DNSMOS2.6642.8222.8942.982
NISQA2.7132.8812.9072.987
The black bold number indicates the best result.
Table 7. PESQ comparison of different γ for LR-Adj when δ = 0.5 .
Table 7. PESQ comparison of different γ for LR-Adj when δ = 0.5 .
γ −5 dB0 dB5 dB10 dBAVERAGE
11.411.762.172.581.96
0.91.431.772.192.672.00
0.81.471.812.212.662.04
0.71.491.832.242.772.08
0.61.511.912.292.762.12
0.51.541.892.352.812.15
0.41.551.862.352.832.15
0.31.551.862.322.732.12
0.21.441.832.232.662.04
0.11.341.611.982.381.83
01.141.291.561.891.47
The black bold number indicates the best result.
Table 8. PESQ comparison of different δ for LR-Adj when γ = 0.5 .
Table 8. PESQ comparison of different δ for LR-Adj when γ = 0.5 .
δ −5 dB0 dB5 dB10 dBAVERAGE
11.411.722.112.561.95
0.91.521.922.362.862.17
0.81.541.912.392.852.17
0.71.531.892.362.822.15
0.61.541.92.362.822.16
0.51.541.872.352.802.14
0.41.531.832.322.782.12
0.31.471.802.232.702.05
0.21.441.772.222.592.00
0.11.381.742.082.561.94
01.411.712.202.521.96
The black bold number indicates the best result.
Disclaimer/Publisher’s Note: The statements, opinions and data contained in all publications are solely those of the individual author(s) and contributor(s) and not of MDPI and/or the editor(s). MDPI and/or the editor(s) disclaim responsibility for any injury to people or property resulting from any ideas, methods, instructions or products referred to in the content.

Share and Cite

MDPI and ACS Style

Wu, Y.; Li, P.; Zhang, S. Air Traffic Control Speech Enhancement Method Based on Improved DNN-IRM. Aerospace 2024, 11, 581. https://doi.org/10.3390/aerospace11070581

AMA Style

Wu Y, Li P, Zhang S. Air Traffic Control Speech Enhancement Method Based on Improved DNN-IRM. Aerospace. 2024; 11(7):581. https://doi.org/10.3390/aerospace11070581

Chicago/Turabian Style

Wu, Yuezhou, Pengfei Li, and Siling Zhang. 2024. "Air Traffic Control Speech Enhancement Method Based on Improved DNN-IRM" Aerospace 11, no. 7: 581. https://doi.org/10.3390/aerospace11070581

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