diff --git a/.idea/workspace.xml b/.idea/workspace.xml index c173e14..e350cdc 100644 --- a/.idea/workspace.xml +++ b/.idea/workspace.xml @@ -23,7 +23,7 @@ - + @@ -40,13 +40,14 @@ - + + @@ -58,7 +59,7 @@ - + @@ -69,8 +70,8 @@ - - + + @@ -103,8 +104,8 @@ - - + + @@ -198,6 +199,8 @@ @@ -240,7 +243,7 @@ - + @@ -281,12 +284,12 @@ - @@ -297,10 +300,10 @@ - + - + @@ -383,16 +386,6 @@ - - - - - - - - - - @@ -417,10 +410,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + - - + + diff --git a/train.py b/train.py index 9d7d35e..a3fdd02 100644 --- a/train.py +++ b/train.py @@ -71,8 +71,8 @@ def fit_lstm(train, batch_size2, nb_epoch, neurons): for i in range(nb_epoch): print("Epoch {}/{}".format(i, nb_epoch)) model.fit(X, y, epochs=1, batch_size=batch_size2, verbose=0, shuffle=False) - #loss, accuracy = model.evaluate(X, y) - #print(loss, accuracy) + loss, accuracy = model.evaluate(X, y) + print(loss, accuracy) model.reset_states() return model