Text Classification
PEFT
Safetensors
Transformers
Hindi
English
lora
intent-classification
hinglish
code-mixed
nlu
voice-agent
Instructions to use yashasvijadav03/hinglish-intent-classifier with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- PEFT
How to use yashasvijadav03/hinglish-intent-classifier with PEFT:
from peft import PeftModel from transformers import AutoModelForSequenceClassification base_model = AutoModelForSequenceClassification.from_pretrained("distilbert-base-multilingual-cased") model = PeftModel.from_pretrained(base_model, "yashasvijadav03/hinglish-intent-classifier") - Transformers
How to use yashasvijadav03/hinglish-intent-classifier with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-classification", model="yashasvijadav03/hinglish-intent-classifier")# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("yashasvijadav03/hinglish-intent-classifier", device_map="auto") - Notebooks
- Google Colab
- Kaggle
Welcome to the community
The community tab is the place to discuss and collaborate with the HF community!