BDR-AI commited on
Commit
405b340
·
verified ·
1 Parent(s): 2e71b62

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +125 -31
README.md CHANGED
@@ -1,33 +1,127 @@
1
  ---
2
- dataset_info:
3
- features:
4
- - name: claim_id
5
- dtype: string
6
- - name: claim_amount
7
- dtype: float64
8
- - name: vehicle_age
9
- dtype: int64
10
- - name: accident_type
11
- dtype: string
12
- - name: police_report
13
- dtype: string
14
- - name: repair_estimate
15
- dtype: float64
16
- - name: prior_claims
17
- dtype: int64
18
- - name: decision
19
- dtype: string
20
- - name: decision_reason
21
- dtype: string
22
- splits:
23
- - name: train
24
- num_bytes: 93731
25
- num_examples: 800
26
- download_size: 23331
27
- dataset_size: 93731
28
- configs:
29
- - config_name: default
30
- data_files:
31
- - split: train
32
- path: data/train-*
33
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ license: mit
3
+ task_categories:
4
+ - tabular-classification
5
+ language:
6
+ - en
7
+ tags:
8
+ - insurance
9
+ - claims
10
+ - decision-support
11
+ - synthetic
12
+ size_categories:
13
+ - n<1K
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
14
  ---
15
+
16
+ # Motor Insurance Claims Decision Support Dataset v1
17
+
18
+ ## Dataset Description
19
+
20
+ This is a **synthetic dataset** designed for training decision support models in motor insurance claims processing. It contains 800 records of motor insurance claims with associated decision labels (approve/review/reject).
21
+
22
+ **Purpose**: Human-in-the-loop claims decision support system training.
23
+
24
+ ## Schema
25
+
26
+ The dataset contains the following fields:
27
+
28
+ | Field | Type | Description |
29
+ |-------|------|-------------|
30
+ | claim_id | string | Unique claim identifier (format: CLM-2025-XXXXXX) |
31
+ | claim_amount | float | Amount claimed by policyholder (USD) |
32
+ | vehicle_age | int | Age of vehicle in years (0-24) |
33
+ | accident_type | category | Type of incident: collision, theft, vandalism, weather_damage, fire |
34
+ | police_report | yes/no | Whether a police report was filed |
35
+ | repair_estimate | float | Professional repair cost estimate (USD) |
36
+ | prior_claims | int | Number of prior claims by policyholder (0-5) |
37
+ | decision | category | Recommended decision: approve, review, reject |
38
+ | decision_reason | text | Plain language explanation for the decision |
39
+
40
+ ## Data Statistics
41
+
42
+ - **Total Records**: 800
43
+ - **Decision Distribution**:
44
+ - Review: 584 (73%)
45
+ - Approve: 178 (22.25%)
46
+ - Reject: 38 (4.75%)
47
+ - **Accident Types**: Evenly distributed across 5 categories
48
+ - **Police Reports**: Yes: 534 (66.75%), No: 266 (33.25%)
49
+
50
+ ## Data Generation Logic
51
+
52
+ The dataset is **fully synthetic** and generated using rule-based logic to ensure consistency:
53
+
54
+ ### Decision Rules Applied:
55
+
56
+ **REJECT criteria**:
57
+ - High claim amount (>$50,000) without police report
58
+ - Excessive prior claims (≥4)
59
+ - Claim amount significantly exceeds repair estimate (>150%)
60
+
61
+ **APPROVE criteria**:
62
+ - Low amount (<$5,000) with police report, clean history, and matching estimates
63
+ - Standard claims with proper documentation and ≤1 prior claim
64
+
65
+ **REVIEW criteria** (default for most cases):
66
+ - High value claims (>$30,000)
67
+ - Theft or fire incidents (require investigation)
68
+ - Old vehicles (>15 years) with high claims
69
+ - Multiple prior claims (≥2)
70
+
71
+ ### Correlations Built In:
72
+ - Newer vehicles tend to have fewer prior claims
73
+ - Serious accidents (theft, fire, collision) more likely to have police reports
74
+ - Repair estimates vary by accident type and vehicle age
75
+ - Claim amounts typically close to repair estimates with normal variation
76
+
77
+ ## Limitations
78
+
79
+ 1. **Synthetic Data**: Not based on real insurance claims; patterns may not reflect actual claim distributions
80
+ 2. **Simplified Rules**: Real-world claims involve many more factors (policy details, fraud indicators, medical reports, etc.)
81
+ 3. **No Temporal Data**: Missing claim dates, processing times, seasonal patterns
82
+ 4. **Limited Geography**: No location-based risk factors
83
+ 5. **No Policy Information**: Missing coverage limits, deductibles, policy type
84
+ 6. **Balanced Accident Types**: Real-world distributions would be skewed
85
+ 7. **No Fraud Indicators**: Missing suspicious pattern detection
86
+ 8. **English Only**: Decision reasons in English only
87
+
88
+ ## Intended Use
89
+
90
+ ✅ **Appropriate Uses**:
91
+ - Training explainable ML models for claims triage
92
+ - Prototyping decision support interfaces
93
+ - Testing model interpretability techniques
94
+ - Educational purposes for insurance AI systems
95
+ - Benchmarking classification algorithms
96
+
97
+ ❌ **Inappropriate Uses**:
98
+ - Production claims processing without human review
99
+ - Actual insurance underwriting decisions
100
+ - Training models for real-world deployment without domain expert validation
101
+ - Any use that could impact real policyholders
102
+
103
+ ## Ethical Considerations
104
+
105
+ - This dataset is for **decision support only**, not autonomous decision-making
106
+ - Human review is mandatory for all claims
107
+ - Models trained on this data should not be used to deny claims without human oversight
108
+ - The synthetic nature means it lacks real-world bias patterns but also lacks real-world complexity
109
+ - No personal or sensitive information is included
110
+
111
+ ## Citation
112
+
113
+ If you use this dataset, please cite:
114
+
115
+ ```
116
+ Motor Insurance Claims Decision Support Dataset v1 (2026)
117
+ Generated for AI decision support system development
118
+ DEEVO AI Organization
119
+ ```
120
+
121
+ ## License
122
+
123
+ MIT License - Free to use for research and development purposes.
124
+
125
+ ## Disclaimer
126
+
127
+ **This dataset is for decision support and training purposes only. All decisions must be reviewed and approved by qualified insurance professionals. This data does not represent real claims and should not be used as the sole basis for any insurance decisions.**