|
Algorithm 2 Query Synthesis Active Learning |
Input: A dataset , a general active learning strategy S, a utility function u, number of iterations T, a discount factor and a generation method for creating synthetic queries .
Output: A Learned model and a cumulative gained utility .
labeled data samples randomly chosen out of .
Train the regression model using the initial training data to obtain initial model .
repeat
.
the true label for the query sample .
Add the acquired data point to the training data: .
Evaluate the utility using the new acquired point: .
Update the regression model using the new acquired point .
untilT iterations executed
return The learned model and the cumulative discounted utility .
|