Skip to content

Fixing encoder-decoder bugs in [audit 2026-07-09], Add fix-prompt-applier skill - #450

Merged
odunbar merged 14 commits into
mainfrom
orad/audit-fix-2
Aug 6, 2026
Merged

Fixing encoder-decoder bugs in [audit 2026-07-09], Add fix-prompt-applier skill#450
odunbar merged 14 commits into
mainfrom
orad/audit-fix-2

Conversation

@odunbar

@odunbar odunbar commented Jul 29, 2026

Copy link
Copy Markdown
Member

Purpose

Content

Fixes to Close #2, focused on encoder-decoder and robustness

  • is_initialized(...) method checks if DataProcessors have been initialized. If it is, then it throws a warning that the user is using an old processor (allows for reuse of processors, but tells the user in case of mistake)
  • some better rank-stability for CanonicalCorrelation processor
  • decorrelator randomized norm estimator (which does frobenius norm) swapped to trace estimator for consistency with the small matrix setting. Otherwise the criteria for truncating the matrix changes for the small and large dimension setting
  • bugfix an off-by-one error in the stencil for likelihood informed processor
  • extend the MCMC methods to have nonzero mean in processed space.
  • Various robustness catches (e.g. some singular division guards for RF, and encoders, equality bypassing, correctly using passed rngs)

  • I have read and checked the items on the review checklist.

@odunbar odunbar changed the title Fixing encoder-decoder bugs in [audit 2026-07-09] Fixing encoder-decoder bugs in [audit 2026-07-09], Add fix-prompt-applier skill Jul 29, 2026
@codecov

codecov Bot commented Jul 30, 2026

Copy link
Copy Markdown

Codecov Report

✅ All modified and coverable lines are covered by tests.
✅ Project coverage is 95.38%. Comparing base (dc4dea8) to head (e32eb06).

Additional details and impacted files
@@            Coverage Diff             @@
##             main     #450      +/-   ##
==========================================
+ Coverage   95.19%   95.38%   +0.19%     
==========================================
  Files          12       12              
  Lines        2495     2537      +42     
==========================================
+ Hits         2375     2420      +45     
+ Misses        120      117       -3     

☔ View full report in Codecov by Harness.
📢 Have feedback on the report? Share it here.

🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.

odunbar added 5 commits August 3, 2026 13:34
…now using a trace estimate not elementwise-square trace estimate so truncation criteria matches the small-matrix version
@odunbar
odunbar merged commit 8368945 into main Aug 6, 2026
9 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

[audit 2026-07-09] identified a variety of encoder-decoder issues.

1 participant