Views
No views yet
| Metric | Value |
|---|---|
| Intent Accuracy | 0.93 |
| Recommendation Relevance | 0.88 |
| Nlu F1 | 0.91 |
1from transformers import pipeline
2
3# Load the model
4model = pipeline("text-generation", model="gcc-insurance-intelligence-lab-prod/gcc-insurance-policy-ai")
5
6# Example usage
7result = model("Process this insurance claim...")
8print(result)