Instructions to use raghavdw/cci-capstone with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use raghavdw/cci-capstone with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-classification", model="raghavdw/cci-capstone")# Load model directly from transformers import AutoTokenizer, AutoModelForMaskedLM tokenizer = AutoTokenizer.from_pretrained("raghavdw/cci-capstone") model = AutoModelForMaskedLM.from_pretrained("raghavdw/cci-capstone") - Notebooks
- Google Colab
- Kaggle
# Load model directly
from transformers import AutoTokenizer, AutoModelForMaskedLM
tokenizer = AutoTokenizer.from_pretrained("raghavdw/cci-capstone")
model = AutoModelForMaskedLM.from_pretrained("raghavdw/cci-capstone")Quick Links
Airline Customer Service Intelligence Model
Last Updated: 2025-01-07 22:14:37 Using Checkpoint: checkpoint-1170
Model Configuration
- Base: RoBERTa
- Multi-task Classification (Intent, Sentiment, Topic)
- Checkpoint: checkpoint-1170
Usage
from transformers import AutoModelForSequenceClassification, AutoTokenizer
model = AutoModelForSequenceClassification.from_pretrained("raghavdw/cci-capstone")
tokenizer = AutoTokenizer.from_pretrained("raghavdw/cci-capstone")
text = "I need help with my flight booking"
inputs = tokenizer(text, return_tensors="pt")
outputs = model(**inputs)
- Downloads last month
- 2
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-classification", model="raghavdw/cci-capstone")