I have dataframe with columns Year, month, day,hour, minute, second, Daily_KWH. I need to predict Daily KWH using neural netowrk. Please let me know how to go about it
Instead of mlp.fit(X_train,y_train) use this mlp.fit(X_train,y_train.values)
mlp.fit(X_train,y_train)
mlp.fit(X_train,y_train.values)