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

Introduce AbstractApproximationMethod #177

Merged
merged 17 commits into from
Dec 15, 2023
Merged

Conversation

kellertuer
Copy link
Member

@kellertuer kellertuer commented Dec 13, 2023

This PR tackles a discussion from JuliaManifolds/Manifolds.jl#661 and introduces the AbstractEstimationMethod already here in ManifoldsBase.jl

There are two changes I modelled here as well while rethinking this concept a bit

  • The ExtrinsicEstimation now stores another method internally which method to use in the embedding. We could maybe even rename it to EmbeddedEstimation
  • the retraction, inverse retraction and vector transport method types are now subtypes of this type, since all of them are estimates (of eco, log and parallel transport, resp.)
  • there is a new default_estimation_method with 3 parameters: a manifold, a function and a type. The function is to distinguish (possibly) different methods for every function – the T similar to the three methods above to distinguish different point representations.

The new method default_estimation_method falls back to the existing default methods like default_retraction_method when providing retract or retract! as a function.

If this design is fine (feedback wanted :) ), I can implement the necessary tests (though that is a bit of work I think).

With this available, the mean/median in in manifolds might become nicer, but especially in Manopt one can specify the mean method more fine granular, eg. in Nelder-Mead.

ToDo

  • introduce estimation methods already in ManifoldsBase.jl and make it a super type of existing methods
  • add their doc strings to the documentation
  • introduce a new default_estifmation_method(M[, f, T)
  • introduce fallbacks of the method from the last point for existing default functions
  • Test coverage.

Copy link

codecov bot commented Dec 13, 2023

Codecov Report

All modified and coverable lines are covered by tests ✅

Comparison is base (f5d3189) 99.96% compared to head (8f11a9a) 99.96%.

Additional details and impacted files
@@           Coverage Diff           @@
##           master     #177   +/-   ##
=======================================
  Coverage   99.96%   99.96%           
=======================================
  Files          26       27    +1     
  Lines        3068     3093   +25     
=======================================
+ Hits         3067     3092   +25     
  Misses          1        1           

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

@kellertuer
Copy link
Member Author

I had a bit of time so I did the testing real quick. I think I like the way this turned out, so I will switch the tags :)

@kellertuer kellertuer added Ready-for-Review A label for pull requests that are feature-ready and removed discussion labels Dec 13, 2023
@kellertuer kellertuer added the preview docs Add this label if you want to see a PR-preview of the documentation label Dec 13, 2023
@mateuszbaran
Copy link
Member

Thanks for starting this!

  • The ExtrinsicEstimation now stores another method internally which method to use in the embedding. We could maybe even rename it to EmbeddedEstimation

That's fine, though I have never had the need for this much generality.

  • the retraction, inverse retraction and vector transport method types are now subtypes of this type, since all of them are estimates (of eco, log and parallel transport, resp.)

Well, I wouldn't call that estimation. Estimation is for inferring parameters of a statistical model. Retractions, inverse retractions and vector transports may be called approximation methods, but even that is not entirely appropriate for ExponentialRetraction for example.

  • there is a new default_estimation_method with 3 parameters: a manifold, a function and a type. The function is to distinguish (possibly) different methods for every function – the T similar to the three methods above to distinguish different point representations.

This is also fine, except I wouldn't convert retractions, inverse retractions and vector transports to this scheme because they are not for estimation.

@kellertuer
Copy link
Member Author

Well, a retraction is an estimation method for the exponential map. I am also not sure this is something I will need somewhen soon, but it fits the scheme quite nicely I think.

And yes, ExponentialRetraction is the one case I thought of a well when I was thinking about how to best write that the mean on Euclidean is exact – where wet would also need an estimation type that specifies that it is exact.

@mateuszbaran
Copy link
Member

Well, a retraction is an estimation method for the exponential map. I am also not sure this is something I will need somewhen soon, but it fits the scheme quite nicely I think.

Could you give a reference for calling retraction an estimation method?

@kellertuer
Copy link
Member Author

Absil, Mahony, Sepulchre (2008) write (p. 56, l. 14): “The exponential mapping is, in the geometric sense, the most natural retraction to use” and later in that paragraph (after tiling about the exp to be expensive) “These drawbacks are an invitation to consider alternatives in the form of approximations to the exponential that are computationally cheap without jeopardising the convergence properties of the optimization schemes”

Sure, Boumal (2023) works much more with retractions and the exponential map is just a special retraction (third order).

I would still consider exp/log/parallel transport as the “most natural” way to do plus / minus / move tangents and then you can (cf. check_retraction in Manopt/Matlab here) check whether a retraction is a retraction, when it is a first-order approximation of the exponential map.

@mateuszbaran
Copy link
Member

These references just support my point of view that they are approximation methods, not estimation methods.

@kellertuer
Copy link
Member Author

Ah, I misread your post then and for me estimation and approximation are not so far from each other. But sure, if you prefer to keep them separate I can undo that common super type for them all. would just reduce the code lines a bit again.

@kellertuer
Copy link
Member Author

kellertuer commented Dec 14, 2023

To be precise what I had in mind is (google, dictionary Oxford)

to estimate – an approximate calculation or of the value, number, quantity, or extent of something.
"at a rough estimate, staff are recycling a quarter of paper used"

And hence considered approximation a more precise noun where estimate is a super type (since it might also include not-so-mathematical ways of estimation).

edit: And design wise – this would join all our 4 method of estimation/approximation in one super type – generic ones / retractions / inverse retractions / vector transports. I do not directly see a use case for this but it is maybe nice to have.

@mateuszbaran
Copy link
Member

For technical terms it's better to use technical definitions, not general dictionaries. For example Wikipedia has a definition of estimation that I agree with: https://en.wikipedia.org/wiki/Estimator#Definition . On the other hand, approximation is used when describing a procedure related to a deterministic function (like retraction/inverse retraction/vector transport). One could argue that different estimation methods may want to approximate the MVU estimator, so just renaming AbstractEstimationMethod to AbstractApproximationMethod would be fine with me. Or we could keep both abstract types separate.

@kellertuer
Copy link
Member Author

Hm, yeah, one could argue that if the mean is the estimator, then we are approximating the estimate ;)

I would be fine with AbstractApproximationMethod with exactly the interpretation above, we could even use ExactEstimator for the mean on Euclidean then.

@mateuszbaran
Copy link
Member

OK, though I wouldn't use the name ExactEstimator there.

@kellertuer
Copy link
Member Author

Yes it sounds as strange as the ExponentialRetraction sounds to me, but we need a way to say that the mean-estimator on Euclidean is not approximated further (like the mean manifold estimator is approximated by a gradient descent for example)

@kellertuer kellertuer changed the title Introduce AbstractEstimationMethod Introduce AbstractApproximationMethod Dec 14, 2023
@kellertuer
Copy link
Member Author

Two further points: Should the Estimation structs/methods then be called Approximation? I think that would just fit.

For the exact estimator (in the statistical sense) without approximation it would still be nice to have a name.

@mateuszbaran
Copy link
Member

, but we need a way to say that the mean-estimator on Euclidean is not approximated further

I see but maybe it would be better to call it EfficientEstimator: https://en.wikipedia.org/wiki/Efficiency_(statistics) ?

@kellertuer
Copy link
Member Author

I still think it does not hit that completely, but I am also not a statistician.

@kellertuer
Copy link
Member Author

I thought a bit about the concrete types, I think to keep Manifolds non-breaking we should maybe keep their names as is.

Since I do not have a better idea, maybe we can also introduce your name as the exact/efficient one and document it accordingly.

@mateuszbaran
Copy link
Member

I thought a bit about the concrete types, I think to keep Manifolds non-breaking we should maybe keep their names as is.

We can keep the old name as a deprecated alias.

src/approximation_methods.jl Outdated Show resolved Hide resolved
src/approximation_methods.jl Outdated Show resolved Hide resolved
src/approximation_methods.jl Show resolved Hide resolved
src/approximation_methods.jl Outdated Show resolved Hide resolved
src/approximation_methods.jl Outdated Show resolved Hide resolved
src/approximation_methods.jl Outdated Show resolved Hide resolved
src/approximation_methods.jl Outdated Show resolved Hide resolved
src/approximation_methods.jl Outdated Show resolved Hide resolved
src/retractions.jl Outdated Show resolved Hide resolved
Co-authored-by: Mateusz Baran <mateuszbaran89@gmail.com>
@kellertuer
Copy link
Member Author

We can keep the old name as a deprecated alias.

There is only two changes, the abstract type changed its name and the extrinsic one now has a field for the method to extrinsically use, since that is nicer to work with – we can use GeodesicIngterpolation as a default since that was the implicit one used for now. Then also that is nonbreaking.

I am also fine with the Estimation names, since they are still closer to what we use the things currently, namely in statistics. But we can also switch to Approximation names – and do the consts as you said – in Manifolds, I am also ok with that.

@kellertuer
Copy link
Member Author

There is two things to check here

  • should the manifold-default be there? I would prefer that, it makes it possible to set a default for all methods on manifolds with one definition.
  • should the default function be a trait function? I think that would be nice.

Concerning the naming - the new scheme here is now slightly different from the one in Manifolds.jl – but we can just introduce either const's or deprecation warning, depending on what fits better, so the adaption therein can be made non-breaking.

@kellertuer
Copy link
Member Author

For now I did not make the function a trait function. Should it be? That would be the last point to add here before we merge an register.

@mateuszbaran
Copy link
Member

I don't really have a strong preference about it being a trait function. I can see arguments both for and against.

@kellertuer
Copy link
Member Author

Since that is easier – we could go for “we make it a trait function when necessary.” and leave it as is for now.

I will check test coverage here, still.

@kellertuer kellertuer merged commit 65780dc into master Dec 15, 2023
15 checks passed
@kellertuer kellertuer deleted the kellertuer/estimation-method branch May 4, 2024 17:41
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
preview docs Add this label if you want to see a PR-preview of the documentation Ready-for-Review A label for pull requests that are feature-ready
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants