Please, Cease Employing Static Hyper-Parameters in Active Learning: A Comprehensive Framework Comparison
conda create -n alrm python=3.9 -y
conda activate alrm
git clone https://github.com/Nearpit/ALRM.git
cd ALRM
pip install .
- Add a new class to the acquisition folder inhereting some of the base classes.
- Add the relative name for the
--aargument. - Import the added class to the __init__.py file in the acquisition folder.
- Add a new class to the dataset folder inhereting some of the base classes.
- Import the added class to the __init__.py file in the acquisition folder.
- Initialize json file in the dataset/configs folder (see example.json)
- n_features - the number of features of the added dataset
- n_instances - the number of instances of the added dataset
- n_classes - the number of classes of the target space
- batch_size - training batch size
- budget - the amount of AL iterations (0 < x < train_size - n_labeled)
- metrics_dict - metrics of the classifier


