BDR-AI commited on
Commit
5cb4c8e
Β·
verified Β·
1 Parent(s): abef836

Enable ZeroGPU for gcc-insurance-ai-hub

Browse files
Files changed (1) hide show
  1. README.md +208 -196
README.md CHANGED
@@ -1,244 +1,256 @@
1
  ---
2
- title: GCC Insurance AI Hub
3
- emoji: 🏒
4
- colorFrom: indigo
5
- colorTo: blue
6
- sdk: gradio
7
- sdk_version: 4.44.0
8
- app_file: app.py
9
- pinned: false
10
- license: mit
11
  ---
12
 
13
- # GCC Insurance AI Hub
14
 
15
- ## Overview
16
 
17
- The **GCC Insurance AI Hub** is a central access point for a collection of insurance AI demonstration tools and datasets. This hub provides links and documentation for all related repositories.
 
 
 
 
 
 
 
 
 
 
 
 
18
 
19
- ---
20
-
21
- ## Disclaimer
22
 
23
- This project models generic insurance concepts common in GCC markets. All datasets are synthetic and made-up for demonstration and research purposes. No proprietary pricing, underwriting rules, policy wording, or confidential logic was used. Outputs are illustrative only and require human review. Not to be used for any pricing, reserving, claim approval, or policy issuance.
24
 
25
- ## Human-In-The-Loop
26
 
27
- No AI component here issues approvals, denials, or financial outcomes. All outputs require human verification and decision-making.
28
 
29
  ---
30
 
31
- ## Available Repositories
32
-
33
- ### 1. Insurance Datasets (Synthetic)
34
-
35
- **Purpose**: Synthetic insurance datasets for testing and development
36
-
37
- **Contents**:
38
- - Claims data (amounts, dates, types)
39
- - Policy information
40
- - Fraud indicators
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
41
 
42
- **Features**:
43
- - Interactive data viewer
44
- - Download capabilities
45
- - Multiple dataset formats
46
 
47
- **Use Cases**:
48
- - Testing applications
49
- - Training and education
50
- - Prototyping analytics
51
 
52
  ---
53
 
54
- ### 2. Fraud Triage Sandbox
55
 
56
- **Purpose**: Rule-based fraud detection demonstration
57
-
58
- **Features**:
59
- - Interactive claim input
60
- - Risk scoring system
61
- - Triage recommendations
62
- - Configurable thresholds
63
-
64
- **Use Cases**:
65
- - Understanding fraud detection
66
- - Testing triage workflows
67
- - Training claims staff
68
 
69
  ---
70
 
71
- ### 3. IFRS 17 Claim Accrual Estimator
72
-
73
- **Purpose**: Actuarial reserve estimation under IFRS 17
74
 
75
- **Features**:
76
- - Chain ladder method
77
- - Risk adjustment
78
- - Present value discounting
79
- - Complete accrual breakdown
80
-
81
- **Use Cases**:
82
- - Learning IFRS 17 concepts
83
- - Understanding actuarial methods
84
- - Reserve estimation demos
85
 
86
  ---
87
 
88
- ### 4. Document RAG Compliance Assistant
 
 
89
 
90
- **Purpose**: Retrieval-Augmented Generation for compliance Q&A
 
 
 
 
 
91
 
92
- **Features**:
93
- - Document retrieval
94
- - Answer generation
95
- - Source transparency
96
- - Multiple compliance topics
97
 
98
- **Use Cases**:
99
- - Compliance Q&A
100
- - Policy guidance
101
- - Knowledge management
 
 
 
102
 
103
  ---
104
 
105
- ## Technology Stack
106
 
107
- - **Framework**: Gradio 4.44.0
108
- - **Language**: Python 3.9+
109
- - **Deployment**: Hugging Face Spaces
110
- - **Libraries**: pandas, numpy (in individual repos)
 
 
 
 
111
 
112
- ## Repository Structure
113
 
 
 
 
114
  ```
115
- gcc-insurance-ai-hub/
116
- β”œβ”€β”€ app.py # Main hub interface
117
- β”œβ”€β”€ requirements.txt # Python dependencies
118
- β”œβ”€β”€ README.md # This file
119
- └── model_card.md # Detailed documentation
120
- ```
121
-
122
- ## Quick Start
123
-
124
- 1. Visit this Hugging Face Space
125
- 2. Browse available repositories
126
- 3. Click on repository links to access demos
127
- 4. Explore interactive features
128
-
129
- ## Important Disclaimers
130
-
131
- ⚠️ **All repositories in this hub:**
132
-
133
- - Use **100% synthetic data**
134
- - Are for **demonstration purposes only**
135
- - Provide **advisory outputs only**
136
- - Should **not be used for production**
137
- - Require **professional guidance for real implementations**
138
-
139
- ### What This Hub Does NOT Include
140
-
141
- - Real insurer names or policies
142
- - Actual customer data
143
- - Proprietary actuarial formulas
144
- - KYC or sensitive fields
145
- - Pricing or quoting functionality
146
- - Production-ready code
147
-
148
- ## Target Audience
149
-
150
- ### Developers
151
- - Test insurance applications
152
- - Prototype workflows
153
- - Learn implementation patterns
154
 
155
- ### Business Analysts
156
- - Understand insurance operations
157
- - Explore AI applications
158
- - Analyze processes
159
-
160
- ### Students & Educators
161
- - Study insurance concepts
162
- - Learn AI/ML in insurance
163
- - Practice with realistic scenarios
164
-
165
- ## Use Case Examples
166
-
167
- **Testing & Development**:
168
- - Use synthetic datasets to test applications
169
- - Prototype fraud detection workflows
170
- - Validate calculation logic
171
-
172
- **Training & Education**:
173
- - Teach insurance operations
174
- - Demonstrate AI capabilities
175
- - Explain regulatory concepts
176
-
177
- **Prototyping & Demos**:
178
- - Showcase potential solutions
179
- - Test user interfaces
180
- - Validate business logic
181
-
182
- ## Compliance & Safety
183
-
184
- ### Data Privacy
185
- - No real personal information
186
- - All data is synthetic
187
- - No GDPR/CCPA concerns
188
-
189
- ### Security
190
- - No sensitive data
191
- - No authentication required
192
- - Public demonstration only
193
-
194
- ### Ethics
195
- - Fair and unbiased examples
196
- - Transparent limitations
197
- - Clear disclaimers
198
-
199
- ## Documentation
200
-
201
- Each repository includes:
202
-
203
- - **README.md**: Overview and usage
204
- - **model_card.md**: Technical details
205
- - **requirements.txt**: Dependencies
206
- - **Utility files**: Supporting code
207
-
208
- ## Repository Links
209
-
210
- Update these links with your actual Hugging Face Space URLs:
211
-
212
- - [Insurance Datasets (Synthetic)](https://huggingface.co/spaces/YOUR_USERNAME/insurance-datasets-synthetic)
213
- - [Fraud Triage Sandbox](https://huggingface.co/spaces/YOUR_USERNAME/fraud-triage-sandbox)
214
- - [IFRS 17 Accrual Estimator](https://huggingface.co/spaces/YOUR_USERNAME/ifrs-claim-accrual-estimator)
215
- - [RAG Compliance Assistant](https://huggingface.co/spaces/YOUR_USERNAME/doc-rag-compliance-assistant)
216
-
217
- ## Future Enhancements
218
 
219
- Potential additions:
220
- - Additional datasets
221
- - More calculators
222
- - Advanced ML models
223
- - Integration examples
224
- - API documentation
225
 
226
- ## Version History
 
 
 
227
 
228
- - **v1.0.0** (January 2026): Initial release with 4 repositories
229
 
230
- ## License
231
 
232
- MIT License
 
 
 
233
 
234
  ---
235
 
236
- **Built by Qoder for Vercept**
237
 
238
- ## Contact
239
-
240
- For questions or feedback, contact Vercept.
241
 
242
  ---
243
 
244
- **For educational and demonstration purposes only**
 
 
 
1
  ---
2
+ title: GCC Insurance Intelligence Lab Hub
3
+ emoji: 🏭
4
+ colorFrom: blue
5
+ colorTo: purple
6
+ sdk: static
7
+ pinned: true
8
+
9
+ hardware: cpu-basic
 
10
  ---
11
 
12
+ # 🏭 GCC Insurance Intelligence Lab
13
 
14
+ ## Available Insurance AI Spaces
15
 
16
+ - [Claims Journey Simulator](https://huggingface.co/spaces/gcc-insurance-intelligence-lab/claims-journey-simulator) - Claims Journey Simulator
17
+ - [Doc Rag Compliance Assistant](https://huggingface.co/spaces/gcc-insurance-intelligence-lab/doc-rag-compliance-assistant) - Doc Rag Compliance Assistant
18
+ - [Fnol Fast Track Screener](https://huggingface.co/spaces/gcc-insurance-intelligence-lab/fnol-fast-track-screener) - Fnol Fast Track Screener
19
+ - [Fraud Audit Log Engine](https://huggingface.co/spaces/gcc-insurance-intelligence-lab/fraud-audit-log-engine) - Fraud Audit Log Engine
20
+ - [Fraud Triage Sandbox](https://huggingface.co/spaces/gcc-insurance-intelligence-lab/fraud-triage-sandbox) - Fraud Triage Sandbox
21
+ - [Gcc Insurance Ai Hub](https://huggingface.co/spaces/gcc-insurance-intelligence-lab/gcc-insurance-ai-hub) - Gcc Insurance Ai Hub
22
+ - [Ifrs Claim Accrual Estimator](https://huggingface.co/spaces/gcc-insurance-intelligence-lab/ifrs-claim-accrual-estimator) - Ifrs Claim Accrual Estimator
23
+ - [Insurance Datasets Synthetic](https://huggingface.co/spaces/gcc-insurance-intelligence-lab/insurance-datasets-synthetic) - Insurance Datasets Synthetic
24
+ - [Premium Lapse Monitor](https://huggingface.co/spaces/gcc-insurance-intelligence-lab/premium-lapse-monitor) - Premium Lapse Monitor
25
+ - [Reinsurance Pricing Mock](https://huggingface.co/spaces/gcc-insurance-intelligence-lab/reinsurance-pricing-mock) - Reinsurance Pricing Mock
26
+ - [Test Use Case](https://huggingface.co/spaces/gcc-insurance-intelligence-lab/test-use-case) - Test Use Case
27
+ - [Underwriting Score Sandbox](https://huggingface.co/spaces/gcc-insurance-intelligence-lab/underwriting-score-sandbox) - Underwriting Score Sandbox
28
+ - [Underwriting Score Sandbox V2](https://huggingface.co/spaces/gcc-insurance-intelligence-lab/underwriting-score-sandbox-v2) - Underwriting Score Sandbox V2
29
 
 
 
 
30
 
31
+ **Welcome to the Insurance AI Factory!**
32
 
33
+ This hub provides access to all insurance AI applications, models, and datasets developed by the GCC Insurance Intelligence Lab.
34
 
35
+ ⚠️ **All content is for educational and research purposes only. Built with 100% synthetic data.**
36
 
37
  ---
38
 
39
+ ## Available Datasets
40
+
41
+ - Insurance Datasets Synthetic - insurance-datasets-synthetic
42
+
43
+
44
+ ## Available Models
45
+
46
+ - Fraud Signal Classifier V1 - fraud-signal-classifier-v1
47
+
48
+
49
+ ## πŸš€ Available Spaces
50
+
51
+ <div style='display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 15px; margin: 20px 0;'>
52
+
53
+ <a href="https://huggingface.co/spaces/gcc-insurance-intelligence-lab/claims-journey-simulator" target="_blank" style="text-decoration: none;">
54
+ <div style="border: 2px solid #4CAF50; border-radius: 10px; padding: 15px; background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); color: white; transition: transform 0.2s;">
55
+ <h3 style="margin: 0 0 10px 0; color: white;">πŸ“ Claims Journey Simulator</h3>
56
+ <p style="margin: 0; font-size: 14px; opacity: 0.9;">title: Claims Journey Simulator</p>
57
+ <div style="margin-top: 10px; font-size: 12px; opacity: 0.8;">
58
+
59
+ </div>
60
+ </div>
61
+ </a>
62
+
63
+ <a href="https://huggingface.co/spaces/gcc-insurance-intelligence-lab/doc-rag-compliance-assistant" target="_blank" style="text-decoration: none;">
64
+ <div style="border: 2px solid #4CAF50; border-radius: 10px; padding: 15px; background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); color: white; transition: transform 0.2s;">
65
+ <h3 style="margin: 0 0 10px 0; color: white;">πŸ“Š Doc Rag Compliance Assistant</h3>
66
+ <p style="margin: 0; font-size: 14px; opacity: 0.9;">title: Document RAG Compliance Assistant</p>
67
+ <div style="margin-top: 10px; font-size: 12px; opacity: 0.8;">
68
+
69
+ </div>
70
+ </div>
71
+ </a>
72
+
73
+ <a href="https://huggingface.co/spaces/gcc-insurance-intelligence-lab/fnol-fast-track-screener" target="_blank" style="text-decoration: none;">
74
+ <div style="border: 2px solid #4CAF50; border-radius: 10px; padding: 15px; background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); color: white; transition: transform 0.2s;">
75
+ <h3 style="margin: 0 0 10px 0; color: white;">πŸ“Š Fnol Fast Track Screener</h3>
76
+ <p style="margin: 0; font-size: 14px; opacity: 0.9;">title: FNOL Fast Track Screener</p>
77
+ <div style="margin-top: 10px; font-size: 12px; opacity: 0.8;">
78
+
79
+ </div>
80
+ </div>
81
+ </a>
82
+
83
+ <a href="https://huggingface.co/spaces/gcc-insurance-intelligence-lab/fraud-audit-log-engine" target="_blank" style="text-decoration: none;">
84
+ <div style="border: 2px solid #4CAF50; border-radius: 10px; padding: 15px; background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); color: white; transition: transform 0.2s;">
85
+ <h3 style="margin: 0 0 10px 0; color: white;">πŸ” Fraud Audit Log Engine</h3>
86
+ <p style="margin: 0; font-size: 14px; opacity: 0.9;">title: Fraud Audit Log Engine</p>
87
+ <div style="margin-top: 10px; font-size: 12px; opacity: 0.8;">
88
+
89
+ </div>
90
+ </div>
91
+ </a>
92
+
93
+ <a href="https://huggingface.co/spaces/gcc-insurance-intelligence-lab/fraud-triage-sandbox" target="_blank" style="text-decoration: none;">
94
+ <div style="border: 2px solid #4CAF50; border-radius: 10px; padding: 15px; background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); color: white; transition: transform 0.2s;">
95
+ <h3 style="margin: 0 0 10px 0; color: white;">πŸ” Fraud Triage Sandbox</h3>
96
+ <p style="margin: 0; font-size: 14px; opacity: 0.9;">title: Fraud Triage Sandbox</p>
97
+ <div style="margin-top: 10px; font-size: 12px; opacity: 0.8;">
98
+
99
+ </div>
100
+ </div>
101
+ </a>
102
+
103
+ <a href="https://huggingface.co/spaces/gcc-insurance-intelligence-lab/ifrs-claim-accrual-estimator" target="_blank" style="text-decoration: none;">
104
+ <div style="border: 2px solid #4CAF50; border-radius: 10px; padding: 15px; background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); color: white; transition: transform 0.2s;">
105
+ <h3 style="margin: 0 0 10px 0; color: white;">πŸ“ Ifrs Claim Accrual Estimator</h3>
106
+ <p style="margin: 0; font-size: 14px; opacity: 0.9;">title: IFRS Claim Accrual Estimator</p>
107
+ <div style="margin-top: 10px; font-size: 12px; opacity: 0.8;">
108
+
109
+ </div>
110
+ </div>
111
+ </a>
112
+
113
+ <a href="https://huggingface.co/spaces/gcc-insurance-intelligence-lab/insurance-datasets-synthetic" target="_blank" style="text-decoration: none;">
114
+ <div style="border: 2px solid #4CAF50; border-radius: 10px; padding: 15px; background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); color: white; transition: transform 0.2s;">
115
+ <h3 style="margin: 0 0 10px 0; color: white;">πŸ“Š Insurance Datasets Synthetic</h3>
116
+ <p style="margin: 0; font-size: 14px; opacity: 0.9;">title: Insurance Datasets Synthetic</p>
117
+ <div style="margin-top: 10px; font-size: 12px; opacity: 0.8;">
118
+ πŸ“Š Dataset
119
+ </div>
120
+ </div>
121
+ </a>
122
+
123
+ <a href="https://huggingface.co/spaces/gcc-insurance-intelligence-lab/premium-lapse-monitor" target="_blank" style="text-decoration: none;">
124
+ <div style="border: 2px solid #4CAF50; border-radius: 10px; padding: 15px; background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); color: white; transition: transform 0.2s;">
125
+ <h3 style="margin: 0 0 10px 0; color: white;">πŸ’° Premium Lapse Monitor</h3>
126
+ <p style="margin: 0; font-size: 14px; opacity: 0.9;">Premium Lapse Monitor</p>
127
+ <div style="margin-top: 10px; font-size: 12px; opacity: 0.8;">
128
+ πŸ€– Model πŸ“Š Dataset
129
+ </div>
130
+ </div>
131
+ </a>
132
+
133
+ <a href="https://huggingface.co/spaces/gcc-insurance-intelligence-lab/reinsurance-pricing-mock" target="_blank" style="text-decoration: none;">
134
+ <div style="border: 2px solid #4CAF50; border-radius: 10px; padding: 15px; background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); color: white; transition: transform 0.2s;">
135
+ <h3 style="margin: 0 0 10px 0; color: white;">πŸ“Š Reinsurance Pricing Mock</h3>
136
+ <p style="margin: 0; font-size: 14px; opacity: 0.9;">title: Reinsurance Pricing Mock</p>
137
+ <div style="margin-top: 10px; font-size: 12px; opacity: 0.8;">
138
+
139
+ </div>
140
+ </div>
141
+ </a>
142
+
143
+ <a href="https://huggingface.co/spaces/gcc-insurance-intelligence-lab/test-use-case" target="_blank" style="text-decoration: none;">
144
+ <div style="border: 2px solid #4CAF50; border-radius: 10px; padding: 15px; background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); color: white; transition: transform 0.2s;">
145
+ <h3 style="margin: 0 0 10px 0; color: white;">πŸ“Š Test Use Case</h3>
146
+ <p style="margin: 0; font-size: 14px; opacity: 0.9;">Test use case for validation</p>
147
+ <div style="margin-top: 10px; font-size: 12px; opacity: 0.8;">
148
+ πŸ€– Model πŸ“Š Dataset
149
+ </div>
150
+ </div>
151
+ </a>
152
+
153
+ <a href="https://huggingface.co/spaces/gcc-insurance-intelligence-lab/underwriting-score-sandbox" target="_blank" style="text-decoration: none;">
154
+ <div style="border: 2px solid #4CAF50; border-radius: 10px; padding: 15px; background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); color: white; transition: transform 0.2s;">
155
+ <h3 style="margin: 0 0 10px 0; color: white;">πŸ“Š Underwriting Score Sandbox</h3>
156
+ <p style="margin: 0; font-size: 14px; opacity: 0.9;">**Educational Underwriting Risk Assessment System**</p>
157
+ <div style="margin-top: 10px; font-size: 12px; opacity: 0.8;">
158
+
159
+ </div>
160
+ </div>
161
+ </a>
162
+
163
+ <a href="https://huggingface.co/spaces/gcc-insurance-intelligence-lab/underwriting-score-sandbox-v2" target="_blank" style="text-decoration: none;">
164
+ <div style="border: 2px solid #4CAF50; border-radius: 10px; padding: 15px; background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); color: white; transition: transform 0.2s;">
165
+ <h3 style="margin: 0 0 10px 0; color: white;">πŸ“Š Underwriting Score Sandbox V2</h3>
166
+ <p style="margin: 0; font-size: 14px; opacity: 0.9;">title: Underwriting Score Sandbox</p>
167
+ <div style="margin-top: 10px; font-size: 12px; opacity: 0.8;">
168
+
169
+ </div>
170
+ </div>
171
+ </a>
172
+
173
+ </div>
174
 
 
 
 
 
175
 
 
 
 
 
176
 
177
  ---
178
 
 
179
 
 
 
 
 
 
 
 
 
 
 
 
 
180
 
181
  ---
182
 
 
 
 
183
 
 
 
 
 
 
 
 
 
 
 
184
 
185
  ---
186
 
187
+ ## πŸ›‘οΈ Governance & Safety
188
+
189
+ ### Core Principles
190
 
191
+ βœ… **Synthetic Data Only**: All models and datasets use 100% synthetic data
192
+ βœ… **Human-in-Loop**: All predictions require human review
193
+ βœ… **Educational Purpose**: For learning and demonstration only
194
+ ❌ **No Production Authority**: Not for actual underwriting, pricing, or payout decisions
195
+ ❌ **No PII**: No personally identifiable information
196
+ ❌ **No Confidential Data**: No real business or customer data
197
 
198
+ ### Disclaimers
 
 
 
 
199
 
200
+ **IMPORTANT**: These applications and models:
201
+ - Are NOT validated for production use
202
+ - Have NO underwriting authority
203
+ - Have NO pricing authority
204
+ - Have NO payout decision authority
205
+ - Must NOT be used with real customer data
206
+ - Require qualified professional oversight
207
 
208
  ---
209
 
210
+ ## πŸ› οΈ Platform Automation
211
 
212
+ This lab features automated:
213
+ - βœ… Repository generation
214
+ - βœ… CI/CD deployment
215
+ - βœ… Model packaging and versioning
216
+ - βœ… Dataset management
217
+ - βœ… Hub synchronization
218
+ - βœ… Code quality enforcement
219
+ - βœ… Governance validation
220
 
221
+ ### Quick Start
222
 
223
+ To add a new use case:
224
+ ```bash
225
+ /add-usecase <use-case-name>
226
  ```
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
227
 
228
+ ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
229
 
230
+ ## πŸ“š Documentation
 
 
 
 
 
231
 
232
+ - [Automation Playbook](./lab-automation-playbook.md)
233
+ - [Developer Guide](./developer-guide.md)
234
+ - [Governance Rules](./governance-rules.md)
235
+ - [Add Use Case Template](./add-usecase-template.md)
236
 
237
+ ---
238
 
239
+ ## πŸ“Š Statistics
240
 
241
+ - **Total Spaces**: 12
242
+ - **Total Models**: 0
243
+ - **Total Datasets**: 0
244
+ - **Last Updated**: 2026-01-08 14:21:35
245
 
246
  ---
247
 
248
+ ## πŸ‘₯ Contact
249
 
250
+ For questions, issues, or contributions, please refer to the individual repository documentation.
 
 
251
 
252
  ---
253
 
254
+ **Status**: 🟒 Production Ready - Insurance AI Factory Mode Activated
255
+
256
+ *Generated automatically by Hub Orchestrator*