博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Tensorflow之tensorboard可视化
阅读量:5344 次
发布时间:2019-06-15

本文共 1616 字,大约阅读时间需要 5 分钟。

首先简单认识tensorboard

简单的生成tensorboard文件

#!/usr/bin/env python2# -*- coding: utf-8 -*-"""tensorboard 可视化生成tensorboard文件"""import tensorflow as tfdef add_layer(inputs, in_size, out_size, activation_function=None):    # add one more layer and return the output of this layer    Weights = tf.Variable(tf.random_normal([in_size, out_size]))    biases = tf.Variable(tf.zeros([1, out_size]) + 0.1)    Wx_plus_b = tf.add(tf.matmul(inputs, Weights), biases)    if activation_function is None:        outputs = Wx_plus_b    else:        outputs = activation_function(Wx_plus_b, )    return outputs# define placeholder for inputs to networkxs = tf.placeholder(tf.float32, [None, 1])ys = tf.placeholder(tf.float32, [None, 1])# add hidden layerl1 = add_layer(xs, 1, 10, activation_function=tf.nn.relu)# add output layerprediction = add_layer(l1, 10, 1, activation_function=None)# the error between prediciton and real dataloss = tf.reduce_mean(tf.reduce_sum(tf.square(ys - prediction),                                    reduction_indices=[1]))train_step = tf.train.GradientDescentOptimizer(0.1).minimize(loss)sess = tf.Session()"""tensorboard文件生成的位置,文件位置为../logs"""writer = tf.summary.FileWriter("../logs/", sess.graph)# important stepsess.run(tf.initialize_all_variables())

 

运行程序后, 可以在tensorboard文件生成的位置的文件夹下找到名为events.out.tfevents.1499943764.m类似的文件

打开终端输入:

tensorboard --logdir='../logs/'

logdir为程序中定义的log的文件夹路径

看到如下运行结果

$ tensorboard --logdir='../logs/'Starting TensorBoard 41 on port 6006

 

打开浏览器输入http://0.0.0.0:6006, 即可打开可视化界面,左下角有文件的路径

 

上面只是生成了一个界面,下面详细的定义每个tensorboard中每个标签页输出的图像

 

转载于:https://www.cnblogs.com/xmeo/p/7162018.html

你可能感兴趣的文章
取消PHPStorm注释斜体
查看>>
POWERSPLOIT-Exfiltration(信息收集)脚本渗透实战
查看>>
Microsoft Dynamics CRM 2013 安装过程 图解
查看>>
存储过程的输出接受强类
查看>>
对象 -----JavaScript
查看>>
百般武艺为哪般---再谈业务域的核心地位
查看>>
C#尝试读取或写入受保护的内存,相机SDK指针托管内存转换图像问题
查看>>
作业1 对该课程期望
查看>>
上传人员照片
查看>>
ST表
查看>>
day2----python标识符
查看>>
HBase教程
查看>>
thinkphp 检测上传的图片中是否含有木马脚本
查看>>
sharepoint 2010 的office web app与Office客户端
查看>>
Sql Server2012 Reporting Services 配置管理器 (SSRS)--不支持“sharepint集成”模式选择项...
查看>>
SharePoint Server 2010 的拓扑
查看>>
规划SharePoint2010的管理员密码更改
查看>>
我是怎么把一个项目带崩的(转载)
查看>>
有序单链表的(交、并、差)运算
查看>>
gps位置坐标转百度坐标
查看>>