Instructions to use OpenVINO/Qwen3-Reranker-0.6B-seq-cls-fp16-ov with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use OpenVINO/Qwen3-Reranker-0.6B-seq-cls-fp16-ov with Transformers:
# Load model directly from transformers import AutoTokenizer, AutoModelForSequenceClassification tokenizer = AutoTokenizer.from_pretrained("OpenVINO/Qwen3-Reranker-0.6B-seq-cls-fp16-ov") model = AutoModelForSequenceClassification.from_pretrained("OpenVINO/Qwen3-Reranker-0.6B-seq-cls-fp16-ov", device_map="auto") - Notebooks
- Google Colab
- Kaggle
The NPU acceleration isn't working. The iGPU is handling all the work throughout the process. Could it be that the NPU doesn't support the embedding layer structure?
#1
by jasoncow - opened