veles-core 0.2.2

Core library for Veles code search — indexing, chunking, BM25, dense search, and hybrid ranking
Documentation
1
2
3
4
5
6
7
//! Ranking module — boosting, penalties, and weighting.

mod boosting;
mod penalties;

pub use boosting::{apply_query_boost, boost_multi_chunk_files, is_symbol_query, resolve_alpha};
pub use penalties::rerank_topk;