The model will be built with Weka: a machine learning software that contains various algorithm. A decision tree (J48) and a Multilayer Perceptron are two different kinds of algorithms that will be used. The decision tree is a tree-like model that works best on nominal attributes, so it may be necessary to convert the Income into bins, rather than having it as a continuous numeric variable. The Multilayer Perceptron classifies instances using a backpropagation. Decision tree and Multilayer Perceptron...
The model will be built with Weka: a machine learning software that contains various algorithm. A decision tree (J48) and a Multilayer Perceptron are two different kinds of algorithms that will be used.
The decision tree is a tree-like model that works best on nominal attributes, so it may be necessary to convert the Income into bins, rather than having it as a continuous numeric variable.
The Multilayer Perceptron classifies instances using a backpropagation.
Decision tree and Multilayer Perceptron are machine learning techniques, and the name is usually referred to the way the model is represented.
Evaluation
In the evaluation phase, the accuracy and generality of the model will be discovered so that it can be compared with the one expected by the customer. If the bank is not satisfied, it is possible to go back to the Business Understanding, find the reasons why the model is deficient, collect more data and try again.
Deployment
Once the model is ready, and it has been evaluated, if the bank is satisfied, it needs to be deployed to make it working in predicting for future customers. In this phase, it is necessary to anticipate any changing in the data to avoid to use this model incorrectly because of the changing input. To do that it could be helpful to build a second model that needs to check if the data have the same pattern of the previous ones, otherwise, we need to build a new model.