| 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 |