basnijholt / adaptive

:chart_with_upwards_trend: Tools for adaptive and parallel samping of mathematical functions
http://adaptive.readthedocs.io/
BSD 3-Clause "New" or "Revised" License
0 stars 0 forks source link

Document and test loss function signatures #78

Closed basnijholt closed 5 years ago

basnijholt commented 5 years ago

(original issue on GitLab)

opened by Anton Akhmerov (@anton-akhmerov) at 2018-07-23T19:06:55.212Z

A loss function is a significant part of the interface of each learner. It provides the users with nearly infinite ways to customize the learner's behavior, and it is also the main way for the users to do so.

As a consequence I believe we need to do the following:

basnijholt commented 5 years ago

originally posted by Anton Akhmerov (@anton-akhmerov) at 2018-11-21T20:54:13.437Z on GitLab

Also we probably shouldn't be naming factory functions for loss functions get_XXX_loss.

basnijholt commented 5 years ago

originally posted by Bas Nijholt (@basnijholt) at 2018-12-07T19:21:26.066Z on GitLab

@anton-akhmerov I think we addressed these points (except the second one) recently.

I don't really understand what you mean with

  • We should test whether a learner provides a correct input to the loss function. For example if we say that Learner2D passes an interpolation instance to the loss, we should try and run Learner2D with the loss that verifies that its input is indeed an instance of interpolation. We did not realize this, but loss is a part of the learner's public API.

Should we just check the data type? Is that what you mean? If so, why would this be useful?

basnijholt commented 5 years ago

originally posted by Anton Akhmerov (@anton-akhmerov) at 2018-12-07T20:31:19.691Z on GitLab

I think we addressed these points (except the second one) recently.

I cannot confirm that learners clearly document the loss format.

Did I miss any learner with customizable loss?

basnijholt commented 5 years ago

originally posted by Anton Akhmerov (@anton-akhmerov) at 2018-12-07T20:32:56.682Z on GitLab

Should we just check the data type? Is that what you mean? If so, why would this be useful?

I think that makes sense for the purpose of API stability.