We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d97e7d6 commit 6ae3ba0Copy full SHA for 6ae3ba0
2 files changed
examples/posterior_sampling.py
@@ -19,7 +19,7 @@
19
X_mean, X_cov = model.likelihood(Z0)
20
print("likelihood mean shape:", X_mean.shape)
21
22
-# Draw samples from likelihood (optional)
+# Draw samples from likelihood
23
X_lik_samples = model.sample_likelihood(Z0, n_draws=10)
24
print("X_lik_samples shape:", X_lik_samples.shape)
25
print("Done")
pyproject.toml
@@ -4,7 +4,7 @@ build-backend = "scikit_build_core.build"
4
5
[project]
6
name = "ppca-py"
7
-version = "1.0.3"
+version = "1.0.4"
8
description = "Probabilistic PCA (PPCA) with missing-data support - fast C++ core, clean Python API"
9
readme = "README.md"
10
license = {file = "LICENSE"}
0 commit comments