Keras removes Graph in the new version.
For new keras, they use the functional API instead.
Hence, the code has an error:
from keras.models import Sequential, Graph ImportError: cannot import name 'Graph'
Anyone knows how to modify the codes in 'rnnLSTM' ?
from keras.models import Model ? and
How to modify the codes from line 268 - line 303?
Thanks!
Keras removes Graph in the new version.
For new keras, they use the functional API instead.
Hence, the code has an error:
from keras.models import Sequential, Graph ImportError: cannot import name 'Graph'Anyone knows how to modify the codes in 'rnnLSTM' ?
from keras.models import Model? andHow to modify the codes from line 268 - line 303?
Thanks!