[linux] matplotlib plt画training dynamics指标曲线时,标记每个点的值

该文章详细介绍了如何在Python的matplotlib库中,通过plot_ret和plot_ret_8M函数绘制折线图,并使用plt.annotate标记折线图上的数值点。这两个函数分别处理不同数据集,展示了如何设置标签、坐标轴和图例,以及网格线和x轴刻度。
摘要由CSDN通过智能技术生成

 plt画折线图时,plt.annotate标记折线图的点的数值。

def plot_ret(*ret_dicts):
    plt.figure(figsize=(10, 5))
    for ret_dict in ret_dicts:
        print(ret_dict["iters"])
        plt.plot([iter*4/1000 for iter in ret_dict["iters"]], ret_dict["ret"], marker='o', markersize=5, markerfacecolor='white', label=ret_dict["model"][:60]) #label=ret_dict["model"][:60]其中label比较长的需要取到所有字符,所以从24改为60
        # for i, txt in enumerate(ret_dict["ret"]):
            # plt.annotate("{:.3f}".format(txt), ([iter*4/1000 for iter in ret_dict["iters"]][i], ret_dict["ret"][i]))
        title = ret_dict["benchmark"]
    ax = plt.gca()
    ax.xaxis.set_major_locator(ticker.MultipleLocator(20))
    plt.legend(prop={"size":6})
    plt.grid(True)
    plt.title(title)
    plt.xlabel("token(B)")
    # plt.show()

def plot_ret_8M(*ret_dicts):
    # plt.figure(figsize=(10, 5))
    for ret_dict in ret_dicts:
        print(ret_dict["iters"])
        plt.plot([iter*8/1000 for iter in ret_dict["iters"]], ret_dict["ret"], marker='o', markersize=5, markerfacecolor='white', label=ret_dict["model"][:60])
        for i, txt in enumerate(ret_dict["ret"]):
            plt.annotate("{:.3f}".format(txt), ([iter*8/1000 for iter in ret_dict["iters"]][i], ret_dict["ret"][i]))
        title = ret_dict["benchmark"]
    ax = plt.gca()
    ax.xaxis.set_major_locator(ticker.MultipleLocator(20))
    plt.legend(prop={"size":6})
    plt.grid(True)
    plt.title(title)
    plt.xlabel("token(B)")
    plt.show()

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

心心喵

喵喵(*^▽^*)

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值