|
Algorithm 1 Active learning for node classification. |
Input: Graph , Query budget K, Initial labels
Output: An improved model
for to
do
Select the best unlabeled instance with an acquisition function g
Retrieve its label
Update label set
Retrain the model
end for
Return
|