Skip to content

Latest commit

 

History

History
124 lines (112 loc) · 9.23 KB

File metadata and controls

124 lines (112 loc) · 9.23 KB

Multi-Label Active Learning

Multi-label active learning (MLAL) is to use AL on multi-label learning (MLL) problems. Each instance has multiple classification labels. We note that MLAL could be seen as a degeneration from multi-task active learning (MTAL) when all the tasks are classification. Sometimes these two fields are focus on the same MLAL problems but sometimes are not. In this chapter, we only discuss the MLAL problems in spite of what terminology the papers use. Different from the general MTAL, MLAL usually utilize the relationship between labels.

We can divide the MLAL works into three types by the query type:

  • Query all the labels of the selected unlabeled instances.
  • Query the specific label of the selected instance. More efficient and minimize the waste of budget.
  • Others
MLAL query types Works
Instance query MML/MMC/BMAL/Adaptive/CVIRS
Instance-label pair query 2DAL/AUDI/QUIRE
Others AURO

Works

Instance query

Instance-label pair query

Others

  • Multi-Label Active Learning: Query Type Matters [2015, IJCAI]: AURO. AL strategies that select example-label pairs avoid information redundancy, but they may ignore the interaction between labels and can obtain a limited supervision from each query. They iteratively select one instance along with a pair of labels, and then query their relevance ordering, i.e., ask the oracle which of the two labels is more relevant to the instance.
  • Active Refinement for Multi-Label Learning: A Pseudo-Label Approach [2021]
  • Partial multi-label learning: exploration of binary ground-truth labels [2023, ICME]

Multi-Instance-Multi-Label Active Learning

In this case, the task is to predict the labels of bags of instances. The number of labels would be more than two.