| Algorithm 1 Pseudo-code of individual functions | |
| 1: function
Extract feature() input: output: 2: = 3: end function 4: function Classify() input: output: 5: for each sample in do 6: (acquire soft and crisp labels) 7: end for 8: return = (obtain ambiguous samples) 9: end function |
10: function
Threshold() 11: if then 12: return = 1 13: else 14: return = 0 15: end if 16: end function 17: function Active learner() input: output: 18: (Obtain BGMM model) 19: for each sample in do 20: 21: end for 22: 23: end function |