0

I have pre build machine learning model (saved as pickle file) to predict classification.

My question is when I use new dataset to predict using Pickle file do I need do all preprocessing steps (like transformation and encoding) to the new testing dataset or can I use raw data set.

Sandumi
  • 13
  • 2

1 Answers1

0

Yes, You will have to perform all the preprocessing on the test dataset as well. Such as scaling, one hot encoding etc.

  • Your answer could be improved with additional supporting information. Please [edit] to add further details, such as citations or documentation, so that others can confirm that your answer is correct. You can find more information on how to write good answers [in the help center](/help/how-to-answer). – Community Jun 24 '22 at 03:30