jacinle.utils.tqdm#

Functions

get_current_tqdm()

Get the current tqdm instance.

get_tqdm_defaults()

Get the default kwargs for tqdm.

tqdm(iterable, **kwargs)

Wrapped tqdm, where default kwargs will be load, and support for i in tqdm(10) usage.

tqdm_gofor(iterable, **kwargs)

Create a tqdm progress bar for the given iterable, and use it as the progress bar for jacinle.utils.meta.gofor().

tqdm_pbar(**kwargs)

Create a tqdm progress bar with the given kwargs.

tqdm_zip(*iterable, **kwargs)

Create a tqdm progress bar for a zip of the given iterables, and use it as the progress bar.

Functions

get_current_tqdm()[source]#

Get the current tqdm instance. Only tqdms created by tqdm() will be returned.

get_tqdm_defaults()[source]#

Get the default kwargs for tqdm.

tqdm(iterable, **kwargs)[source]#

Wrapped tqdm, where default kwargs will be load, and support for i in tqdm(10) usage.

tqdm_gofor(iterable, **kwargs)[source]#

Create a tqdm progress bar for the given iterable, and use it as the progress bar for jacinle.utils.meta.gofor().

tqdm_pbar(**kwargs)[source]#

Create a tqdm progress bar with the given kwargs.

tqdm_zip(*iterable, **kwargs)[source]#

Create a tqdm progress bar for a zip of the given iterables, and use it as the progress bar.