Giter VIP home page Giter VIP logo

Comments (6)

andyfaff avatar andyfaff commented on June 12, 2024

There's a progress bar for fitting and sampling in the GUI.

In Jupyter notebooks there's a progress bar for the sampling (if you have tqdm installed), but no progress bar for the fitting. This could be implemented at the refnx level, but it'd also be possible for the user to provide a callback function via kwd arguments that are then passed on to the minimizer. This callback could increment it's own progress bar. I would do that by creating a callback class:

class Callback():
    def __init__(self):
        # create/initialise progress bar

    def __call__(self, x):
        # increment progress bar

callback = Callback()
fitter.fit(callback=callback)

from refnx.

andyfaff avatar andyfaff commented on June 12, 2024

What exactly would you want to see in a progress bar/progess update?
With sampling you know how far through the entire thing you are. Sometimes it's not possible with least squares to know when the end is, so you could display:

  • number of iterations, maxiter, time
  • chi2

The difference is that the minimisation will typically end before the end of the progress bar.

from refnx.

jfkcooper avatar jfkcooper commented on June 12, 2024

This is very true, I guess just some level of verbose output, chi2 would be conventional and informative I think. I was looking to see if tqmd could estimate the progress, but wasn't getting so far as am not familiar with it (and only saw it as you seem to have used it for the other progress bars)

from refnx.

andyfaff avatar andyfaff commented on June 12, 2024

For personal use I'd probably create a callback and print chi2 every few iterations.

from refnx.

andyfaff avatar andyfaff commented on June 12, 2024

I suppose it's not a bad idea to add something along these lines. I just need to find a keyword that doesn't clash with the minimizers. I think verbose might work, and it's the same as used for sample.
I still don't know what to display in the progress bar.

from tqdm import tqdm

class Callback():
    def __init__(self, maxiter):
        self.maxiter = maxiter
        self._bar = tqdm(total=self.maxiter)
        self._it = 0

    def __call__(self, x, convergence):
        self._it += 1
        self._bar.update(1)
        self._bar.refresh()

    def __enter__(self):
        return self

    def __exit__(self, exc_type, exc_value, traceback):
        self._bar.close()

fitter = CurveFitter(objective)

with Callback(1000) as c:
    res = fitter.fit('differential_evolution', callback=c)

from refnx.

andyfaff avatar andyfaff commented on June 12, 2024

It's not a simple thing to add, because it would have to wrap any callback that the user provides as well.

from refnx.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.