|
Algorithm 1 General Active Learning |
|
Input: initial train set L, unlabelled validation set U, independent test set T
|
|
Output: predicted labels for the test set |
-
1:
▹ Learns model on initial training set
-
2:
while SC not met do
-
3:
selection by of the most informative sample:
-
4:
ask Oracle for label
-
5:
▹ Increments the model’s training set with
-
6:
▹ Removes from unlabelled samples U
-
7:
▹ Updates model
-
8:
return ▹ Returns predicted labels for the test set
-
9:
end while
|