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
This commit was created on GitHub.com and signed with GitHub’s verified signature.
What's New
Bug Fixes
Don't use or when param may be 0.
Since Python's expression a = b or c will assign c to a as soon as b is "falsy", e.g. also when b = 0.0, I should not use this to check
if a parameter in the model is None.
Documentation
Fix misspelled repo link.
Remove empty mixins page.
Better reuse of README.
Move social card to repo root.
This is actually for LyProX: I want to display the social card of all
repos in the lycosystem on LyProX's landing page. Therefore, they all
need to be in their expected places.
Miscellaneous Tasks
Add year range to license.
Testing
Use val != 0.5 to test matrix deletion.
0.5 is the new initial value for most parameters, so it does not make
sense to use this to check if upon changing a parameter, the transition
matrix gets deleted.
Change
Init most params with 0.5 instead of 0.0.
In some cases, initializing with 0.0 may have unintended consequences.
E.g., a probability of 0.0 cannot be renormalized.