NUAA-AL / ALiPy

ALiPy: Active Learning in Python is an active learning python toolbox, which allows users to conveniently evaluate, compare and analyze the performance of active learning methods.

Home Page:http://parnec.nuaa.edu.cn/huangsj/alipy/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Can alipy be used for multi-classification problems? Is there any sample code to look at?

ahlane opened this issue · comments

commented
commented

Hi, just replace the binary y with multi-class y in http://parnec.nuaa.edu.cn/huangsj/alipy/example.html AL with instance selection. (e.g., make_classification(...., n_classes=5, ....)
and do not use SPAL and BMDR query strategies since they only support binary classification problem.