clinc/clinc_oos
Viewer β’ Updated β’ 59.3k β’ 10.4k β’ 20
How to use SaherMuhamed/bert-intention-classifier with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-classification", model="SaherMuhamed/bert-intention-classifier") # Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("SaherMuhamed/bert-intention-classifier")
model = AutoModelForSequenceClassification.from_pretrained("SaherMuhamed/bert-intention-classifier")This project utilizes a fine-tuned BERT model (bert-base-uncased) for intent classification tasks. It is an encoder-only transformer designed to detect user intents from text inputs (e.g., chatbot queries) and classify them into predefined categories such as banking, travel, finance, and more.
The model is trained on the CLINC150 (clinc_oos) dataset and evaluated using accuracy as the primary metric.
The project uses the CLINC150 dataset, a benchmark dataset for intent classification in task-oriented dialogue systems.
clinc_oos
Base model
google-bert/bert-base-uncased