• 将caffe训练时loss的变化曲线用matlab绘制出来


    1. 首先是提取 训练日志文件;

    2. 然后是matlab代码:

    clear all; close all; clc;
    log_file = '/home/wangxiao/Downloads/43_attribute_baseline.log';
    fid = fopen(log_file, 'r');
    fid_accuracy = fopen('/home/wangxiao/Downloads/output_accuracy.txt', 'w'); 
    fid_loss = fopen('/home/wangxiao/Downloads/output_loss.txt', 'w');
    
    iteration ={};
    loss = {};
    accuracy = {};
    path = '/home/wangxiao/Downloads/';
    fid_ = fopen([path, 'loss_file_.txt'], 'a');
    while(~feof(fid))
        tline = fgetl(fid);
        %%
        if strfind(tline, 'sgd_solver.cpp:')
            iter_index = strfind(tline, 'Iteration ');
            rest = tline((iter_index+9):end);
            iter_current = strtok(rest, ',');                   % iteration number;
            iteration = [iteration  iter_current];        % count the iteration; 
            lr_index = strfind(tline, 'lr = ');
            lr_current = tline((lr_index+4):end);                  % learning rate;
        end
        
        %%
        if strfind(tline, 'solver.cpp:228]')
            iter_index = strfind(tline, 'loss = ');
            loss_current = tline((iter_index+7):end);
            fprintf(fid_, '%s 
    ', loss_current );
            loss = [loss  loss_current] ;       % count the iteration; 
        end
        
        if strfind(tline, 'aver_accuracy: ')
            aver_accuracy_index = strfind(tline, 'aver_accuracy: ');
            aver_accuracy_current = tline((aver_accuracy_index+15):end);
           
            accuracy = [accuracy  aver_accuracy_current];
        end
    end
        
    
    loss_file_Path = importdata('/home/wangxiao/Downloads/loss_file_.txt');
    
    
    
     plot(loss_file_Path)

    3. 结果展示:

  • 相关阅读:
    325日报
    323日报
    Http请求种类
    http1.1和1.0的区别
    Java EE常用名词
    USEA、HASA、ISA
    基本类型及其封装类型的 == 和 equals()
    AOP中的连接点(Joinpoint)、切点(Pointcut)、增强(Advice)、引介(Introduction)、织入(Weaving)、切面(Aspect)
    B树和B+树
    DNS的寻址过程
  • 原文地址:https://www.cnblogs.com/wangxiaocvpr/p/5425427.html
Copyright © 2020-2023  润新知