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 b313ecd commit 7999a58Copy full SHA for 7999a58
tsdate/base.py
@@ -125,7 +125,7 @@ def force_probability_space(self, probability_space):
125
if self.probability_space == LOG:
126
pass
127
elif self.probability_space == LIN:
128
- with np.errstate(divide="ignore"):
+ with np.errstate(divide="ignore", invalid="ignore"):
129
self.grid_data = np.log(self.grid_data)
130
self.fixed_data = np.log(self.fixed_data)
131
self.probability_space = LOG
0 commit comments