Skip to content

Commit b693fb8

Browse files
Removed exponentiation from CTM components
1 parent 95676c6 commit b693fb8

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

turftopic/models/ctm.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -269,7 +269,7 @@ def fit(
269269
status.update(
270270
f"Fitting model. Epoch [{epoch}/{self.n_epochs}], Loss [{running_loss}]"
271271
)
272-
self.components_ = np.array(np.exp(self.model.beta()))
272+
self.components_ = np.array(self.model.beta())
273273
console.log("Model fitting done.")
274274
return self
275275

0 commit comments

Comments
 (0)