diff options
author | xAlpharax <42233094+xAlpharax@users.noreply.github.com> | 2023-03-04 03:29:19 +0200 |
---|---|---|
committer | xAlpharax <42233094+xAlpharax@users.noreply.github.com> | 2023-03-04 03:29:19 +0200 |
commit | d48a55f41188ac3cba7202c3ccfe74e5d8203b69 (patch) | |
tree | e51995fcd85f7b62254d5e29821058e0c484013f /neuralart.py | |
parent | bd19b46d7544ff94be0e8eaccb4e1bd18d44b996 (diff) |
Minor changes for the user's script.
Diffstat (limited to 'neuralart.py')
-rw-r--r-- | neuralart.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/neuralart.py b/neuralart.py index ebbbb94..2495da8 100644 --- a/neuralart.py +++ b/neuralart.py @@ -243,7 +243,7 @@ n_iter = [0] image_array = [] -with tqdm(total=max_iter) as pbar: +with tqdm(total=max_iter, miniters=0, smoothing=0) as pbar: while n_iter[0] <= max_iter - 9: # weird behavior here def closure(): |