|
1 | 1 | # Changelog
|
2 | 2 |
|
3 |
| -# Changelog |
4 |
| - |
5 | 3 | ## v0.25.0
|
6 | 4 |
|
7 | 5 | ### ✨ Highlights
|
8 | 6 |
|
9 | 7 | #### 🚀 New Inference Methods
|
10 | 8 |
|
11 |
| -* **MNPE class similar to MNLE** by @dgedon in https://github.com/sbi-dev/sbi/pull/1362 |
12 |
| -* **Implementing SNPE-B (#199)** by @etouron1 in https://github.com/sbi-dev/sbi/pull/1471 |
| 9 | +* **MNPE class mixed parameter (similar to MNLE)** by @dgedon in https://github.com/sbi-dev/sbi/pull/1362 |
| 10 | +* **Implementation of SNPE-B (#199)** by @etouron1 in https://github.com/sbi-dev/sbi/pull/1471 |
13 | 11 |
|
14 | 12 | #### 🧠 Neural Network Architectures & Embedding Networks
|
15 | 13 |
|
16 |
| -* **Simple transformer implementation** by @NicolasRR in https://github.com/sbi-dev/sbi/pull/1494 |
| 14 | +* **Add transformer embedding net** by @NicolasRR in https://github.com/sbi-dev/sbi/pull/1494 |
17 | 15 | * **Add embedding net that uses 1D causal convolutions (#1459)** by @Aranka-S in https://github.com/sbi-dev/sbi/pull/1499
|
18 | 16 | * **Add LRU-backed embedding networks** by @famura in https://github.com/sbi-dev/sbi/pull/1512
|
19 | 17 | * **Add ResNet as embedding model** by @StefanWahl in https://github.com/sbi-dev/sbi/pull/1472
|
|
22 | 20 | #### ⭐ Major Features & Capabilities
|
23 | 21 |
|
24 | 22 | * **Unify flow matching and score-based models** by @StarostinV in https://github.com/sbi-dev/sbi/pull/1497
|
25 |
| -* **Model misspecification based on MMD** by @coschroeder in https://github.com/sbi-dev/sbi/pull/1502 |
| 23 | +* **Model misspecification detection based on MMD** by @coschroeder in https://github.com/sbi-dev/sbi/pull/1502 |
26 | 24 | * **Marginal estimator log-prob based test for misspecification** by @swag2198 in https://github.com/sbi-dev/sbi/pull/1522
|
27 | 25 | * **Adding interface for unconditional flow training** by @plcrodrigues in https://github.com/sbi-dev/sbi/pull/1470
|
28 | 26 | * **Support using trained estimators in Pyro models** by @sethaxen in https://github.com/sbi-dev/sbi/pull/1491
|
|
46 | 44 | * fix: cap max_sampling_batch_size to prevent excessive memory by @janfb in https://github.com/sbi-dev/sbi/pull/1624
|
47 | 45 | * 1561 computation of denoising posterior precision matrix in jac method score fn iid by @manuelgloeckler in https://github.com/sbi-dev/sbi/pull/1636
|
48 | 46 | * fix xfail test, fix deprecation warnings by @janfb in https://github.com/sbi-dev/sbi/pull/1642
|
| 47 | +* fix: iid-score device handling by @janfb in https://github.com/sbi-dev/sbi/pull/1650 |
49 | 48 |
|
50 | 49 | ### 🛠️ Maintenance & Improvements
|
51 | 50 |
|
|
60 | 59 | * Use TypeAlias and consistent naming for sbi types by @janfb in https://github.com/sbi-dev/sbi/pull/1637
|
61 | 60 | * Add protocol for estimator builder by @abelaba in https://github.com/sbi-dev/sbi/pull/1633
|
62 | 61 | * Improve abc implementation by @janfb in https://github.com/sbi-dev/sbi/pull/1615
|
| 62 | +* Refactor RatioEstimator to subclass ConditionalEstimator @abelaba in https://github.com/sbi-dev/sbi/pull/1652 |
63 | 63 |
|
64 | 64 | #### 🏷️ Type Hints & API Improvements
|
65 | 65 |
|
|
86 | 86 | * chore: reorder setup steps for Python and uv in CI/CD workflows by @janfb in https://github.com/sbi-dev/sbi/pull/1601
|
87 | 87 | * Fix/lc2st numpy type fixes by @janfb in https://github.com/sbi-dev/sbi/pull/1613
|
88 | 88 | * Fix failing CI on main. by @janfb in https://github.com/sbi-dev/sbi/pull/1618
|
| 89 | +* Fix slow vector field tests by @janfb in https://github.com/sbi-dev/sbi/pull/1657 |
89 | 90 |
|
90 | 91 | #### 📖 Documentation & Website
|
91 | 92 |
|
|
113 | 114 | * fixed misrendered bullet list, tested locally by @psteinb in https://github.com/sbi-dev/sbi/pull/1594
|
114 | 115 | * Improvements to L-C2ST tutorial by @michaeldeistler in https://github.com/sbi-dev/sbi/pull/1588
|
115 | 116 | * docs: Change colortheme in light mode by @michaeldeistler in https://github.com/sbi-dev/sbi/pull/1638
|
| 117 | +* Posterior parameters doc by @abelaba in https://github.com/sbi-dev/sbi/pull/1644 |
| 118 | +* fix contributing links by @janfb in https://github.com/sbi-dev/sbi/pull/1647 |
| 119 | +* docs: add posterior parameters dataclass how to guide by @abelaba in https://github.com/sbi-dev/sbi/pull/1654 |
116 | 120 |
|
117 | 121 | #### 🏗️ Infrastructure & Dependencies
|
118 | 122 |
|
|
0 commit comments