物流Regression_AUC_Store和检索模型
For logistic regression classifier, is it possible to:
1- Draw AUC for both training and testing data "in the same model" without using cross validation operator "I mean use only split data operator".
2- How to save model and use it to train new dataset.
I would appreciate if the answer can be associated with a figure or video or process for better illustrating.
Tagged:
0
Answers
Please find in attached file , a process which calculates the ROC curves for both training set and test set.
Please note that the process will create 2 figures (one for the training part, one for the test part), so the 2 curves are not on the same figure.
We do not train a "new dataset", we train a model.
So, you mean how to save model and use it toscorea new dataset ?
if so, you can use theStoreoperator to save the model, and theRetrieveoperator to recover your trained model and then you can score a new dataset by using theApply Modeloperator.
Hope this helps,
Regards,
Lionel