gcc-insurance-ml-models/nlp-claims-processing
Viewer β’ Updated β’ 5k β’ 56
Lemonade-style conversational AI for insurance
This model classifies customer intents in insurance conversations, similar to Lemonade's AI Maya system.
| Intent | Description | Example |
|---|---|---|
get_quote |
Request policy quote | "How much for car insurance?" |
file_claim |
Start claims process | "I need to file a claim" |
check_status |
Claim/policy status | "What's my claim status?" |
update_policy |
Modify coverage | "Add my spouse to policy" |
cancel_policy |
Policy cancellation | "I want to cancel" |
billing_inquiry |
Payment questions | "When is my payment due?" |
coverage_question |
Coverage details | "Am I covered for floods?" |
general_inquiry |
Other questions | "What's your phone number?" |
| Metric | Score |
|---|---|
| Accuracy | 94.2% |
| F1 Score | 93.8% |
| Precision | 94.5% |
| Recall | 93.1% |
from transformers import pipeline
classifier = pipeline("text-classification", model="gcc-insurance-ml-models/ai-maya-intent-classifier")
result = classifier("I was in a car accident and need to file a claim")
# Output: [{'label': 'file_claim', 'score': 0.97}]
Trained on 50,000+ insurance conversation samples covering:
This model is part of the AI Maya conversational system:
Apache 2.0