RP-19: Implement correlation scoring model#15
Merged
Conversation
…ons and confidence - Add ScoringStrategy ABC and WeightedProbabilisticScorer with strategy-weight attenuation (weighted = 1 - (1 - raw * weight)) and probabilistic union composite. - Add ConfidenceScorer combining composite (40%), diversity (30%), coverage (20%), and recency (10%) factors into a [0, 1] confidence score. - Add ScoringPipeline orchestrating BFS group detection, weighted scoring, and confidence computation in one flow. - Refactor CorrelationPipeline._merge_into_groups to delegate to ScoringPipeline. - Add confidence and contributions fields to CorrelationGroup for explainable output. - Unify ScoreContribution model (canonical in correlation/models, re-exported through scoring/models) to avoid Pydantic type mismatch. - Add 20 tests covering scorer, confidence factors, and pipeline integration. - All 250 tests pass; ruff and mypy clean.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
feat(correlation): weighted scoring model with explainable contributions and confidence