Skip to content

Latest commit

 

History

History
69 lines (44 loc) · 3.08 KB

File metadata and controls

69 lines (44 loc) · 3.08 KB

Change Log

All notable changes to this project will be documented in this file. Only versions published since 2023-01-01 are listed here. Please consult the Git history for older version information. See Conventional Commits for commit guidelines.

Note: Unlisted patch versions only involve non-code or otherwise excluded changes and/or version bumps of transitive dependencies.

0.4.7 (2025-07-20)

🩹 Bug fixes

  • fix #532, fix centralTermsVec() (6e19974)
    • update non-zero check

0.4.0 (2025-06-18)

🚀 Features

  • add filterDocsFrequency() (6ac1f90)

⏱ Performance improvements

  • minor update kmeansDense() (ebd5618)
    • internal use lookupUnsafe()

0.3.1 (2025-06-15)

🩹 Bug fixes

0.3.0 (2025-06-15)

🚀 Features

  • update kmeansDense (d35b6bd)
    • update results to include original docs for each cluster

0.2.0 (2025-06-14)

🚀 Features

  • add/migrate refactored tf-idf functions (d311acc)
  • add/update vocab & vector encoding helpers, restructure (9e4f60c)
  • add filterDocsIDF() (f682b58)
  • add k-mean clustering fns (3533843)

♻️ Refactoring

0.1.0 (2025-06-09)

🚀 Features

  • import as new pkg (89fe9bb)
    • add re-exports from transducers/vectors pkgs
    • add porter stemmer, contractions & stop words from old @thi.ng/notes repo
      • add porter fixtures
    • update defVocab() to use @thi.ng/bidir-index
    • add sparse vector support
    • add/port cosine/jaccard similarities from vectors/sparse pkgs
    • add doc strings & examples