>
Being in accordance with the Project ML's goal, this smart adaptive application demonstrates the automation of predictive data analysis using the two-class decision forest algorithm. This app allows you to determine your survival on the Titanic ship by comparing your attributes with the ones of the real passengers of the Titanic ship.
Decision tree learning is one of the predictive modelling approaches used in statistics, data mining and machine learning.
The decision forest algorithm works by building multiple decision trees and then voting on the most popular output class. Voting is a form of aggregation, in which each tree in a classification decision forest outputs a non-normalized frequency histogram of labels. The aggregation process sums these histograms and normalizes the result to get the “probabilities” for each label. The trees that have high prediction confidence will have a greater weight in the final decision of the ensemble. Read More