This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from __future__ import print_function | |
import os | |
import numpy as np | |
from keras.layers import RepeatVector | |
from keras.layers.core import Dropout | |
from keras.layers.recurrent import LSTM | |
from keras.models import Sequential | |
from keras.models import load_model |