π Intent Classification Model
This model is a DistilBERT-based classifier trained to recognize user intents for appointment booking scenarios.
It can classify queries into multiple intent categories such as booking, rescheduling, cancellations, and more.
π Model Details
- Model Type:
DistilBERT
- Training Data: 4K+ labeled appointment-related queries
- Framework:
Transformers (Hugging Face)
- Languages:
English
- Dataset Format: JSON
π οΈ How to Use
You can use this model directly with the Transformers library:
from transformers import pipeline
model = "sonisatish119/PhysioMindAI-intent-classification-bert" # Update with your repo name
classifier = pipeline("text-classification", model=model)
query = "Can I book an appointment for next Monday?"
prediction = classifier(query)
print(prediction) # Output: [{'label': 'book_appointment', 'score': 0.98}]
- Downloads last month
- 26
Inference Providers
NEW
This model is not currently available via any of the supported Inference Providers.