What's Changed
* feat: add parameter constraints and validations, add `_fit_context` decorator by msamsami in https://github.com/msamsami/wnb/pull/44
* feat: add support for specifying distributions as a list of tuples by msamsami in https://github.com/msamsami/wnb/pull/45
* doc: minor update in getting started section of RAEDME by msamsami in https://github.com/msamsami/wnb/pull/46
---
🎉 Now you specify `GeneralNB`'s distributions as a list of tuples:
python
from wnb import GeneralNB, Distribution as D
gnb = GeneralNB(
distributions=[
(D.NORMAL, "col1"),
(D.BERNOULLI, "col2"),
(D.EXPONENTIAL, ["col3", "col4"])
]
)
---
**Full Changelog**: https://github.com/msamsami/wnb/compare/v0.6.0...v0.7.0