Skip to content

Commit f460733

Browse files
committed
[WIP/TEST] prob_factory test running for the first time
1 parent c41b2c2 commit f460733

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

gempy_probability/modules/model_definition/model_examples.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ def two_wells_prob_model_I(geo_model: gempy.core.data.GeoModel, normal, y_obs_li
8080
gravity_priors = {
8181
# e.g. density contrast of layer index 3
8282
# "mu_density": dist.Normal(2.62, 0.5),
83-
"mu_thickness": dist.Normal(
83+
r'$\mu_{top}$': dist.Normal(
8484
loc=torch.tensor(0.0487, dtype=torch.float64),
8585
scale=torch.tensor(0.1, dtype=torch.float64)
8686
)
@@ -89,7 +89,7 @@ def two_wells_prob_model_I(geo_model: gempy.core.data.GeoModel, normal, y_obs_li
8989
# 2) Wrap your forward pass into a small fn
9090
def run_gempy_forward(samples, geo_model):
9191

92-
mu_top = samples["mu_thickness"]
92+
mu_top = samples["$\mu_{top}$"]
9393

9494
interp_input = interpolation_input_from_structural_frame(geo_model)
9595

0 commit comments

Comments
 (0)