Hello,
When I use ``ProgressMeter.next!(progressbar; showvalues = [(:epoch, epoch), (:acc, acc)])`
I get the following behaviour
Progress: 5%|██ | ETA: 0:00:13
epoch: 1
Progress: 10%|████ | ETA: 0:00:11
epoch: 2
Progress: 15%|██████ | ETA: 0:00:09
epoch: 3
Progress: 20%|████████ | ETA: 0:00:08
epoch: 4
I was expecting a single bar that changed, not multiple of them.
I have tried with @showprogressand it works as expected. This is the output:
fit!(percep, X_train, y_train, 20, 0.001)
Progress: 100%|█████████████████████████████████████████| Time: 0:00:07