You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: CHANGELOG.md
+29-1
Original file line number
Diff line number
Diff line change
@@ -3,6 +3,30 @@
3
3
All notable changes to this project will be documented in this file.
4
4
5
5
6
+
<aname="1.0.0.a3"></a>
7
+
## [1.0.0.a3] - 2023-12-06
8
+
9
+
Fourth alpha release. [@YoelPH](https://github.com/YoelPH) noticed some more bugs that have been fixed now. Most notably, the risk prediction raised exceptions, because of a missing transponed matrix `.T`.
10
+
11
+
### Bug Fixes
12
+
13
+
- Raise `ValueError` if diagnose time parameters are invalid (Fixes [#53])
14
+
- Use names of LNLs in unilateral `comp_encoding()` (Fixes [#56])
Copy file name to clipboardexpand all lines: docs/source/quickstart_unilateral.ipynb
+3
Original file line number
Diff line number
Diff line change
@@ -322,6 +322,8 @@
322
322
"\n",
323
323
"Here, it's important that the first argument is the support of the probability mass function, i.e., the discrete time-steps from 0 to `max_time`. Also, all parameters must have default values. Otherwise, there would be cases when such a stored distribution cannot be accessed.\n",
324
324
"\n",
325
+
"Lastly, if some parameters have bounds, like e.g. the binomial distribution, they should raise a `ValueError`. This exception is propagated upwards but causes the `likelihood` method to simply return `-np.inf`. That way it will be seamlessly rejected during an MCMC sampling round.\n",
0 commit comments