xLLiM is a C++ with Python bindings implementation of Gaussian Locally-Linear Mapping.
Project description
xLLiM
xLLiM is a C++ with Python bindings implementation of Gaussian Locally-Linear Mapping.
It can be used to perform efficient inversion of high-dimensional models.
xLLiM integrates features such as:
- Forward model functionals. These can be implemented as C++ or as pure Python functions. The forward model can be used to generate data following a distribution and refine GLLiM results by sampling the PDF using various strategies.
- Multi-initialization options
- Post-GLLiM refinement methods such as Importance Sampling (IS) and Iterative Mixture Importance Sampling (IMIS)
- Post-processing analysis, including confidence quantification on predictions, detection of multiple solutions, and permutation of predictions in case of signal regularity.
Currently,
xLLiMsupports only Gaussian probability distributions, but other distributions may be added to it in the future.
xLLiM is distributed as a compiled shared library and can be installed via conda, pip, or as a Docker container. It is integrated in the Planet-GLLiM astrophysics application, that is distributed as a Docker image for local use and as a data processing service
on Allgo-18.
Repository migration:
xLLiMhas moved to GitHub. The current repository is https://github.com/xllim-tools/xllim. The former GitLab repository (https://gitlab.inria.fr/xllim/xllim) is no longer maintained.
The xLLiM method was previously implemented in R and is available on CRAN.
Other implementations of GLLiM also exist:
- A pure Python implementation: pyGLLiM
- A Julia implementation with IS and IMIS: Fast Bayesian Inversion
This xLLiM implementation is derived from Kernelo.
Kernelo is obsolete and is no longer maintained.
Table of Contents
Documentation and API reference
The API reference of the xLLiM module is available at xLLiM API reference. For more information you can find a complete scientific documentation in the Planet-GLLiM documentation.
Runtime Dependencies
Mandatory:
These packages are required for the core functionality of the library.
| Name | version |
|---|---|
| Python | >=3.11, < 3.13 |
| Numpy | >=2.0, < 3 |
| h5py | >=3.8, < 4 |
For other python versions, see Other python versions.
Optional:
ENVI / GDAL Support
xllim requires GDAL specifically for ENVI hyperspectral file support. Because GDAL depends on native system libraries, installation can be complex.
Recommended (Most reliable)
Using Conda is the simplest way to handle linked C libraries:
conda install gdal
Alternative: pip + system package
If installing via apt or brew, the Python GDAL version must match the system GDAL version. If the versions do not match, the installation will fail.
Example on Ubuntu:
- Install system libraries
sudo apt install libgdal-dev gdal-bin
- Check the system version
gdal-config --version
- Install the matching python wrapper (e.g., if version is 3.8.4)
pip install "gdal==3.8.4"
xLLiM installation options
xLLiM can be installed and used in several ways, depending on your environment and preference.
1. Conda-forge (recommended)
The easiest way to install xLLiM is via a conda-compatible package manager. xLLiM is published on conda-forge, a community-maintained channel that provides up-to-date, cross-platform packages. The corresponding xllim-feedstock contains the conda packaging recipe and tracks each release. That is where the conda recipe, managing xllim conda builds, should be updated if needed (refer to xllim-feedstock README for instructions).
Installing a conda distribution
If you don't already have conda installed, several distributions are available. They all provide the conda command (or a drop-in equivalent) and can install packages from conda-forge:
| Distribution | Description | Docs |
|---|---|---|
| Micromamba | Standalone, fast C++ reimplementation of conda. No base environment, no Python required. Defaults to conda-forge. | mamba.readthedocs.io |
| Miniforge | Community-maintained minimal installer. Defaults to conda-forge. | github.com/conda-forge/miniforge |
| Miniconda | Minimal installer from Anaconda. Defaults to the defaults channel (see warning below). |
docs.conda.io |
| Anaconda | Full-featured distribution with many pre-installed packages and a GUI. Defaults to defaults channel (see warning below). Heavier download. |
docs.anaconda.com |
Recommended: Micromamba or Miniforge. Both default to conda-forge exclusively, so environments are clean and consistent. They are also significantly faster than the classic
condasolver.
Example: installing Micromamba on Linux
"${SHELL}" <(curl -L micro.mamba.pm/install.sh)
This installs the micromamba binary and adds a shell initialisation block to your shell config. Restart your shell (or source ~/.bashrc), then verify:
micromamba --version
On macOS the same command works. On Windows, see the Micromamba installation docs.
Installing xLLiM
Once you have a conda distribution available, create and activate an environment (<my-env> is a placeholder):
# With conda or mamba
conda create -n <my-env>
conda activate <my-env>
# With micromamba
micromamba create -n <my-env>
micromamba activate <my-env>
Then install xLLiM (replace conda with micromamba if applicable). This will also install the required dependencies.
conda install -c conda-forge xllim
⚠️ Anaconda/Miniconda users: channel conflict warning. Anaconda and Miniconda default to Anaconda's proprietary
defaultschannel, which is not the same as conda-forge. Mixing channels (e.g., adding-c conda-forgeto adefaults-based environment) can lead to subtle dependency conflicts and broken environments, because the two channels build packages independently and their ABI guarantees are not always compatible. If you use Anaconda or Miniconda, we strongly recommend creating a conda-forge-only environment before installingxLLiM:conda create -n <my-env> -c conda-forge --override-channels conda activate <my-env> conda config --env --add channels conda-forge conda config --env --set channel_priority strictSee the conda-forge documentation on channel conflicts for more details.
2. PyPI
Available wheels
We've built and tested wheels for Linux x86_64 (manylinux_2_28) - Python 3.11 and 3.12. If you're in one of these configurations, you can install xllim easily with:
pip install xllim
Mac/Windows
If you're on Mac or Windows, and are fine with Python 3.11/12, we recommend you either:
- install with conda (Section 1.)
- use our pre-built docker image (Section 3.)
Other Python versions
If you want to use a different Python version (3.10, 3.13, 3.14...):
They've not been tested as some of xLLiM dependencies exclude these versions. It might be possible though. Then you may try:
- Building from the sdist (
pip install xllim): when no pre-built wheel matches your Python version or platform, pip automatically falls back to downloading the source distribution and compiling the C++ extension on your machine. The Python-side build tools (scikit-build-core, cmake, ninja, numpy, pybind11) are installed automatically. However, you must first install the native system libraries manually (compiler, Armadillo, a BLAS/LAPACK implementation, Boost, carma - see Section 4. for details). . - Compiling, building and installing from scratch (advanced users) (Section 4.)
3. Docker / Apptainer (Singularity)
Pre-built container images are published for every release. Two formats are available: a standard Docker image for workstations and cloud environments, and an Apptainer / Singularity SIF image for HPC clusters where Docker is unavailable.
Docker
A minimal Docker image based on python:3.11-slim is available, with xLLiM pre-installed.
Prerequisites: install Docker Engine (Linux/macOS) or Docker Desktop (Windows).
Pull the image:
docker pull ghcr.io/xllim-tools/xllim/xllim:latest
Note: specific versions are also available. See xLLiM GHCR.
Run your project by mounting your source directory:
docker run -it \
-v $(pwd):/workspace \
-w /workspace \
ghcr.io/xllim-tools/xllim/xllim:latest \
python main.py
You can also open an interactive shell:
docker run -it -v $(pwd):/workspace -w /workspace ghcr.io/xllim-tools/xllim/xllim:latest bash
Apptainer / Singularity (HPC)
Apptainer (formerly Singularity) is a container runtime designed for HPC environments where Docker is typically not available or not allowed. It runs rootless and is natively supported on most HPC schedulers (SLURM, PBS, etc.).
For every release, a SIF (Singularity Image Format) image is automatically built from the Docker image and published to the same GHCR registry with a -sif tag suffix.
Prerequisite: Apptainer must be installed on your system (typically already available on HPC clusters - check with your sysadmin).
Pull the latest SIF image:
apptainer pull xllim.sif oras://ghcr.io/xllim-tools/xllim/xllim:latest-sif
Or pull a specific version (replace <version> with the desired release tag):
apptainer pull xllim.sif oras://ghcr.io/xllim-tools/xllim/xllim:<version>-sif
Available versions: xLLiM GHCR.
Run your project by binding your working directory:
apptainer run -B $(pwd):/workspace --pwd /workspace xllim.sif python main.py
Or open an interactive shell:
apptainer shell -B $(pwd):/workspace xllim.sif
4. Manual installation (optional)
If you need to compile xLLiM from source (e.g., for an unsupported platform or Python version, or for development), please refer to the requirements below.
Build Dependencies
These are required only if you are compiling the library from source.
| Name | Version | Notes |
|---|---|---|
| C++ compiler | C++17 support | System-installed (e.g., g++ >= 9, clang++ >= 5) |
| CMake | >= 3.21 | Auto-installed by pip when using pip install . |
| Ninja | any | Auto-installed by pip when using pip install . |
| scikit-build-core | >= 0.7.0, < 1 | Auto-installed by pip when using pip install . |
| Python | >= 3.11, < 3.13 | System-installed; see Other Python versions for other versions |
| Numpy | >= 2 | Auto-installed by pip when using pip install . |
| Pybind11 | >= 2.12 | Auto-installed by pip when using pip install . |
| Armadillo | >= 12.6, < 13 | System-installed |
| Boost | >= 1.78, < 2 | System-installed; components: system, thread, random |
| BLAS / LAPACK | any | System-installed; any conforming implementation is accepted (OpenBLAS, MKL, Apple Accelerate…) |
| Carma | >= 0.8.0 | System-installed (see installation notes below) |
Build from source
Since xLLiM contains C++ extensions with Python bindings, building from source requires native system libraries that pip cannot install automatically. The instructions below use a Debian/Ubuntu-based system as example - adapt package names for your distribution.
- Clone the project
git clone https://github.com/xllim-tools/xllim.git
cd xllim
- Install system dependencies
sudo apt update
# Compilation tools
sudo apt-get install -y --no-install-recommends g++ cmake ninja-build
# BLAS/LAPACK - OpenBLAS is used here as an example; any conforming implementation works (MKL, etc.)
sudo apt-get install -y --no-install-recommends libopenblas-dev liblapack-dev
# Armadillo
sudo apt-get install -y --no-install-recommends libarmadillo-dev
# Python development headers
sudo apt-get install -y --no-install-recommends python3-dev
# Boost (components: system, thread, random)
sudo apt-get install -y --no-install-recommends libboost-dev libboost-system-dev libboost-thread-dev libboost-random-dev
⚠️ Boost version:
xLLiMrequires Boost >= 1.78.0 (enforced by CMake). Ubuntu 24.04+ ships a compatible version out of the box. On older distributions (e.g., Ubuntu 22.04 ships 1.74), you will need to build Boost >= 1.78.0 from source:curl -L https://archives.boost.io/release/1.78.0/source/boost_1_78_0.tar.gz -o boost.tar.gz tar -xzf boost.tar.gz cd boost_1_78_0 ./bootstrap.sh --prefix=/usr/local ./b2 --with-system --with-thread --with-random link=static variant=release -j$(nproc) install cd .. && rm -rf boost_1_78_0 boost.tar.gzAfter building Boost to
/usr/local, you must tell CMake where to find it by setting theCMAKE_ARGSenvironment variable before callingpip install .:export CMAKE_ARGS="-DBoost_ROOT=/usr/local -DBoost_NO_SYSTEM_PATHS=ON -DBoost_USE_STATIC_LIBS=ON"
carma - not available in standard apt repositories; build from source:
curl -L https://github.com/RUrlus/carma/archive/refs/tags/v0.8.0.tar.gz -o carma.tar.gz
tar -xzf carma.tar.gz
cd carma-0.8.0 && mkdir build && cd build
cmake -DCARMA_INSTALL_LIB=ON ..
cmake --build . --config Release --target install
cd ../..
rm -rf carma-0.8.0 carma.tar.gz
Tip: if you are using conda, all of the above can be installed in one step:
conda install armadillo boost libblas liblapack carmaThis pulls OpenBLAS by default; substitute a different
blasbuild string (e.g.,libblas * *mkl) to use an alternative BLAS implementation.
- Build and install
pip install .
This uses scikit-build-core to drive the CMake build automatically. The Python-side build tools (scikit-build-core, cmake, ninja, numpy, pybind11) are fetched by pip as needed.
- Verify the installation
python3
>>> import xllim
Manual CMake build (for development)
For C++ development or debugging, you can drive CMake directly:
cmake -S . -B build -G Ninja -DCMAKE_BUILD_TYPE=Debug -DXLLIM_BUILD_TESTS=ON
cmake --build build
ctest --test-dir build
The build type can be either Debug (-O0 -g) or Release (-O2 -DNDEBUG). To install the compiled module into your Python environment, use pip install . as described above.
Licence
This software is licensed under the GNU GPL-compatible CeCILL-C License.
While the software is free, we would appreciate it if you send us an email at xllim-contact@inria.fr to let us know how you use it.
Also, please contact us if the licence does not meet your needs.
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
Built Distributions
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file xllim-2.0.9.tar.gz.
File metadata
- Download URL: xllim-2.0.9.tar.gz
- Upload date:
- Size: 20.4 MB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c9728a33931ffa7df7e0f2f5bfab9899aaa1085a1f2cb77c6d69703fb2847fc5
|
|
| MD5 |
38ce9a0690ec0dab21c03978cb34851a
|
|
| BLAKE2b-256 |
7431da61ca654aae584e0af0e44e00cbf34330036c8f8a0de4c7228087771a17
|
Provenance
The following attestation bundles were made for xllim-2.0.9.tar.gz:
Publisher:
build_publish.yml on xllim-tools/xllim
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
xllim-2.0.9.tar.gz -
Subject digest:
c9728a33931ffa7df7e0f2f5bfab9899aaa1085a1f2cb77c6d69703fb2847fc5 - Sigstore transparency entry: 1188608981
- Sigstore integration time:
-
Permalink:
xllim-tools/xllim@4de6a3572c9274b1958cd0dee14b1d501627e8f6 -
Branch / Tag:
refs/tags/v2.0.9 - Owner: https://github.com/xllim-tools
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_publish.yml@4de6a3572c9274b1958cd0dee14b1d501627e8f6 -
Trigger Event:
release
-
Statement type:
File details
Details for the file xllim-2.0.9-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: xllim-2.0.9-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 33.5 MB
- Tags: CPython 3.12, manylinux: glibc 2.27+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
27a7fbc64a65fe60768c9b25436de297a1e4129c9513943e9f47cf8a32dc3af5
|
|
| MD5 |
cda4f025fabbd5c81894b8b909af02e0
|
|
| BLAKE2b-256 |
5cd481c01fa5fda92d240bd0d28c8243fc3cf98c24666c725ad060e1226c1561
|
Provenance
The following attestation bundles were made for xllim-2.0.9-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:
Publisher:
build_publish.yml on xllim-tools/xllim
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
xllim-2.0.9-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
27a7fbc64a65fe60768c9b25436de297a1e4129c9513943e9f47cf8a32dc3af5 - Sigstore transparency entry: 1188608985
- Sigstore integration time:
-
Permalink:
xllim-tools/xllim@4de6a3572c9274b1958cd0dee14b1d501627e8f6 -
Branch / Tag:
refs/tags/v2.0.9 - Owner: https://github.com/xllim-tools
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_publish.yml@4de6a3572c9274b1958cd0dee14b1d501627e8f6 -
Trigger Event:
release
-
Statement type:
File details
Details for the file xllim-2.0.9-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: xllim-2.0.9-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 33.5 MB
- Tags: CPython 3.11, manylinux: glibc 2.27+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6cf441a2ab6c32d2d56f11616587663ffb0c98dfe5248fb50a7bd24abb3f948d
|
|
| MD5 |
1fdf7379ace80b15d926915705835591
|
|
| BLAKE2b-256 |
f50599bde705c9c93d562024a4d48d4e60f3f010fc4c53b94b16b3dcb43405f5
|
Provenance
The following attestation bundles were made for xllim-2.0.9-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:
Publisher:
build_publish.yml on xllim-tools/xllim
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
xllim-2.0.9-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
6cf441a2ab6c32d2d56f11616587663ffb0c98dfe5248fb50a7bd24abb3f948d - Sigstore transparency entry: 1188608991
- Sigstore integration time:
-
Permalink:
xllim-tools/xllim@4de6a3572c9274b1958cd0dee14b1d501627e8f6 -
Branch / Tag:
refs/tags/v2.0.9 - Owner: https://github.com/xllim-tools
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_publish.yml@4de6a3572c9274b1958cd0dee14b1d501627e8f6 -
Trigger Event:
release
-
Statement type: