Skip to main content
. Author manuscript; available in PMC: 2014 Jul 6.
Published in final edited form as: Proc IEEE Int Conf Acoust Speech Signal Process. 2013:7562–7566. doi: 10.1109/ICASSP.2013.6639133
Algorithm 1 Greedy Algorithm for Feature Selection
Input: Features and labels for dysarthric and healthy speakers: XD, yD, XC, yC
Output: Top k features that optimize criteria in (7): Ω
Define: f(Ω)=maxθlD(θ|XD(Ω),yD)maxζlC(ζ|XC(Ω),yC)
  Ω = ∅
  F = 1 … M
for j ∈ 1 … k do
J = ∅
for FiF \ Ωj do
  J(Fi) = f(Ω ∪ Fi)
end for
Ω=Ω{argmaxFiJ(Fi)}
end for