File-based Prediction Structure
(Redirected from Predictive Model File)
Jump to navigation
Jump to search
A File-based Prediction Structure is a prediction structure that is a file-based data structure.
- Context:
- It can assume a Feature Data Preparation Task.
- …
- Example(s):
- Counter-Example(s):
- See: PMML, PMML File.
References
2014
- http://scikit-learn.org/stable/modules/model_persistence.html#model-persistence
- After training a scikit-learn model, it is desirable to have a way to persist the model for future use without having to retrain. The following section gives you an example of how to persist a model with pickle. We’ll also review a few security and maintainability issues when working with pickle serialization. …
… It is possible to save a model in the scikit by using Python’s built-in persistence model, namely pickle:
- After training a scikit-learn model, it is desirable to have a way to persist the model for future use without having to retrain. The following section gives you an example of how to persist a model with pickle. We’ll also review a few security and maintainability issues when working with pickle serialization. …