Text Classification
Transformers
Safetensors
English
bert
mbert
intent-classification
nlp
text-embeddings-inference
Instructions to use tyaisndu/mbert_intent_model_v3 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use tyaisndu/mbert_intent_model_v3 with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-classification", model="tyaisndu/mbert_intent_model_v3")# Load model directly from transformers import AutoTokenizer, AutoModelForSequenceClassification tokenizer = AutoTokenizer.from_pretrained("tyaisndu/mbert_intent_model_v3") model = AutoModelForSequenceClassification.from_pretrained("tyaisndu/mbert_intent_model_v3") - Notebooks
- Google Colab
- Kaggle
mBERT Intent Classification Model (v3)
This model is a fine-tuned version of Multilingual BERT (mBERT) for intent classification tasks.
It predicts the intent of a given user input sentence, making it suitable for chatbot, virtual assistant, and NLP applications.
π Model Details
- Model Type: Text Classification
- Base Model: bert-base-multilingual-cased
- Framework: Hugging Face Transformers
- Task: Intent Classification
- Version: v3
π― Use Cases
- Chatbots / Virtual Assistants
- Customer support automation
- Banking / fintech intent detection
- Query classification systems
π§ Labels
β οΈ Update this section based on your actual labels
Example:
| ID | Label |
|---|---|
| 0 | greeting |
| 1 | check_balance |
| 2 | transfer_money |
| 3 | goodbye |
π οΈ How to Use
Load Model & Tokenizer
from transformers import AutoTokenizer, AutoModelForSequenceClassification
import torch
model_id = "tyaisndu/mbert_intent_model_v3"
tokenizer = AutoTokenizer.from_pretrained(model_id)
model = AutoModelForSequenceClassification.from_pretrained(model_id)
- Downloads last month
- 2