From 30ad2932cad5d3cec3828dfce78b9174c1f174cd Mon Sep 17 00:00:00 2001 From: dmitryaleks Date: Wed, 2 Jan 2019 18:57:05 +0900 Subject: [PATCH] (Fixes #5) Show predicted values with predicted label and actual values with the actual label --- train_predict.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/train_predict.py b/train_predict.py index 3bb84c9..0f10481 100644 --- a/train_predict.py +++ b/train_predict.py @@ -40,8 +40,8 @@ def train_predict(): # Plot graph: predicted VS actual plt.subplot(111) - plt.plot(predicted_raw, label='Actual') - plt.plot(y_test_raw, label='Predicted') + plt.plot(predicted_raw, label='Predicted') + plt.plot(y_test_raw, label='Actual') plt.legend() plt.show()