Menpo
stable
  • menpo.base
  • menpo.io
  • menpo.image
  • menpo.feature
  • menpo.landmark
  • menpo.math
  • menpo.model
  • menpo.shape
  • menpo.transform
  • menpo.visualize
    • Abstract Classes
    • Patches
    • Print Utilities
      • print_progress
      • print_dynamic
      • progress_bar_str
      • bytes_str
    • Various
  • Changelog
Menpo
  • Docs »
  • menpo.visualize »
  • print_progress
  • Edit on GitHub

print_progress¶

menpo.visualize.print_progress(iterable, prefix='', n_items=None, offset=0, show_bar=True, show_count=True, show_eta=True, end_with_newline=True, min_seconds_between_updates=0.1)[source]¶

Print the remaining time needed to compute over an iterable.

To use, wrap an existing iterable with this function before processing in a for loop (see example).

The estimate of the remaining time is based on a moving average of the last 100 items completed in the loop.

Parameters
  • iterable (iterable) – An iterable that will be processed. The iterable is passed through by this function, with the time taken for each complete iteration logged.

  • prefix (str, optional) – If provided a string that will be prepended to the progress report at each level.

  • n_items (int, optional) – Allows for iterator to be a generator whose length will be assumed to be n_items. If not provided, then iterator needs to be Sizable.

  • offset (int, optional) – Useful in combination with n_items - report back the progress as if offset items have already been handled. n_items will be left unchanged.

  • show_bar (bool, optional) – If False, The progress bar (e.g. [========= ]) will be hidden.

  • show_count (bool, optional) – If False, The item count (e.g. (4/25)) will be hidden.

  • show_eta (bool, optional) – If False, The estimated time to finish (e.g. - 00:00:03 remaining) will be hidden.

  • end_with_newline (bool, optional) – If False, there will be no new line added at the end of the dynamic printing. This means the next print statement will overwrite the dynamic report presented here. Useful if you want to follow up a print_progress with a second print_progress, where the second overwrites the first on the same line.

  • min_seconds_between_updates (float, optional) – The number of seconds that have to pass between two print updates. This allows print_progress to be used on fast iterations without incurring a significant overhead. Set to 0 to disable this throttling.

Raises

ValueError – offset provided without n_items

Examples

This for loop:

from time import sleep
for i in print_progress(range(100)):
    sleep(1)

prints a progress report of the form:

[=============       ] 70% (7/10) - 00:00:03 remaining
Next Previous

© Copyright 2014, Joan Alabort-i-Medina, Epameinondas Antonakos, James Booth, Patrick Snape, and Stefanos Zafeiriou Revision 552b9a04.

Built with Sphinx using a theme provided by Read the Docs.