Views
No views yet
| Label | ID | Routes to |
|---|---|---|
GENERAL | 0 | Qwen2.5-7B-Instruct (no LoRA) |
SQL | 1 | sql-expert LoRA adapter |
FINANCIAL | 2 | financial LoRA adapter |
distilbert/distilbert-base-uncased1from transformers import pipeline
2
3classifier = pipeline("text-classification", model="xczou/distilbert-intent-sql-financial-general")
4classifier("Write a SQL query to find all orders above 100")
5# [{'label': 'SQL', 'score': 0.98}]