|
Algorithm 1 Parameter estimation of GMMs. |
|
Input: evidential training set , iteration stop threshold
Output: estimated normal distribution parameter matrix
-
1:
for each attribute do
-
2:
initialize parameters as ;
-
3:
Initialize loop variable.
-
4:
for q do
-
5:
update the estimation of parameters by Equations (28) and (29).
-
6:
if then
-
7:
break; {End the loop if evidential likelihood increment is less than threshold.}
-
8:
end if
-
9:
;
-
10:
end for
-
11:
adopt as estimated normal distribution parameters under attribute ;
-
12:
end for
|