Skip to main content

A plug-and-play, scikit-learn compatible implementation of Supervised Multi-Dimensional Scaling (SMDS) for automatic feature manifold discovery in LLMs.

Project description

Supervised Multi-Dimensional Scaling

Arxiv License Python Versions CI

This is a stand-alone implementation of Supervised Multi-Dimensional Scaling (SMDS) from the paper "Shape Happens: Automatic Feature Manifold Discovery in LLMs". It contains a plug-and-play class written with the familiar scikit-learn interface. SMDS supports several template shapes to discover manifolds of various shape.

Contact person: Federico Tiblias

UKP Lab | TU Darmstadt

Don't hesitate to report an issue if you have further questions or spot a bug.

Getting started

With uv (recommended):

uv add smds

With pip:

pip install smds

Usage

The SupervisedMDS class provides a scikit-learn style interface that is straightforward to use. Unlike standard MDS, it requires selecting a stage-1 strategy and target manifold by name (for example: "cluster", "circular").

Fit & Transform

You can instantiate the model, fit it to data (X, y), and transform your input into a low-dimensional embedding:

import numpy as np
from smds import SupervisedMDS

# Example data
X = np.random.randn(100, 20)  # 100 samples, 20 features
y = np.random.randint(0, 5, size=100)  # Discrete labels (clusters)

# Instantiate and fit
# stage_1: "computed" (default) or "user_provided"
# manifold: one of the built-in shape names, e.g. "cluster", "circular", "log_linear"
smds = SupervisedMDS(stage_1="computed", manifold="cluster", alpha=0.1)
smds.fit(X, y)

# Transform to low-dimensional space
X_proj = smds.transform(X)
print(X_proj.shape)  # (100, 2)

If you set stage_1="user_provided", manifold is ignored and a warning is raised.

Manifold Discovery

Once fitted, you can use the learned transformation for inverse projections and to assess how well the embedding matches the target geometry:

from smds.pipeline.discovery_pipeline import discover_manifolds
from smds.pipeline import open_dashboard

# Run discovery pipeline
# Evaluates default shapes (Cluster, Circular, Hierarchical, etc.)
# Returns a DataFrame sorted by best fit (lowest stress / highest score)
df_results, save_path = discover_manifolds(
    X, 
    y, 
    smds_components=2,           # Target dimensionality
    n_folds=5,                   # Cross-validation folds
    experiment_name="My_Exp",    # Name for saved results
    n_jobs=-1                    # Use all available cores
)

print(f"Best matching shape: {df_results.iloc[0]['shape']}")
print(df_results.head())

# Launch the interactive Streamlit dashboard to explore results and plots
open_dashboard.main(save_path)

The discovery pipeline handles:

  • Hypothesis Testing: Iterates through a default or custom list of manifold shapes.
  • Cross-Validation: Uses k-fold CV to ensure robust scoring.
  • Caching: Caches intermediate results to resume interrupted experiments.
  • Visualization: Generates interactive plots for the dashboard.

Optimization & GPU Support

For manifolds with undefined distances (e.g. ChainShape), SMDS falls back to a generic SciPy solver.
For large datasets, this can be slow.

SMDS provides an optional accelerated solver based on PyTorch, which is significantly faster on CPU and can transparently leverage GPUs when available.

Enabling the Accelerator

Install SMDS with the optional fast extra:

  pip install smds[fast]

Then enable it in your model:

smds = SupervisedMDS(
    ...,
    manifold="chain",
    gpu_accel=True,
)

If a compatible GPU is available, PyTorch will use it automatically. Otherwise, the accelerated solver will run on CPU.

💡 GPU support (CUDA on NVIDIA, MPS on Apple Silicon) depends on your PyTorch installation. See the official PyTorch documentation for platform-specific setup.

Development (for contributors)

This seciton is especially usefull if you consider contributing to the library!

Documentation

To build and serve the documentation locally:

mkdocs serve

Statistical Validation

Standard cross-validation provides a mean score, but it does not tell you if one manifold is statistically better than another. SMDS includes a robust Statistical Testing (ST) wrapper that runs repeated experiments to perform a Friedman Rank Sum Test and Nemenyi Post-Hoc Analysis.

Running a Statistical Test

Instead of smds/pipeline/run_pipeline, use the smds/pipeline/run_statistical_test.py wrapper:

from smds.pipeline.statistical_testing.run_statistical_test import run_statistical_validation

# Runs the pipeline 10 times (10 repeats), each with 5-Fold CV
pivot_dfs, output_path = run_statistical_validation(
    X=my_data, 
    y=my_labels, 
    n_repeats=10,
    n_folds=5,
    experiment_name="my_robust_experiment"
)

Viewing Results

Open the dashboard to view the Friedman Statistic, P-Value Heatmap, and Critical Difference (CD) Diagram:

python smds/pipeline/open_dashboard.py

Testing

Run the test suite using pytest:

make test

Contributors (the Shape Wizards team)

Cite

Please use the following citation:

@misc{tiblias2025shapehappensautomaticfeature,
      title={Shape Happens: Automatic Feature Manifold Discovery in LLMs via Supervised Multi-Dimensional Scaling}, 
      author={Federico Tiblias and Irina Bigoulaeva and Jingcheng Niu and Simone Balloccu and Iryna Gurevych},
      year={2025},
      eprint={2510.01025},
      archivePrefix={arXiv},
      primaryClass={cs.AI},
      url={https://arxiv.org/abs/2510.01025}, 
}

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

smds-1.6.2.tar.gz (3.4 MB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

smds-1.6.2-py3-none-any.whl (72.8 kB view details)

Uploaded Python 3

File details

Details for the file smds-1.6.2.tar.gz.

File metadata

  • Download URL: smds-1.6.2.tar.gz
  • Upload date:
  • Size: 3.4 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.6 {"installer":{"name":"uv","version":"0.10.6","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for smds-1.6.2.tar.gz
Algorithm Hash digest
SHA256 829924949b666a1818da6d97b56ed8d8ebfd1b67531fe3af21005e7ffa52d066
MD5 a3d3497143404da81d2e29842c3bbf99
BLAKE2b-256 6618add1b7122942fe6709457a26d137b6104c4507d0a767ca6e08626c49134b

See more details on using hashes here.

File details

Details for the file smds-1.6.2-py3-none-any.whl.

File metadata

  • Download URL: smds-1.6.2-py3-none-any.whl
  • Upload date:
  • Size: 72.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.6 {"installer":{"name":"uv","version":"0.10.6","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for smds-1.6.2-py3-none-any.whl
Algorithm Hash digest
SHA256 04c529b4334e97282e9e0f406fa5c718d58520e8f60e8b2f0c4fa19f1a3e4c91
MD5 01a067c9ead55142af466782963e5f54
BLAKE2b-256 56e5cff513545981b18cc26a603efa127018dddb6b3dbc65bcdc12dfd299c01c

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page