Arturus/kaggle-web-traffic

Is there a version which can train the model by CPU?

waldstein1983 opened this issue · 2 comments

Unfortunately, I currently do not have GPU support

If there is no version (which i would expect), maybe an alternative could be of interest for you: https://www.r-bloggers.com/time-series-deep-learning-forecasting-sunspots-with-keras-stateful-lstm-in-r/

Unfortunately no, because this code depends on CUDA RNN libraries for training.
But you can replace tensorflow.contrib.cudnn_rnn.CudnnGRU in a model.py to CPU-friendly variant, such as GRUCell + tf.nn.dynamic_rnn. It should be easy enough.