|
Algorithm 1: Proposed model for Dental Caries Prediction. |
Input: Training dataset (,), (, ), …, (,); Number of features to be selected, and threshold of feature importance. Output: highest performing classification approach C.
Begin algorithm:
in , : Compute the weight importance of features.
relevance = (, y) redundancy = initialize to 0 in , += (fi, fj) end for
relevance
;
-
3.
end for
-
4.
select a subset of the most important features from the total set S.
-
5.
in , : rank features by their predictive power and select the most important one.
-
6.
Normalize the feature importances so that they sum to 1.
-
7.
Select a final subset of features based on feature importances obtained.
-
8.
= (, )
-
9.
PERFORM the Caries Prediction
Hyper-parameter Machine Learning model include: : GBDT, RF, SVM, LR, LSTM for
in : ) ) end for argmax operator returns the classifier that maximizes the evaluation metric. 11. END algorithm
|