Skip to content

Commit

Permalink
VARMAX parameters had wrong shape
Browse files Browse the repository at this point in the history
  • Loading branch information
jessegrabowski committed Sep 12, 2024
1 parent cc267d9 commit c3dca64
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pymc_experimental/statespace/models/VARMAX.py
Original file line number Diff line number Diff line change
Expand Up @@ -220,11 +220,11 @@ def param_info(self) -> dict[str, dict[str, Any]]:
"constraints": "Positive Semi-definite",
},
"ar_params": {
"shape": (self.k_states, self.p, self.k_states),
"shape": (self.k_endog, self.p, self.k_endog),
"constraints": "None",
},
"ma_params": {
"shape": (self.k_states, self.q, self.k_states),
"shape": (self.k_endog, self.q, self.k_endog),
"constraints": "None",
},
}
Expand Down

0 comments on commit c3dca64

Please sign in to comment.