Skip to content

Commit 78a1304

Browse files
committed
update mle.create_inits
1 parent be965dc commit 78a1304

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

cmdstanpy/stanfit/mle.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -77,9 +77,7 @@ def create_inits(
7777
"""
7878
# pylint: disable=unused-argument
7979

80-
return {
81-
name: np.array(val) for name, val in self.stan_variables().items()
82-
}
80+
return self.stan_variables()
8381

8482
def __repr__(self) -> str:
8583
repr = 'CmdStanMLE: model={}{}'.format(

0 commit comments

Comments
 (0)