This classifier acts as a
routing layer
in an LLM pipeline, helping decide:
When to trigger retrieval
When to let the model respond from internal knowledge
How to optimize for latency and cost
📦 Training Details
Model: DeBERTa v3 Large
Fine-tuning: Full (no adapters)
Dropout: 0.1
Scheduler: Cosine with warmup
Batch size: 24 (accumulated)
Evaluation: every 500 steps
Metric used for best checkpoint: F1
🧪 Example Predictions
Prompt
Grounding
Confidence
What’s the exchange rate for USD to Yen right now?
1
0.999
Tell me a bedtime story about a robot and a dragon.
0
0.9961
Who is the current CEO of Microsoft?
1
0.9986
🧠 How to Use
from transformers import AutoTokenizer, AutoModelForSequenceClassification
import torch.nn.functional as F
model = AutoModelForSequenceClassification.from_pretrained("dejanseo/query-grounding")
tokenizer = AutoTokenizer.from_pretrained("dejanseo/query-grounding")
prompt = "What time is the next train from Tokyo to Osaka?"
inputs = tokenizer(prompt, return_tensors="pt")
outputs = model(**inputs).logits
probs = F.softmax(outputs, dim=-1)
label = probs.argmax().item()
confidence = probs[0][label].item()
🧾 Dataset Origin
Prompts were collected using a Gemini 2.5 Pro + Google Search toolchain with grounding enabled. Each prompt's response was parsed to extract Gemini's grounding confidence, used as soft supervision for binary labeling:
Label 1 if grounded confidence present
Label 0 if response required no external evidence
Runs of dejanseo query-grounding on huggingface.co
67
Total runs
0
24-hour runs
-4
3-day runs
-2
7-day runs
29
30-day runs
More Information About query-grounding huggingface.co Model
query-grounding huggingface.co is an AI model on huggingface.co that provides query-grounding's model effect (), which can be used instantly with this dejanseo query-grounding model. huggingface.co supports a free trial of the query-grounding model, and also provides paid use of the query-grounding. Support call query-grounding model through api, including Node.js, Python, http.
query-grounding huggingface.co is an online trial and call api platform, which integrates query-grounding's modeling effects, including api services, and provides a free online trial of query-grounding, you can try query-grounding online for free by clicking the link below.
dejanseo query-grounding online free url in huggingface.co:
query-grounding is an open source model from GitHub that offers a free installation service, and any user can find query-grounding on GitHub to install. At the same time, huggingface.co provides the effect of query-grounding install, users can directly use query-grounding installed effect in huggingface.co for debugging and trial. It also supports api for free installation.