PipeOwl
Collection
A transformer-free semantic retrieval engine. • 5 items • Updated
A transformer-free semantic retrieval engine.
PipeOwl performs deterministic vocabulary scoring over a static embedding field:
score = α⋅base + β⋅Δfield
where:
Features:
The base embedding vectors were generated using BGE-M3 (Apache-2.0) via inference. This repository does not redistribute any original BGE weights.
pip install numpy safetensors
python quickstart.py
https://hackmd.io/@galaxy4552/SJ5DatsuZx
pipeowl1.2/
├ README.md
├ config.json
├ LICENSE
├ quickstart.py
├ pipeowl.safetensors
├ vocabulary.json
└ engine.py
核心公式:
score = α⋅base + β⋅Δfield
其中:
提供一種 O(n) 的輕量語義計分方法, 適合低延遲環境(如輸入法)。
MIT