Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove gradient #3

Open
wants to merge 12 commits into
base: master
Choose a base branch
from
Open

Remove gradient #3

wants to merge 12 commits into from

Conversation

lostella
Copy link
Member

The idea is to remove the gradient operation from the API that this package exposes. Reasons:

  • it’s not always ideal to compute function value and gradient together, for example in line-search methods one usually wants to evaluate a bunch of function values only, and then a gradient at the end; a better interface would give f(x) and a closure to evaluate the gradient additionally (“backward pass”)
  • this package and packages implementing the interface should be about proximal maps, as autodiff packages and interfaces exist that allow injecting all sorts of custom backward passes, and client packages should rely on those
  • there no dependent on this package other than ProximalOperators and ProximalAlgorithms at the moment, so breaking now is essentially harm-free

Follow up plan:

  • remove gradient computations from ProximalOperators
  • bump dependency of ProximalAlgorithms on ProximalCore, update interface for gradient computation there

@lostella lostella added the breaking This is a breaking change label Dec 29, 2023
Copy link

codecov bot commented Dec 29, 2023

Codecov Report

All modified and coverable lines are covered by tests ✅

Comparison is base (3da5fec) 95.91% compared to head (7d503fc) 97.61%.

Additional details and impacted files
@@            Coverage Diff             @@
##           master       #3      +/-   ##
==========================================
+ Coverage   95.91%   97.61%   +1.70%     
==========================================
  Files           1        1              
  Lines          49       42       -7     
==========================================
- Hits           47       41       -6     
+ Misses          2        1       -1     

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

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
breaking This is a breaking change
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

1 participant