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
fix: accept array of categories in classifier initialization (#111)
* fix: accept array of categories in classifier initialization
Bayes.new and LogisticRegression.new now accept either:
- Splat arguments: Bayes.new('Spam', 'Ham')
- Array argument: Bayes.new(['Spam', 'Ham'])
Both forms are now equivalent, fixing the issue where array
arguments were treated as a single category name.
Fixes#110
* docs: add visual indicators to comparison table and fix URL
Add checkmark and X emoji to the Why This Library comparison table
for better visual scanning. Fix Logistic Regression guide URL to
use correct path (logisticregression without hyphen).
0 commit comments