A light-weight PyTorch companion for building stochastic surrogate models
Project description
| Docs | Code style |
|---|---|
Pypolymix
pypolymix is a light-weight PyTorch companion for building stochastic surrogate models.
Documentation
Project documentation lives at https://sandialabs.github.io/pypolymix.
Installation
From PyPI:
python -m pip install pypolymix
Optional extras:
python -m pip install "pypolymix[examples]"
python -m pip install "pypolymix[docs]"
python -m pip install "pypolymix[dev]"
For local development:
python -m pip install -e ".[dev,docs,examples]"
Quickstart
Fit a 1D polynomial chaos model with a mix of stochastic and deterministic coefficients:
import torch
from pypolymix.parameter_groups import DeterministicGroup, IIDGaussianGroup
from pypolymix.surrogate_models import PolynomialChaosExpansion
from pypolymix import StochasticModel
torch.manual_seed(0)
x = torch.linspace(-1, 1, 200).unsqueeze(-1)
y = torch.sin(3 * x) + 0.1 * torch.randn_like(x)
surrogate_model = PolynomialChaosExpansion(num_inputs=1, num_outputs=1, degree=5)
num_params = surrogate_model.num_params()
parameter_groups = [
IIDGaussianGroup("stochastic", 2),
DeterministicGroup("deterministic", num_params - 2),
]
model = StochasticModel(surrogate_model=surrogate_model, parameter_groups=parameter_groups)
optimizer = torch.optim.Adam(model.parameters(), lr=5e-3)
for _ in range(500):
optimizer.zero_grad()
preds = model(x, num_samples=16).mean(dim=0)
data_loss = torch.mean((preds - y) ** 2)
loss = data_loss + 1e-3 * model.distribution_loss()
loss.backward()
optimizer.step()
with torch.no_grad():
samples = model(x, num_samples=100)
mean = samples.mean(dim=0)
std = samples.std(dim=0)
Development
If you use Poetry:
poetry install --with dev,docs,examples
Install the pre-commit hook:
pre-commit install
Examples
Notebooks live in docs/examples/ and are rendered on the documentation site.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
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 pypolymix-0.1.3.tar.gz.
File metadata
- Download URL: pypolymix-0.1.3.tar.gz
- Upload date:
- Size: 14.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7b5bea52221bd98f4f2a23eef7251974b3293d994464a685199a2956e759b43c
|
|
| MD5 |
7c529987f166765d36022e90a7c2ebb0
|
|
| BLAKE2b-256 |
3adc004a77d8b8d54fe0f402f7c21e38c2e0e7c66c50ce9281ee6d0a089efa3f
|
File details
Details for the file pypolymix-0.1.3-py3-none-any.whl.
File metadata
- Download URL: pypolymix-0.1.3-py3-none-any.whl
- Upload date:
- Size: 19.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bcabbda7b0ddc690468fd6e4fbcc6775f9d5a7e9749cd3d274608e28a0a38d3d
|
|
| MD5 |
8911699e8dbd047186a5071e79e5fd3d
|
|
| BLAKE2b-256 |
718446840bfc969239c5869d0883c6e3c0464cb492649d2de8dc8429c8e57b78
|