A library of neural solvers for fast and accurate inference over Probabilistic Models.
Project description
NeuPI: A Library for Neural Probabilistic Inference
NeuPI is a PyTorch-based library for solving inference tasks in Probabilistic Models (PMs) using neural network surrogates. It provides a modular framework for training neural models in a self-supervised fashion, where the Probabilistic Model itself provides the supervisory signal.
This approach eliminates the need for labeled training data, enabling neural networks to learn to solve tasks like Most Probable Explanation (MPE) by directly optimizing for the log-likelihood of their proposed solutions.
Documentation
Documentation is available at https://neupi.readthedocs.io/en/latest/. GitHub repository: https://github.com/Shivvrat/NeuPI.
Key Features
- Self-Supervised Training: Train neural surrogates using only the PGM definition—no labeled data required.
- Advanced Inference: Includes the ITSELF (
Inference Time Self-Supervised Training) engine for test-time refinement, significantly improving inference accuracy. - Modular Architecture: A clean separation of components:
- PGM Evaluators (
MarkovNetwork,SumProductNetwork) - Neural Solvers (
MLP) - Input Embedders (
DiscreteEmbedder) - Trainers (
SelfSupervisedTrainer) - Inference Engines (
SinglePassInferenceEngine,ITSELF_Engine)
- PGM Evaluators (
- Extensible: Easily register your own custom components using the built-in factory system.
- Efficient Backend: Utilizes a high-performance Cython backend for parsing
.uaifiles.
Core Workflow
The core idea of NeuPI is to train a neural network to act as a fast approximator for a complex PM query. The workflow is as follows:
- Load a PM: This PM acts as the loss and evaluates the quality of solutions.
- Define a Neural Surrogate: This is the "solver," which learns to generate high-quality solutions.
- Train: Use the
SelfSupervisedTrainerto train the solver. The loss is the negative log-likelihood of the solver's solutions, as computed by the PM. - Infer: Use the trained model with an
InferenceEngineto answer new queries.
Installation
First, ensure you have PyTorch installed (with a GPU version if you want to use it). Then, clone the repository and install the library and its dependencies.
# Clone the repository
git clone https://github.com/Shivvrat/NeuPI
cd NeuPI
# Install the library in editable mode
pip install -e .
Quick Start
Examples provided in the examples directory demonstrate:
1. Computing the negative log-likelihood (loss) of a solution to a MPE query on a Markov Network (Probabilistic Graphical odels) and Sum-Product Network (Probabilistic Circuits).
2. Training a neural solver to solve MPE queries on a Markov Network and Sum-Product Network.
3. Performing inference with a trained neural solver on a Markov Network and Sum-Product Network.
Implemented Methods
The core components of NeuPI are directly linked to our published research. The following table maps the key classes in the library to the papers that introduce the primary concepts.
| Type | Method / Component | Primary Reference(s) | Description |
|---|---|---|---|
| Trainer + Loss | SelfSupervisedTrainer |
Arya et al., AAAI 2024, Arya et al., NeurIPS 2024, Arya et al., AISTATS 2025 (SINE) | The core training loop for learning a neural solver by minimizing the negative log-likelihood provided by a PGM/PC evaluator. |
| Embedding | DiscreteEmbedder |
Arya et al., AAAI 2024, Arya et al., NeurIPS 2024 | A feature engineering module that creates rich (discrete) input representations from variable assignments and bucket information (evidence, query, unobserved). |
| Inference | SinglePassInferenceEngine |
Arya et al., AAAI 2024, Arya et al., AISTATS 2025 (SINE) | A standard inference pipeline involving a single forward pass of the neural network to produce an MPE/MMAP solution. |
| Inference | ITSELF_Engine |
Arya et al., NeurIPS 2024 | Implements Inference Time Self-Supervised Learning Fine-tuning, an advanced engine that optimizes the model for each specific test instance to refine solution quality. |
| Discretizer | KNearestDiscretizer |
Arya et al., AISTATS 2025 (SINE) | A sophisticated discretization method that performs beam search over the k-nearest binary vectors to find a high-quality discrete assignment. |
| Discretizer | OAUAI |
Arya et al., AISTATS 2025 (SINE) | A heuristic discretizer that uses an oracle to answer the query over the variables with the highest uncertainty (probabilities closest to 0.5). |
Running Tests
To ensure all components are working correctly, run the test suite using pytest:
pytest
📖 Citation
If you use NeuPI in your research, please cite the following repository:
@article{arya2025neupi,
title={NeuPI: A Library for Neural Probabilistic Inference},
author={Arya, Shivvrat and Rahman, Tahrima and Gogate, Vibhav},
link={https://github.com/Shivvrat/NeuPI},
year={2025}
}
In addition, cite the relevant papers that introduce the core methods implemented in NeuPI:
- Single-Pass Inference and Marginal MAP inference in probabilistic circuits:
@article{aryaNeuralNetworkApproximators2024,
title = {Neural {{Network Approximators}} for {{Marginal MAP}} in {{Probabilistic Circuits}}},
author = {Arya, Shivvrat and Rahman, Tahrima and Gogate, Vibhav},
year = {2024},
month = mar,
journal = {Proceedings of the AAAI Conference on Artificial Intelligence},
volume = {38},
number = {10},
pages = {10918--10926},
issn = {2374-3468},
doi = {10.1609/aaai.v38i10.28966},
urldate = {2024-03-27},
copyright = {Copyright (c) 2024 Association for the Advancement of Artificial Intelligence},
langid = {english},
}
- Single-Pass Inference and neural embedding techniques for Constrained MPE:
@inproceedings{aryaLearningSolveConstrained2024,
title = {Learning to {{Solve}} the {{Constrained Most Probable Explanation Task}} in {{Probabilistic Graphical Models}}},
booktitle = {Proceedings of {{The}} 27th {{International Conference}} on {{Artificial Intelligence}} and {{Statistics}}},
author = {Arya, Shivvrat and Rahman, Tahrima and Gogate, Vibhav},
year = {2024},
month = apr,
pages = {2791--2799},
publisher = {PMLR},
issn = {2640-3498},
urldate = {2024-04-21},
langid = {english},
}
- ITSELF engine and the general framework for MPE inference over Probabilistic Models:
@inproceedings{aryaNeuralNetworkApproach2024,
title = {A Neural Network Approach for Efficiently Answering Most Probable Explanation Queries in Probabilistic Models},
booktitle = {The {{Thirty-eighth Annual Conference}} on {{Neural Information Processing Systems}}},
author = {Arya, Shivvrat and Rahman, Tahrima and Gogate, Vibhav Giridhar},
year = {2024},
month = nov,
urldate = {2024-11-17},
langid = {english},
}
- Single-Pass Inference and better embedding and discretization techniques in probabilistic graphical models:
@inproceedings{aryaSINEScalableMPE2025,
title = {{{SINE}}: {{Scalable MPE}} Inference for Probabilistic Graphical Models Using Advanced Neural Embeddings},
shorttitle = {{{SINE}}},
booktitle = {The 28th {{International Conference}} on {{Artificial Intelligence}} and {{Statistics}}},
author = {Arya, Shivvrat and Rahman, Tahrima and Gogate, Vibhav Giridhar},
year = {2025},
month = feb,
urldate = {2025-06-22},
langid = {english},
}
License
This project is licensed under the MIT License. See the LICENSE file for details.
Disclaimer
This code was written for research purposes and therefore might not strictly adhere to established coding practices and guidelines. View and use at your own risk!
Acknowledgments
This work was supported in part by the DARPA Perceptually-Enabled Task Guidance (PTG) Program under contract number HR00112220005, by the DARPA Assured Neuro Symbolic Learning and Reasoning (ANSR) Program under contract number HR001122S0039, by the National Science Foundation grant IIS-1652835 and by the AFOSR award FA9550-23-1-0239.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
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 neupi-1.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: neupi-1.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.9 MB
- Tags: CPython 3.13, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
223a232a0068eb5ea7f65e4a913ece58f4f246cb5bf825826a7298fe80948250
|
|
| MD5 |
e8b0b299557b903d3fb44ed70dd30af5
|
|
| BLAKE2b-256 |
c07640b5b0d01415eb8c54d1a2e4d63ce68de70ce11a630bf36da38b7a947651
|
Provenance
The following attestation bundles were made for neupi-1.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:
Publisher:
release.yml on Shivvrat/NeuPI
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
neupi-1.0.2-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl -
Subject digest:
223a232a0068eb5ea7f65e4a913ece58f4f246cb5bf825826a7298fe80948250 - Sigstore transparency entry: 273031753
- Sigstore integration time:
-
Permalink:
Shivvrat/NeuPI@012cd912adf75febea199dfe2061af1bef4e19cc -
Branch / Tag:
refs/tags/v1.0.2 - Owner: https://github.com/Shivvrat
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@012cd912adf75febea199dfe2061af1bef4e19cc -
Trigger Event:
release
-
Statement type:
File details
Details for the file neupi-1.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: neupi-1.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.9 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
022ded5d4c1e2a06e4a7a948b25e7509f8ba644f4d10ffe181e4cb8c5499d020
|
|
| MD5 |
d58bd3bd0fac29acccf4368100b9d920
|
|
| BLAKE2b-256 |
4831d8204b85218e01b652e8b012928dba8494e215999ee906dcb00bb0958df4
|
Provenance
The following attestation bundles were made for neupi-1.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:
Publisher:
release.yml on Shivvrat/NeuPI
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
neupi-1.0.2-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl -
Subject digest:
022ded5d4c1e2a06e4a7a948b25e7509f8ba644f4d10ffe181e4cb8c5499d020 - Sigstore transparency entry: 273031754
- Sigstore integration time:
-
Permalink:
Shivvrat/NeuPI@012cd912adf75febea199dfe2061af1bef4e19cc -
Branch / Tag:
refs/tags/v1.0.2 - Owner: https://github.com/Shivvrat
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@012cd912adf75febea199dfe2061af1bef4e19cc -
Trigger Event:
release
-
Statement type:
File details
Details for the file neupi-1.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: neupi-1.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.9 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cf038e58f6f9dc4474620d574dc8493eabe8880d5de5be5162571db900628664
|
|
| MD5 |
e52ff196cba8ab795b6cadf96fc21835
|
|
| BLAKE2b-256 |
50109248cd2a28fd31254731760b7bea8a98799207866e22f9150dd84ec26fba
|
Provenance
The following attestation bundles were made for neupi-1.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:
Publisher:
release.yml on Shivvrat/NeuPI
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
neupi-1.0.2-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl -
Subject digest:
cf038e58f6f9dc4474620d574dc8493eabe8880d5de5be5162571db900628664 - Sigstore transparency entry: 273031756
- Sigstore integration time:
-
Permalink:
Shivvrat/NeuPI@012cd912adf75febea199dfe2061af1bef4e19cc -
Branch / Tag:
refs/tags/v1.0.2 - Owner: https://github.com/Shivvrat
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@012cd912adf75febea199dfe2061af1bef4e19cc -
Trigger Event:
release
-
Statement type:
File details
Details for the file neupi-1.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: neupi-1.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.8 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ec34f5318365bcae9aab70985acc21895087d568c7c9635f97a376dbe18a6d83
|
|
| MD5 |
15c8e46c20852dbc18007959dc1a5650
|
|
| BLAKE2b-256 |
2c60c7fc6be4b00521f3c503c9a5a0761ee324dfafa26bfef5fd468f12ae5906
|
Provenance
The following attestation bundles were made for neupi-1.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:
Publisher:
release.yml on Shivvrat/NeuPI
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
neupi-1.0.2-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl -
Subject digest:
ec34f5318365bcae9aab70985acc21895087d568c7c9635f97a376dbe18a6d83 - Sigstore transparency entry: 273031752
- Sigstore integration time:
-
Permalink:
Shivvrat/NeuPI@012cd912adf75febea199dfe2061af1bef4e19cc -
Branch / Tag:
refs/tags/v1.0.2 - Owner: https://github.com/Shivvrat
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@012cd912adf75febea199dfe2061af1bef4e19cc -
Trigger Event:
release
-
Statement type:
File details
Details for the file neupi-1.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: neupi-1.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.8 MB
- Tags: CPython 3.9, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
309fa6b53d10477c6aa419f92bb2845f128ce8172861dc6aca1df2eb2ae63853
|
|
| MD5 |
cd125a123d2f281c0ee2ddf35ff8fd24
|
|
| BLAKE2b-256 |
1ca20ead4276da7a364fbe6e9b643d5f24ad05c19d8a14f5355b729a2ed613af
|
Provenance
The following attestation bundles were made for neupi-1.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:
Publisher:
release.yml on Shivvrat/NeuPI
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
neupi-1.0.2-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl -
Subject digest:
309fa6b53d10477c6aa419f92bb2845f128ce8172861dc6aca1df2eb2ae63853 - Sigstore transparency entry: 273031755
- Sigstore integration time:
-
Permalink:
Shivvrat/NeuPI@012cd912adf75febea199dfe2061af1bef4e19cc -
Branch / Tag:
refs/tags/v1.0.2 - Owner: https://github.com/Shivvrat
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@012cd912adf75febea199dfe2061af1bef4e19cc -
Trigger Event:
release
-
Statement type:
File details
Details for the file neupi-1.0.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: neupi-1.0.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.9 MB
- Tags: CPython 3.8, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6c3cd657d2201ef56dcfe9685b3458d0413a34fa6979be1ad86fb2da70740932
|
|
| MD5 |
de92781eac79dfc79f1eb563e8a336f7
|
|
| BLAKE2b-256 |
722b9ce4ecfb85b88c19dc8a1579dad1d1a41843ef6f01747c3567021d761312
|
Provenance
The following attestation bundles were made for neupi-1.0.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:
Publisher:
release.yml on Shivvrat/NeuPI
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
neupi-1.0.2-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.whl -
Subject digest:
6c3cd657d2201ef56dcfe9685b3458d0413a34fa6979be1ad86fb2da70740932 - Sigstore transparency entry: 273031750
- Sigstore integration time:
-
Permalink:
Shivvrat/NeuPI@012cd912adf75febea199dfe2061af1bef4e19cc -
Branch / Tag:
refs/tags/v1.0.2 - Owner: https://github.com/Shivvrat
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@012cd912adf75febea199dfe2061af1bef4e19cc -
Trigger Event:
release
-
Statement type: