We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aeb1399 commit 5c38497Copy full SHA for 5c38497
1 file changed
cmdstanpy/utils.py
@@ -730,7 +730,7 @@ def scan_variational_csv(path: str) -> Dict[str, Any]:
730
lineno += 1
731
xs = line.split(',')
732
variational_mean = [float(x) for x in xs]
733
- dict['variational_mean'] = variational_mean
+ dict['variational_mean'] = np.array(variational_mean)
734
dict['variational_sample'] = pd.read_csv(
735
path,
736
comment='#',
0 commit comments