Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -87,3 +87,6 @@ trop_avg_ref/

# Academic papers (local only, not for distribution)
papers/

# Local analysis notebooks (not committed)
analysis/
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,19 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

### Changed
- **BREAKING: TROP nuclear norm solver step size fix** — The proximal gradient
threshold for the L matrix (both `method="global"` and `method="twostep"` with
finite `lambda_nn`) was over-shrinking singular values by a factor of 2. The
soft-thresholding threshold was λ_nn/max(δ) when the correct value is
λ_nn/(2·max(δ)), derived from the Lipschitz constant L_f=2·max(δ) of the
quadratic gradient. This fix produces higher-rank L matrices and closer
agreement with exact convex optimization solutions. Users with finite
`lambda_nn` will observe different ATT estimates. Added FISTA/Nesterov
acceleration to the twostep inner solver for faster L convergence.

## [2.6.1] - 2026-03-08

### Added
Expand Down
Loading
Loading