Skip to main content
. 2023 Jun 2;13(11):1954. doi: 10.3390/diagnostics13111954
Algorithm 1: EDL generator
Result: Combination of TL models score generates five EDLs
Input: TL Model predicted score
EDL = [ ];
While1 len(EDL) < 6 do:
While2 i in range (2,8) do:
While3 k in combinations, i: do:
NewEDL = GenerateEDL(TLk,i combinations);
//GenerateEDL function to generate on predicted score of TLs
If ACC of NewEDL >ACC of contituents TLs ACC then
EDL.append(NewEDL);
Else
Print(“Try new combination”)
End          //End of If
End //End of while3
End     //End of while2
End    //End of while1