Getting Started

Welcome to ASTRA! ASTRA is a Python package for Automated model selection using Statistical Testing for Robust Algorithms.

Installation

ASTRA is not yet available on PyPI. Clone the repository and install it locally:

git clone https://github.com/duartegroup/astra.git
cd astra
pip install .

Usage

Once installed, you can use the astra command-line interface. For example, to run a benchmark:

astra benchmark --config configs/example.yml

You can also use ASTRA in your Python code:

import astra

astra.benchmark.run(data='path/to/your/data.csv')

For more details, please refer to the User Guide.