Urban Heat Island Prediction Using ANN
Urban Heat Island Prediction Using ANN
ISSN No:-2456-2165
Based on the previous work done by all the This section describes the dataset used for the project,
researchers, this research-based project will provide with data preprocessing phase and a brief of all the classification
ANN algorithm and time series analysis for the prediction of algorithms used.
UHI.
4.1 Data Preprocessing
The dataset is collected from different areas of This phase involved dealing with missing values,
Rajasthan and the dataset consist of four input parameters Dummy variables, standardization, etc. Work done on the
and an output or dependent parameter. Dataset we choose is above-mentioned dataset:
different from the existing datasets as in the existing ones Checked for any missing values.
we have more parameters on the basis of which the Dummy variables were created to deal with categorical
calculation was performed whereas we took the 4 major values.
parameters for our calculations. The input parameters are the StandardScaler object was applied on the dataset.
maximum temperature, minimum temperature, wind
velocity, relative humidity and the dependent that is the 4.2 Build an ANN Model
output parameter is the solar radiations. The dataset totally In the project, the ANN model comprises of input
comprises of 6 different areas having all the input layer, 3 hidden layer, and 1 output layer. The total quantity
parameters in each of the workstation. The data consist of of nodes in the hidden layers was set to (40,40,30)
12929 instances. The collected data is a day wise collection respectively and epoch was set to 30. The activation
which starts from 01-01-1979 to 31-07-2014. function for the hidden layer was set as a rectifier function
(relu) and sigmoid function for the output layer.
Inside the training and testing directory data belonging
to each class is present. Training and testing images are The ANN model was used for data classification using
present in separate directories inside the main directory. The keras. Compiling the model is done by Adam optimizer and
research work used libraries part of Anaconda4 framework. loss is “categorical_crossentropy.
B. Plot of WS4