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 0a4da02 commit d7eb3aeCopy full SHA for d7eb3ae
tsdate/base.py
@@ -119,7 +119,7 @@ def force_probability_space(self, probability_space):
119
if self.probability_space == LOG:
120
pass
121
elif self.probability_space == LIN:
122
- with np.errstate(divide="ignore"):
+ with np.errstate(divide="ignore", invalid="ignore"):
123
self.grid_data = np.log(self.grid_data)
124
self.fixed_data = np.log(self.fixed_data)
125
self.probability_space = LOG
0 commit comments