Installation GuideΒΆ

Note

ALPBench is intended to work with Python 3.10 and above.

Installation StepsΒΆ

  1. Clone the Repository:

    git clone https://github.com/ValentinMargraf/ActiveLearningPipelines.git
    cd ActiveLearningPipelines
    
  2. Create and Activate a Conda Environment:

    conda create --name ALP python=3.10
    conda activate ALP
    
  3. 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
      
  4. Install for Development:

    make install-dev