Skip to content

Commit 380691e

Browse files
committed
fix: calibrate Section 2 quality scoring thresholds for realistic assessment
- Adjust quality thresholds to be more realistic for clean datasets - Excellent: 95→90, Good: 85→80, Fair: 70→65, Needs Improvement: 50→45 - Clean datasets now receive appropriate 'Good' or 'Excellent' ratings - Addresses testing feedback about clean datasets being scored too harshly Verified: Clean test dataset scores 88.1/100 = 'Good' (vs 'Fair' with old thresholds)
1 parent 2791eae commit 380691e

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/core/config.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -361,10 +361,10 @@ export const DEFAULT_CONFIG: DataPilotConfig = {
361361
representational: 0.01,
362362
},
363363
qualityThresholds: {
364-
excellent: 95,
365-
good: 85,
366-
fair: 70,
367-
needsImprovement: 50,
364+
excellent: 90,
365+
good: 80,
366+
fair: 65,
367+
needsImprovement: 45,
368368
},
369369
duplicateThresholds: {
370370
exactDuplicateThreshold: 1.0,

0 commit comments

Comments
 (0)