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()