Answer the question
In order to leave comments, you need to log in
What and where should be corrected to make the forecast more or less plausible?
Good afternoon. I read an interesting article
https://habr.com/ru/post/495884/
I decided to use the neural network from this article for my case. In my case, the DataFrame is approximately the same as in an article with 420 thousand data, the date is used as an index. Timeframe - 5 minutes = 300 seconds = 300,000 milliseconds.
Data values range from 6500-10500. I am trying to forecast data for 3 hours i.e. 36 values.
I slightly tweaked the model from the article for my case:
future_target = 36
STEP = 1
dataset = features.values
#data_mean = dataset[:TRAIN_SPLIT].mean(axis=0)
#data_std = dataset[:TRAIN_SPLIT].std(axis=0)
#dataset = (dataset-data_mean)/data_std
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question