Skip to content

Commit

Permalink
pm.ConstantData -> pm.Data
Browse files Browse the repository at this point in the history
  • Loading branch information
jessegrabowski committed Apr 8, 2024
1 parent 0c53df5 commit f8183a5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pymc_experimental/tests/statespace/test_distributions.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ def data():
@pytest.fixture(scope="session")
def pymc_model(data):
with pm.Model() as mod:
data = pm.ConstantData("data", data.values)
data = pm.Data("data", data.values)
P0_diag = pm.Exponential("P0_diag", 1, shape=(2,))
P0 = pm.Deterministic("P0", pt.diag(P0_diag))
initial_trend = pm.Normal("initial_trend", shape=(2,))
Expand Down

0 comments on commit f8183a5

Please sign in to comment.