Skip to content

Releases: cardmagic/classifier

v2.4.0

19 May 13:57
5ec86a5

Choose a tag to compare

What's Changed

  • docs: simplify CLI examples in README by @cardmagic in #132
  • chore(deps-dev): bump rdoc from 7.0.3 to 7.1.0 by @dependabot[bot] in #134
  • chore(deps-dev): bump rubocop from 1.82.1 to 1.84.0 by @dependabot[bot] in #135
  • chore(deps-dev): bump rubocop from 1.84.0 to 1.84.2 by @dependabot[bot] in #139
  • chore(deps-dev): bump rbs-inline from 0.12.0 to 0.13.0 by @dependabot[bot] in #138
  • chore(deps-dev): bump rdoc from 7.1.0 to 7.2.0 by @dependabot[bot] in #137
  • chore(deps-dev): bump rubocop-minitest from 0.38.2 to 0.39.1 by @dependabot[bot] in #140
  • chore(deps-dev): bump rubocop from 1.84.2 to 1.85.0 by @dependabot[bot] in #141
  • chore(deps-dev): bump rubocop from 1.85.0 to 1.85.1 by @dependabot[bot] in #142
  • chore(deps-dev): bump rubocop from 1.85.1 to 1.86.0 by @dependabot[bot] in #147
  • chore(deps-dev): bump webmock from 3.26.1 to 3.26.2 by @dependabot[bot] in #144
  • chore(deps-dev): bump json from 2.18.0 to 2.19.2 by @cardmagic in #148
  • fix: resolve RuboCop Style/OneClassPerFile violations by @cardmagic in #154
  • chore(deps-dev): bump addressable from 2.8.9 to 2.9.0 by @dependabot[bot] in #149
  • chore(deps-dev): bump rubocop from 1.86.0 to 1.86.2 by @dependabot[bot] in #150
  • chore(deps): bump rake from 13.3.1 to 13.4.2 by @dependabot[bot] in #151
  • chore(deps-dev): bump erb from 4.0.4 to 4.0.4.1 by @dependabot[bot] in #152
  • feat: make min_word_length parameter configurable (#120) by @Yegorov in #153

New Contributors

Full Changelog: v2.3.2...v2.4.0

v2.3.2

01 Jan 18:40
14c5d85

Choose a tag to compare

What's Changed

  • fix: force UTF-8 encoding on HTTP response body + CLI docs by @cardmagic in #131

Full Changelog: v2.3.1...v2.3.2

v2.3.1

01 Jan 18:30
76d3969

Choose a tag to compare

What's Changed

  • fix: force UTF-8 encoding for non-UTF8 locales by @cardmagic in #130

Full Changelog: v2.3.0...v2.3.1

v2.3.0

31 Dec 18:37
4972dc3

Choose a tag to compare

What's Changed

Full Changelog: v2.2.0...v2.3.0

v2.2.0

29 Dec 17:16
36a68c9

Choose a tag to compare

What's Changed

  • feat(bayes): add keyword argument API for train and untrain by @cardmagic in #97
  • fix(lsi): improve sentence and paragraph splitting in Summary by @cardmagic in #98
  • Add property-based tests for probabilistic invariants by @cardmagic in #99
  • feat(lsi): add hash-style API for adding items by @cardmagic in #101
  • feat(knn): add k-Nearest Neighbors classifier by @cardmagic in #105
  • feat(tfidf): add TF-IDF vectorizer by @cardmagic in #107
  • feat: Add Logistic Regression classifier by @cardmagic in #108
  • feat: Add streaming training and incremental SVD support by @cardmagic in #109
  • fix: accept array of categories in classifier initialization by @cardmagic in #111
  • Release v2.2.0 by @cardmagic in #112

Full Changelog: v2.1.0...v2.2.0

v2.1.0

28 Dec 19:01
90c12a1

Choose a tag to compare

What's Changed

  • Add zero-dependency native C extension for LSI acceleration by @cardmagic in #89
  • feat: add thread safety to Bayes and LSI classifiers by @cardmagic in #86
  • feat: add save/load methods for classifier persistence by @cardmagic in #85
  • perf: cache expensive computations in Bayes classifier by @cardmagic in #84
  • feat(lsi): expose tuning parameters with validation and introspection API by @cardmagic in #92
  • Add rubyclassifier.com links to README and gemspec by @cardmagic in #94
  • feat: add pluggable persistence backends with storage API by @cardmagic in #93

Full Changelog: v2.0.0...v2.1.0

v2.0.0

27 Dec 20:55
2fb18f5

Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v1.4.4...v2.0.0

v1.4.4

31 Jul 15:57
bb971a2

Choose a tag to compare

Release Notes for Classifier 1.4.4

New Features and Enhancements

  1. Fix bug in classifying text with repeated words
    • There was a bug classifying LSI text with repeated words that is now fixed

v1.4.3

31 Jul 15:44
40f3215

Choose a tag to compare

Release Notes for Classifier 1.4.3

New Features and Enhancements

  1. Fix support for Ruby 2.7
    • Make sure that Ruby 2.7 works

v1.4.2

31 Jul 15:01
d8c758c

Choose a tag to compare

Release Notes for Classifier 1.4.2

New Features and Enhancements

  1. Fix bug in remove_category Method

  2. Add more unit tests

    • Added unit tests for the remove_category feature