Deep learning-based method for weather forecasting: A case study in Itoshima

Yuzhong Cheng,Linh Thi Hoai Nguyen,Akinori Ozaki,Ton Viet Ta
2024-03-22
Abstract:Accurate weather forecasting is of paramount importance for a wide range of practical applications, drawing substantial scientific and societal interest. However, the intricacies of weather systems pose substantial challenges to accurate predictions. This research introduces a multilayer perceptron model tailored for weather forecasting in Itoshima, Kyushu, Japan. Our meticulously designed architecture demonstrates superior performance compared to existing models, surpassing benchmarks such as Long Short-Term Memory and Recurrent Neural Networks.
Machine Learning
What problem does this paper attempt to address?
### Problems the Paper Aims to Solve The main objective of this paper is to improve the accuracy of weather forecasts in the Itoshima area of Fukuoka Prefecture, Japan. Specifically, the researchers aim to achieve this by constructing a Multilayer Perceptron (MLP) model. This model is trained on a large dataset covering seven key weather parameters (temperature, solar radiation, wind speed, wind direction, relative humidity, rainfall, and atmospheric pressure). Compared to existing Long Short-Term Memory (LSTM) and Recurrent Neural Network (RNN) models, the MLP model demonstrates significant advantages in predictive performance. ### Research Background and Method Overview 1. **Dataset**: - The dataset includes weather data from October 15, 2021, to December 1, 2021, and from April 1, 2022, to November 1, 2022, with a recording interval of 10 minutes, totaling 37,585 data points. - Data collection devices include temperature sensors, humidity sensors, wind speed and direction sensors, solar radiation sensors, rainfall sensors, and atmospheric pressure sensors. 2. **Model Architecture**: - A three-layer MLP model is employed, consisting of an input layer, a hidden layer, and an output layer. - The hidden layer contains 344 nodes, with the ReLU function as the activation function. - The model is trained using the minibatch stochastic gradient descent algorithm, and the best hyperparameter combination is selected through cross-validation. 3. **Experimental Results**: - The performance on the test set surpasses that of traditional LSTM and RNN models. - Specific metrics are as follows: - Mean Squared Error (MSE): 0.007423 - Mean Absolute Error (MAE): 0.033160 - Root Mean Squared Error (RMSE): 0.086158 - Pearson Correlation Coefficient (ρ): The correlation between predicted and actual values for various weather parameters is high, such as 0.992 for temperature and 0.985 for humidity. In summary, this paper aims to enhance the accuracy of weather forecasts in a specific region through deep learning techniques and demonstrates the effectiveness and superiority of the proposed method through experiments.