I’m using ProgressMeter.jl and I have a Progress
to measure time a task takes. The task has n::Int
total steps, but for each n/10
th or so step a different parameter is used in my process. I would like to be able to display both information, the current percentage, as well as the current parameter’s value. I’ve read the README in detail but either I missed something, or I couldn’t find how to do this if it is possible at all. My approach would be to update the name of the progress bar to reflect current parameter, while the percentage and ETA times stay as they are by default.
Any help?