Logo Lanfrica
  • Home
  • Atlas
  • Insights
  • Docs
  • Sign in

© 2026 Lanfrica. All rights reserved. All copyrights of the resources shown on the Lanfrica website belong to the original copyright holders, unless explicitly stated otherwise.

Aysticky/Revenue-Shortfall-Prediction-Using-Long-Short-Term-Memory-of-Recurrent-Neural-Network

Domain:

environment and energy

Record type:

project
Creator:
Ays
Host:
This project was carried out under machine learning course (COEN807). A Long-Short term memory of recurrent neural network was developed to forecast electricity income shortfalls of Canteen Feeder, Kaduna electricity company Nigeria. # Revenue-Shortfall-Prediction-Using-Long-Short-Term-Memory-of-Recurrent-Neural-Network This project was carried out under machine learning course (COEN807). A Long-Short term memory of recurrent neural network was developed to forecast electricity income shortfalls of Canteen Feeder, Kaduna electricity company Nigeria. Revenue forecasting is a technique that can used by electric utilities or by energy management system (grid operator) to predict the electricity revenue shortfall needed to balance the generation and load demand. The shortfall dataset used for this project was obtained from Kaduna Electricity Company. Methodology Step 1: Partition the training and test data The dataset consists of 744 samples. data was split into train (first 90%) and test (remaining 10%). 670 instances were first trained on the sequence and next 74 instances for testing. Step 2: Standardize the data for zero mean and unit variance. For a better fit and to prevent the training from diverging, the training data was standardized to have zero mean and unit variance. Step 3: Create Xtrain and Ytrain To forecast the values of future time steps of a sequence, the responses to be the training sequences was specified with values shifted by one-time step. That is, at each time step of the input sequence, the LSTM network learned to predict the value of the next time step. Step 4: Set parameters to train the network The LSTM layer was specified to have 200 hidden units, 1 sequence input Layer, and 1 fully connected Layer. The network was trained for 300 epochs with adam solver. Initial learn rate of 0.005 was specified and learn rate were dropped with a multiplying factor of 0.2 after 150 epochs. Step 5: Make the first prediction and update network with the actual values. First, the network state was initialized by predicting on XTrain. To make predictions on a new sequence, the network state was reset using resetState. Resetting the network state prevents previous predictions from …

Visit

github.com

Languages

Gbagyi