Skip to content

Commit 95cd950

Browse files
committed
Popultate __all__ for scores and links
1 parent 2ac5f3c commit 95cd950

File tree

3 files changed

+10
-0
lines changed

3 files changed

+10
-0
lines changed

bayesflow/diagnostics/__init__.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
from .plots import (
44
calibration_ecdf,
5+
calibration_ecdf_from_quantiles,
56
calibration_histogram,
67
loss,
78
mc_calibration,
@@ -10,6 +11,7 @@
1011
pairs_posterior,
1112
pairs_samples,
1213
recovery,
14+
recovery_from_estimates,
1315
z_score_contraction,
1416
)
1517

bayesflow/links/__init__.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
11
from .ordered import Ordered
22
from .ordered_quantiles import OrderedQuantiles
33
from .positive_semi_definite import PositiveSemiDefinite
4+
5+
from ..utils._docs import _add_imports_to_all
6+
7+
_add_imports_to_all(include_modules=[])

bayesflow/scores/__init__.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,3 +7,7 @@
77
QuantileScore,
88
MultivariateNormalScore,
99
)
10+
11+
from ..utils._docs import _add_imports_to_all
12+
13+
_add_imports_to_all(include_modules=[])

0 commit comments

Comments
 (0)