time-series-forecasting-rnn-tensorflow icon indicating copy to clipboard operation
time-series-forecasting-rnn-tensorflow copied to clipboard

Time series forecasting

Results 7 time-series-forecasting-rnn-tensorflow issues
Sort by recently updated
recently updated
newest added

To train a model in Tensorflow I checked other sources they use sessions in loop in order to train model. ``` with tf.Session() as sess: init.run() for ep in range(epochs):...

what if I want to predict for next 5 timesteps ?

In train_predict.py there is a mix up with labels. What should be "Actual" is shown as "Predicted" and vice versa: ```python # Plot graph: predicted VS actual plt.subplot(111) plt.plot(predicted_raw, label='Actual')...

what dose that file include?

In the pre- processing before entering network model, why you shuffle the sequence of training data? Since the sequence is important in time series!

Hi, I want to use your model for a time-series that has 6 inputs and just 1 output, can you help me? I think i have to upload the file...