tceron/wildseek
Viewer • Updated • 3.08k • 74 • 1
How to use tceron/info-seek-classifier with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-classification", model="tceron/info-seek-classifier") # Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("tceron/info-seek-classifier")
model = AutoModelForSequenceClassification.from_pretrained("tceron/info-seek-classifier", device_map="auto")This classifier has been trained with ModernBERT large. It classifies user interactions with LLMs into 5 categories:
0: "information seeking",
1: "content creation",
2: "coding",
3: "not english",
4: "no request"
All details in:
@inproceedings{ceron2026wildseek,
title = {WildSEEK: Evaluating Language Models for Information-Seeking},
author = {Ceron, Tanise and Baumann, Joachim and Bassignana, Elisa and Cabuk, Berat and Hovy, Dirk and Nozza, Debora},
booktitle = {Proceedings of the 2026 Conference on Empirical Methods in Natural Language Processing},
year = {2026}
}
tceron/high-risk-classifier — Other, Economic and Financial, Health, Politics, Judicial and Legal, Moral Values and Religion, Securitytceron/open-endedness-classifier — Analytical, FactualBase model
answerdotai/ModernBERT-large