caffe从log里画loss3或者loss3_top-1的图

所采用的网络是GoogleNet,故训练日志也是GoogleNet的日志。
其他网络稍微修改即可

import matplotlib.pyplot as plt
import numpy as np
import re

loss = [] 
iteration = 0 #存放迭代次数

with open("log.txt", 'r') as f:
	for line in f:
		if "Test net output #6" in line:  #loss3
			loss.append(re.findall(r"= (\d+\.\d+) \(", line)) #\d+,任意多数字。\.就是. 。 
		#if "Test net output #7" in line:  #loss3_top-1
		#	loss.append(re.findall(r"= (\d+\.\d+)", line))
		if "] Iteration" in line: #获取最大迭代次数
			if(re.findall(r"Iteration (.\d+),",line)):
				iteration=int(re.findall(r"Iteration (.\d+),",line)[0])#re.findall返回的是一个列表,需要[0]提取元素
			
print(iteration)
y = np.array(loss, dtype=np.float64)  #list转array
x = np.arange(0, iteration, iteration/y.size) 

plt.figure()
plt.plot(x, y)
plt.xlabel('#iters')
plt.ylabel('loss3_top-1')
# plt.ylim(0.84, 0.4)  # top-1 or 5
plt.show()

在这里插入图片描述

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值