A practical ML toolkit for scientists who want answers, not boilerplate.
ASCENDS (Advanced data SCiEnce toolkit for Non-Data Scientists) helps research users run local machine learning on their CSV data through a GUI and CLI.
- Correlation analysis: Pearson, Spearman, MI, dCor
- Model training and prediction workflows
- Regression outputs with parity plots and SHAP feature importance
- Classification backend support with confusion matrix generation
- Guided GUI workflow steps: Correlation -> Train -> Predict
- Built-in regression and classification sample data starters
- Reproducible run artifacts in
runs/
All processing runs locally — no data leaves your machine.
Download the archive for your platform from the Releases page, unpack it anywhere, and run:
| Platform | Launcher |
|---|---|
| Windows | Double-click launch_gui.bat |
| macOS | Double-click launch_gui.command |
| Linux | Use the developer setup below |
The browser opens automatically at http://127.0.0.1:7777.
First launch on Windows/macOS may take 1–2 minutes while math libraries compile. Subsequent launches are fast.
The Windows and macOS bundles include Python and the package environment. End users do not need Python or uv.
The GUI is organized as a three-step flow:
- Correlation: upload a CSV, choose a target, and select input features.
- Train: train a regression or classification model, review metrics and plots, then save the model.
- Predict: apply a saved model to a new CSV file.
From the Home page, you can start immediately with bundled sample data:
- Start with Sample Regression Data uses Boston Housing and selects
medvas the target. - Start with Sample Classification Data uses Iris and opens Train with Classification selected by default.
All processing runs locally in your browser-backed desktop session.
Requires Python 3.11+ and uv.
uv sync
uv run ascends guiOr use the helper scripts:
# macOS / Linux
./scripts/install.sh
./scripts/run_gui.sh
# Windows (cmd)
scripts\install.bat
scripts\run_gui.bat
# Windows (PowerShell)
./scripts/install.ps1
./scripts/run_gui.ps1Open: http://127.0.0.1:7777
uv run ascends correlation --csv examples/BostonHousing.csv --target medv --task r --view wide
uv run ascends train --csv examples/BostonHousing.csv --target medv --task r --model rf --out runs/boston_rf
uv run ascends parity-plot runs/boston_rf --scope combined --out runs/boston_rf
uv run ascends predict runs/boston_rf --csv examples/BostonHousing_test.csv --out runs/boston_rf/predict
uv run ascends predict runs/iris_rf --csv examples/iris_test.csv --out runs/iris_rf/predict# macOS
bash ./bundle/make_bundle.sh
# Windows (cmd)
bundle\make_bundle.bat
# Windows (PowerShell)
./bundle/make_bundle.ps1Output:
dist/ASCENDS-v<version>-<YYYYMMDD>-macOS-<arch>.zipdist/ASCENDS-v<version>-<YYYYMMDD>-windows-<arch>.zip
The Windows and macOS bundles include a Python runtime and launch without uv on the target machine. uv is only required on the build machine.
Note: Linux portable bundles are intentionally not supported right now. Linux users should use the developer workflow (
git pull,uv sync,uv run ascends gui).
# macOS / Linux
./test/test.sh
# Windows (PowerShell)
./test/test.ps1Developer-only phase regression tests (test/test_phase*.py) are kept local and are not part of the public repository.
MIT