Installation GuideΒΆ
Note
ALPBench is intended to work with Python 3.10 and above.
Installation StepsΒΆ
Clone the Repository:
git clone https://github.com/ValentinMargraf/ActiveLearningPipelines.git cd ActiveLearningPipelines
Create and Activate a Conda Environment:
conda create --name ALP python=3.10 conda activate ALP
Install Dependencies:
For usage (without TabNet and TabPFN):
pip install -r requirements.txt
OR
For usage (with TabNet and TabPFN):
pip install -r requirements_full.txt
Install for Development:
make install-dev