AxeldeRomblay / MLBox

MLBox is a powerful Automated Machine Learning python library.
https://mlbox.readthedocs.io/en/latest/
Other
1.49k stars 274 forks source link

You have no test dataset ! #64

Closed VinayChaudhari1996 closed 5 years ago

VinayChaudhari1996 commented 5 years ago

I already split my dataset into X_train and X_test


why this issue occurs ? please help

image

AxeldeRomblay commented 5 years ago

Hi ! Normally the test set does not contain the target... if you still want to predict on this set you have to remove the target... Otherwise it will concatenate both set and evaluate the model in a cross-validation way.

VinayChaudhari1996 commented 5 years ago

Thanks, man It works :)

image