Installation (MATLAB)
This page describes installation of the MATLAB version of DANT.
Download the code from DANT
Development is based on MATLAB R2022b. The following toolboxes are required:
Statistics and Machine Learning Toolbox
Optimization Toolbox
Parallel Computing Toolbox
Python 3.9-3.11 with
scikit-learnandhdbscaninstalled (Anaconda is recommended).
1 conda create -n hdbscan python=3.10
2 conda activate hdbscan
3 pip install scikit-learn
4 pip install hdbscan
Specify the Python executable path in
settings.json.
"path_to_python": "path_to_anaconda\\anaconda3\\envs\\hdbscan\\python.exe"
On macOS or Linux, the path may look like /Users/username/anaconda3/envs/hdbscan/bin/python.
You can find the path by running the following command in the Anaconda Prompt:
conda info --envs