Text Classification
Transformers
Safetensors
PEFT
English
code
qwen3
text-generation
code-search
reranker
code-retrieval
lora
text-embeddings-inference
Instructions to use hq-bench/coreb-code-reranker with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use hq-bench/coreb-code-reranker with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-classification", model="hq-bench/coreb-code-reranker")# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("hq-bench/coreb-code-reranker") model = AutoModelForCausalLM.from_pretrained("hq-bench/coreb-code-reranker") - PEFT
How to use hq-bench/coreb-code-reranker with PEFT:
Task type is invalid.
- Notebooks
- Google Colab
- Kaggle
Add url to BibTeX citation
Browse files
README.md
CHANGED
|
@@ -94,6 +94,7 @@ For batch reranking with the CoREB evaluation pipeline, see the [CoREB repositor
|
|
| 94 |
title={Beyond Retrieval: A Multitask Benchmark and Reranker for Code Search},
|
| 95 |
author={Xue, Siqiao and Liao, Zihan and Qin, Jin and Zhang, Ziyin and Mu, Yixiang and Zhou, Fan and Yu, Hang},
|
| 96 |
journal={arXiv preprint arXiv:2605.04615},
|
| 97 |
-
year={2026}
|
|
|
|
| 98 |
}
|
| 99 |
```
|
|
|
|
| 94 |
title={Beyond Retrieval: A Multitask Benchmark and Reranker for Code Search},
|
| 95 |
author={Xue, Siqiao and Liao, Zihan and Qin, Jin and Zhang, Ziyin and Mu, Yixiang and Zhou, Fan and Yu, Hang},
|
| 96 |
journal={arXiv preprint arXiv:2605.04615},
|
| 97 |
+
year={2026},
|
| 98 |
+
url={https://arxiv.org/abs/2605.04615}
|
| 99 |
}
|
| 100 |
```
|