百度360必应搜狗淘宝本站头条
当前位置:网站首页 > 技术资源 > 正文

Python进度条tqdm你值得拥有(python2 进度条)

off999 2024-09-14 07:15 68 浏览 0 评论

前言

之所以了解到了这个,是因为使用了一个依赖tqdm的包,然后好奇就查了一下。对于python中的进度条也是经常使用的,例如包的安装,一些模型的训练也会通过进度条的方式体现在模型训练的进度。总之,使用进度条能够更加锦上添花,提升使用体验吧。至于更多tqdm内容可以参考tqdm官网[1]下面就来看看吧。

tqdm

1 简单了解

先来看看效果,使用循环显示一个智能的进度条-只需用tqdm(iterable)包装任何可迭代就可完成,如下:

tqdm运行

相关代码如下:

import tqdm
import time


for i in tqdm.tqdm(range(1000)):
    time.sleep(0.1)

官方也给了一张图,来看看:

run2

看起来还不错吧,现在我们详细地了解一下。

2 使用

安装就不用说了,使用pip install tqdm即可。tqdm主要有以下三种用法。

2.1 基于迭代器的(iterable-based)

使用案例如下,使用tqdm()传入任何可迭代的参数:

from tqdm import tqdm
from time import sleep


text = ""
for char in tqdm(["a", "b", "c", "d"]):
    sleep(0.25)
    text = text + char

tqdm(range(i))的一个特殊优化案例:

from time import sleep
from tqdm import trange

for i in trange(100):
    sleep(0.01)

这样就可以不同传入range(100)这样的迭代器了,trange()自己去构建。 除此之外,可以用tqdm()在循环外手动控制一个可迭代类型,如下:

pbar = tqdm(["a", "b", "c", "d"])
for char in pbar:
    sleep(0.25)
    pbar.set_description("Processing %s" % char)

这里还使用了.set_description(),结果如下:

Processing d: 100%|██████████| 4/4 [00:01<00:00,  3.99it/s]

相关参数容后再介绍。

2.2 手工操作(Manual)

使用with语句手动控制tqdm的更新,可以根据具体任务来更新进度条的进度。

with tqdm(total=100) as pbar:
    for i in range(10):
        sleep(0.1)
        pbar.update(10)

当然with这个语句想必大家都知道(想想使用with打开文件就知道了),也可以不使用with进行,则有如下操作:

pbar = tqdm(total=100)
for i in range(10):
    sleep(0.1)
    pbar.update(10)
pbar.close()

那么这个时候,就不要忘了在结束后关闭,或者del tqdm对象了。

2.3 模块(Module)

也许tqdm的最妙用法是在脚本中或在命令行中。只需在管道之间插入tqdm(或python -m tqdm),即可将所有stdin传递到stdout,同时将进度打印到stderr。具体如何操作,我们来看看,下面也是官方给出的例子。 以下示例演示了对当前目录中所有Python文件中的行数进行计数,其中包括计时信息。(为了能够在windows系统中使用linux命令,这是使用git打开),也是当前项目路径。

time find . -name '*.py' -type f -exec cat \{} \; | wc -l

linux命令补充: time[2]find[3](-exec 使用其后参数操作查找到的文件);wc[4].

使用tqdm命令来试一试:

time find . -name '*.py' -type f -exec cat \{} \; | tqdm | wc -l

则有:

tqdm

注意,也可以指定tqdm的常规参数。如下:

就暂时说到这吧,感觉内容有点超纲了,如果对tqdm有兴趣的话可以访问官方文档深入了解。

3 参数

官方的类初始化代码如下:

class tqdm():
  """
  Decorate an iterable object, returning an iterator which acts exactly
  like the original iterable, but prints a dynamically updating
  progressbar every time a value is requested.
  """

  def __init__(self, iterable=None, desc=None, total=None, leave=True,
               file=None, ncols=None, mininterval=0.1,
               maxinterval=10.0, miniters=None, ascii=None, disable=False,
               unit='it', unit_scale=False, dynamic_ncols=False,
               smoothing=0.3, bar_format=None, initial=0, position=None,
               postfix=None, unit_divisor=1000):

官方对各个参数介绍如下:

Parameters
        ----------
        iterable  : iterable, optional
            Iterable to decorate with a progressbar.
            Leave blank to manually manage the updates.
        desc  : str, optional
            Prefix for the progressbar.
        total  : int, optional
            The number of expected iterations. If unspecified,
            len(iterable) is used if possible. If float("inf") or as a last
            resort, only basic progress statistics are displayed
            (no ETA, no progressbar).
            If `gui` is True and this parameter needs subsequent updating,
            specify an initial arbitrary large positive integer,
            e.g. int(9e9).
        leave  : bool, optional
            If [default: True], keeps all traces of the progressbar
            upon termination of iteration.
        file  : `io.TextIOWrapper` or `io.StringIO`, optional
            Specifies where to output the progress messages
            (default: sys.stderr). Uses `file.write(str)` and `file.flush()`
            methods.  For encoding, see `write_bytes`.
        ncols  : int, optional
            The width of the entire output message. If specified,
            dynamically resizes the progressbar to stay within this bound.
            If unspecified, attempts to use environment width. The
            fallback is a meter width of 10 and no limit for the counter and
            statistics. If 0, will not print any meter (only stats).
        mininterval  : float, optional
            Minimum progress display update interval [default: 0.1] seconds.
        maxinterval  : float, optional
            Maximum progress display update interval [default: 10] seconds.
            Automatically adjusts `miniters` to correspond to `mininterval`
            after long display update lag. Only works if `dynamic_miniters`
            or monitor thread is enabled.
        miniters  : int, optional
            Minimum progress display update interval, in iterations.
            If 0 and `dynamic_miniters`, will automatically adjust to equal
            `mininterval` (more CPU efficient, good for tight loops).
            If > 0, will skip display of specified number of iterations.
            Tweak this and `mininterval` to get very efficient loops.
            If your progress is erratic with both fast and slow iterations
            (network, skipping items, etc) you should set miniters=1.
        ascii  : bool or str, optional
            If unspecified or False, use unicode (smooth blocks) to fill
            the meter. The fallback is to use ASCII characters " 123456789#".
        disable  : bool, optional
            Whether to disable the entire progressbar wrapper
            [default: False]. If set to None, disable on non-TTY.
        unit  : str, optional
            String that will be used to define the unit of each iteration
            [default: it].
        unit_scale  : bool or int or float, optional
            If 1 or True, the number of iterations will be reduced/scaled
            automatically and a metric prefix following the
            International System of Units standard will be added
            (kilo, mega, etc.) [default: False]. If any other non-zero
            number, will scale `total` and `n`.
        dynamic_ncols  : bool, optional
            If set, constantly alters `ncols` to the environment (allowing
            for window resizes) [default: False].
        smoothing  : float, optional
            Exponential moving average smoothing factor for speed estimates
            (ignored in GUI mode). Ranges from 0 (average speed) to 1
            (current/instantaneous speed) [default: 0.3].
        bar_format  : str, optional
            Specify a custom bar string formatting. May impact performance.
            [default: '{l_bar}{bar}{r_bar}'], where
            l_bar='{desc}: {percentage:3.0f}%|' and
            r_bar='| {n_fmt}/{total_fmt} [{elapsed}<{remaining}, '
              '{rate_fmt}{postfix}]'
            Possible vars: l_bar, bar, r_bar, n, n_fmt, total, total_fmt,
              percentage, rate, rate_fmt, rate_noinv, rate_noinv_fmt,
              rate_inv, rate_inv_fmt, elapsed, elapsed_s, remaining,
              remaining_s, desc, postfix, unit.
            Note that a trailing ": " is automatically removed after {desc}
            if the latter is empty.
        initial  : int, optional
            The initial counter value. Useful when restarting a progress
            bar [default: 0].
        position  : int, optional
            Specify the line offset to print this bar (starting from 0)
            Automatic if unspecified.
            Useful to manage multiple bars at once (eg, from threads).
        postfix  : dict or *, optional
            Specify additional stats to display at the end of the bar.
            Calls `set_postfix(**postfix)` if possible (dict).
        unit_divisor  : float, optional
            [default: 1000], ignored unless `unit_scale` is True.
        write_bytes  : bool, optional
            If (default: None) and `file` is unspecified,
            bytes will be written in Python 2. If `True` will also write
            bytes. In all other cases will default to unicode.
        gui  : bool, optional
            WARNING: internal parameter - do not use.
            Use tqdm_gui(...) instead. If set, will attempt to use
            matplotlib animations for a graphical output [default: False].

更多功能则可根据以上参数发挥你的想象力了。

参考资料

[1] tqdm官网: https://pypi.org/project/tqdm/

[2] time: https://www.runoob.com/linux/linux-comm-time.html

[3] find: https://www.runoob.com/linux/linux-comm-find.html

[4] wc: https://www.runoob.com/linux/linux-comm-wc.html

相关推荐

win10播放器(win10播放器怎么调倍速)

在Win10操作系统中,有许多好用的播放器可供选择。其中,VLC媒体播放器是最受欢迎的选择之一。VLC拥有多种音频和视频格式的广泛支持,无需额外下载解码器即可播放多媒体文件。其简单直观的用户界面使得操...

召唤系统抽奖(召唤系统抽奖游戏攻略)

你好,要召唤抽奖系统中的人物,您可以按照以下步骤操作:1.在抽奖系统中添加人物:您需要在系统中添加您想要召唤的人物。通常,您需要提供人物的名称、照片和描述等信息。2.设置抽奖规则:在设置抽奖规则时...

windows10 windows7(windows10windows7区别)

1、功能上:Win10更为强大,新建桌面,根据不同的使用状态分开建立不同桌面;增强搜索模式可以搜索更多内容;全新的便签应用将支持跨设备同步,从PC到手机;同时还支持无密码登陆,允许用户不再设置独立pi...

u盘怎么重新量产(u盘重新量产详细教程)

U盘可以通过使用专门的U盘量产工具来进行量产。一般来说,我们需要下载并安装U盘量产工具,并将需要量产的U盘通过USB接口连接到计算机上,然后按照U盘量产工具的操作提示进行设置和操作即可完成量产。需要注...

如何彻底关闭防火墙(怎样彻底关闭防火墙)

彻底关闭防火墙需要在计算机的系统设置中进行操作。首先,打开“控制面板”,找到“WindowsDefender防火墙”选项,并点击进入。在防火墙设置页面,选择“关闭WindowsDefender...

宽带和路由器的区别(什么路由器好用信号强稳定性好)

宽带路由器和无线路由器虽然都是路由器,但它们在功能和用途上存在一些区别。首先,宽带路由器是指一种将宽带网线转换成局域网的高速设备。它可以对每个端口进行独立且限速的连接,将网络资源按照需要进行分配,使得...

联想笔记本电脑怎么格式化(联想笔记本电脑怎么格式化恢复出厂设置)
联想笔记本电脑怎么格式化(联想笔记本电脑怎么格式化恢复出厂设置)

联想电脑怎么格式化1.在桌面我的电脑图标上右键鼠标选择【属性】。2.在属性界面点击左上角的【主页】按钮。3.在主页设置中选择【更新与安全】,点击进入。4.在更新与安全中选择【恢复】-【重置电脑】,点击【开始】按钮即可。一、首先,打开要进行格...

2025-12-02 13:03 off999

电脑启动后蓝屏是什么原因(电脑启动后是蓝屏的怎么办呢)

一、不稳定的硬件设备导致蓝屏当我们的电脑硬件设备出现问题时,很可能导致电脑蓝屏。例如,内存条损坏、硬盘故障或者显卡驱动不兼容等都有可能引发蓝屏。这些问题可能导致电脑在运行过程中无法正常工作,从而导致系...

电脑无桌面显示怎么办(电脑屏幕无桌面)
电脑无桌面显示怎么办(电脑屏幕无桌面)

1打开电脑,在底部任务栏,单击鼠标右键,出现菜单后,点击显示桌面2如图所示,已经显示桌面了3第二种方法,在桌面空白处,单击鼠标右键,出现菜单后,点击查看-显示桌面图标4如图所示,已经显示桌面了。应该是在电脑当中的设置没有设置好造成的,你可以...

2025-12-02 12:03 off999

系统u盘安装(win11系统u盘安装)

简单的U盘装系统的方法如下。1.打开咔咔装机,下载装机软件,打开该软件。2.点击“U盘模式”,选择参数,点击开始制作,制作完成后重启电脑。3.按下开机热键,选择U盘启动,点击第一个镜像,选择要安装的版...

windows定时启动软件(定时启动电脑软件)

windows这样自动关闭一个软件的自动启动:先按下快捷键【win+R】调出运行框,然后在里面输入【MSConfig】,再点击【确定】即可。随后电脑就会弹出一个新窗口,我们点击顶部的【启动】,接着你就...

迈克菲有必要续费吗(迈克菲有必要续费吗苹果)

迈克菲没有必要续费。   这个软件平时的应用范围不太广,所以可以用其他软件代替。另外,会员费用也更便宜。如果续的话,每月的费用太贵了。如果不续订,就无法更新病毒存储塔,也就是说,新病毒可能无...

惠普打印机全功能驱动(惠普打印机驱动使用方法)

1、接好打印机电源,先不要将USB打印线连接到电脑。2、电脑开机,到HP官网下载对应系统的驱动程序。3、如果下载的打印机驱动是压缩包,请先解压缩到一个目录里。4、点击目录里的SETUP.EXE,进行安...

win10和win7双系统安装教程(win7 win10双系统安装)

安装windows7操作系统需要一些准备和步骤。以下是详细介绍:步骤1:备份重要数据在安装新的操作系统之前,建议备份计算机上重要的数据和文件。这可以防止数据丢失或损坏。步骤2:获取wind...

惠普1020驱动天空下载(hp laserjet 1020 plus驱动下载)
惠普1020驱动天空下载(hp laserjet 1020 plus驱动下载)

驱动默认安装在系统盘下的SYSTEM32里面,这个是无法改变的。能改变安装位置的只是打印机附加的控制软件。1、启动打印机安装程序(已下载的安装程序包,或光盘上的驱动安装程序),点击“安装”按钮,在接下来的用户协议窗口点击“同意”-->...

2025-12-02 09:03 off999

取消回复欢迎 发表评论: