Skip to content

Commit a6e6fea

Browse files
author
Juan Orduz
committed
some fixes
1 parent afe68a6 commit a6e6fea

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pymc_bart/pgbart.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -430,7 +430,7 @@ def _update(
430430
m_2 += delta * delta2
431431

432432
std = (m_2 / count) ** 0.5
433-
return mean, m_2, std
433+
return mean.astype(np.float64), m_2.astype(np.float64), std.astype(np.float64)
434434

435435

436436
class SampleSplittingVariable:

0 commit comments

Comments
 (0)