You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Why do you split that data twice? You do it first manually in loaddata() then you do it again when you fit the model using validation_split = 0.1 , you could use validation_data= (x_test, y_test) instead. This appears to skew the results and you lose the important data which is the most recent points.
The text was updated successfully, but these errors were encountered:
Why do you split that data twice? You do it first manually in loaddata() then you do it again when you fit the model using validation_split = 0.1 , you could use validation_data= (x_test, y_test) instead. This appears to skew the results and you lose the important data which is the most recent points.
The text was updated successfully, but these errors were encountered: