Тёмный

Electricity consumption forecasting using LSTM RNNs 

The Simulation Guy
Подписаться 280
Просмотров 14 тыс.
50% 1

Long short-term memory (LSTM) recurrent neural networks are often used for forecasting. In this video, household power consumption dataset is used to predict future power consumption. For that, LSTM based deep learning neural network is built.
github.com/thesimulationguy/H...

Опубликовано:

 

26 июн 2019

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 7   
@haneensuradi
@haneensuradi 4 года назад
It would have been good if you showed the predicted vs actual consumption during the four years. It will be even more interesting to predict the consumption for 2011 year without having an actual data to compare with.
@krishnayogi
@krishnayogi 4 года назад
Good stuff buddy keep going
@bkameswari6216
@bkameswari6216 2 года назад
If you are explaining then it's good
@pravuchaudhary3904
@pravuchaudhary3904 3 года назад
where did you get the data?
@hemantashahi6370
@hemantashahi6370 4 года назад
Got some errors : array split does not result in equal division.can you help?
@hamidbasiri8565
@hamidbasiri8565 2 года назад
Did you solve the error?
@CartwheelPig
@CartwheelPig 4 месяца назад
Just replace the split function with this code: def split(data): print(len(data)) half = int(len(data)/2) train = data[0:half-2] test = data[half+1:len(data)-1] print(len(train), len(test)) train=np.array(np.split(train,len(train)/7)) test=np.array(np.split(test,len(test)/7)) return train,test
Далее
181 - Multivariate time series forecasting using LSTM
22:40
🏟️👋 Welcome to your new home, Kylian Mbappé!
00:14
What is LSTM (Long Short Term Memory)?
8:19
Просмотров 183 тыс.
Forecasting electricity demand
13:02
Просмотров 5 тыс.
Long Short-Term Memory (LSTM), Clearly Explained
20:45
Просмотров 512 тыс.
Predicting Energy Demand With Neural Networks
22:19
Просмотров 1,5 тыс.
Recurrent Neural Networks (RNNs), Clearly Explained!!!
16:37