Skip to main content

Table 4 Grid Searching Strategy

From: Learning misclassification costs for imbalanced classification on gene expression data

Grid Searching Strategy

1: procedure GRIDSEARCHING(M, T, P0)

2: P = P0

3: f = WCA(P)

4: if P < M then

5: P = P + T

6: if f > fmax then

7: fmax = f

8: Pmax = P

9: end if

10: end if

11: return Pmax, fmax

12: end procedure