Views
No views yet
| Method | MRR | R@1 | R@10 |
|---|---|---|---|
| MiniLM-FT v4 (neural) | 0.400 | 27.5% | 72.0% |
| MiniLM-FT v4 (hybrid) | 0.428 | 30.2% | 74.8% |
| Cloud model (hybrid) | 0.550 | 38.5% | 88.5% |
1from sentence_transformers import SentenceTransformer
2
3model = SentenceTransformer("galenphall/minilm-citation-v4")
4
5# Embed a query (your writing)
6query_embedding = model.encode("The relationship between CO2 emissions and temperature...")
7
8# Embed papers as: "title. authors. year. journal. abstract"
9paper_embedding = model.encode("Global Warming Effects. Smith and Jones. 2023. Nature. We study...")1pip install incite
2incite setup
3incite recommend "your text here" -k 101@software{incite2025,
2 author = {Hall, Galen},
3 title = {inCite: Local-First Citation Recommendation},
4 year = {2025},
5 url = {https://github.com/galenphall/incite},
6 license = {Apache-2.0}
7}