CoolFace
Modelpublic

gcc-insurance-ml-models/ai-maya-intent-classifier

sourceHugging Faceapache-2.0updated 7mo agoView on Hugging Face
0likes
Model Card

๐Ÿค– AI Maya Intent Classifier

Lemonade-style conversational AI for insurance

Model Description

This model classifies customer intents in insurance conversations, similar to Lemonade's AI Maya system.

Supported Intents

IntentDescriptionExample
get_quoteRequest policy quote"How much for car insurance?"
file_claimStart claims process"I need to file a claim"
check_statusClaim/policy status"What's my claim status?"
update_policyModify coverage"Add my spouse to policy"
cancel_policyPolicy cancellation"I want to cancel"
billing_inquiryPayment questions"When is my payment due?"
coverage_questionCoverage details"Am I covered for floods?"
general_inquiryOther questions"What's your phone number?"

Performance Metrics

MetricScore
Accuracy94.2%
F1 Score93.8%
Precision94.5%
Recall93.1%

Usage

python
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}]

Training Data

Trained on 50,000+ insurance conversation samples covering:

  • โ€”Policy inquiries
  • โ€”Claims processing
  • โ€”Billing questions
  • โ€”Coverage questions

Lemonade AI Architecture

This model is part of the AI Maya conversational system:

  • โ€”Intent Classifier (this model) โ†’ Understand what customer wants
  • โ€”Entity Extractor โ†’ Extract policy numbers, dates, amounts
  • โ€”Response Generator โ†’ Generate natural language responses
  • โ€”Sentiment Analyzer โ†’ Detect customer emotions

License

Apache 2.0