bm25 2.0.0 copy "bm25: ^2.0.0" to clipboard
bm25: ^2.0.0 copied to clipboard

A Dart implementation of the BM25 ranking algorithm for full-text search

Changelog #

2.0.0 #

Breaking Changes #

  • BREAKING: Renamed Document class to BM25Document to avoid naming conflicts with other libraries
  • BREAKING: Renamed document.dart file to bm25_document.dart

Migration Guide #

Update your imports and class references:

// Before
import 'package:bm25/src/document.dart';
Document doc = Document(...);

// After
import 'package:bm25/bm25.dart';
BM25Document doc = BM25Document(...);

1.0.0 #

  • Initial release
  • Implement BM25 ranking algorithm
  • Support for document search and ranking
  • Document chunking capabilities
  • Configurable BM25 parameters (k1 and b)
  • Comprehensive test coverage
2
likes
0
points
87
downloads

Publisher

unverified uploader

Weekly Downloads

A Dart implementation of the BM25 ranking algorithm for full-text search

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

collection, meta

More

Packages that depend on bm25