jacinle.utils.tqdm#
Functions
Get the current tqdm instance. |
|
Get the default kwargs for tqdm. |
|
|
Wrapped tqdm, where default kwargs will be load, and support for i in tqdm(10) usage. |
|
Create a tqdm progress bar for the given iterable, and use it as the progress bar for |
|
Create a tqdm progress bar with the given 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.
- 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()
.