DCEE

Installation

From PyPI

Requires Python 3.10+.

pip install dcee

Pin a minimum version:

pip install "dcee>=0.1.0"

Dependencies

Installed automatically with the wheel: numpy, scikit-learn, tqdm.

Optional: GPU acceleration

Install a CuPy wheel that matches your CUDA toolkit, for example:

pip install cupy-cuda12x

If CuPy is not installed, DCEE runs on the CPU via NumPy.

Development install

From a clone of the DCEE repository:

git clone https://github.com/arjun988/DCEE.git
cd DCEE
pip install -e ".[dev]"

This installs pytest and other dev tools for running tests and benchmarks in the repo.