Template Method Example
Learn about the template method with coding examples.
We'll cover the following...
Example
Let’s look at the code of the example we discussed in the previous lesson. We have a MlModel
base class that defines a template method applyAlgo()
. It has three steps:
readData()
writeData()
trainModel()
The first two are common to any machine learning model and are implemented in the base class itself. ...