Issue #602 explicitly called for adding name= to the __init__ of BayesianSARIMAX, VARMAX, ETS, and DFM. As of PR #654, none of these currently accept or forward name= to super().__init__(), so users can't use multiple instances of those models in a single PyMC model.
Issue #602 explicitly called for adding
name=to the__init__ofBayesianSARIMAX,VARMAX,ETS, andDFM. As of PR #654, none of these currently accept or forwardname=tosuper().__init__(), so users can't use multiple instances of those models in a single PyMC model.