Similar to :func:`tqdm.tqdm()`, but use tensorpack's default options to have consistent style.
(*args, **kwargs)
| 226 | |
| 227 | |
| 228 | def get_tqdm(*args, **kwargs): |
| 229 | """ Similar to :func:`tqdm.tqdm()`, |
| 230 | but use tensorpack's default options to have consistent style. """ |
| 231 | return tqdm(*args, **get_tqdm_kwargs(**kwargs)) |
| 232 | |
| 233 | |
| 234 | def find_library_full_path(name): |
no test coverage detected