Hi all, I am trying to understand the steps from “Save model and scaler to files” onwards and setting up a class for running on new data, but it is not clear to me how it works. Are there any other reference material for how to build a class to work with new data?
In the step that has code for class Model(object)
, should this class take in a Dataframe, do the pre-processing, followed by the prediction(s)/Machine Learning models and then “spit out” the prediction result as a submittable file?
If so, I am not sure where the scaler.pkl and model.pkl come into that workflow, as it looks like they are being initialised/loaded within the init method and the two files are generated before the class.
Also, I assume that the final submission is a csv file, if so, I guess I can set my model/code up in the way that I want?
Thanks