摘要:前言本文基于官网的写成。是自带的一个可视化工具,是其中的一个功能,用于在二维或三维空间对高维数据进行探索。本文使用数据讲解的使用方法。
前言
本文基于TensorFlow官网的How-Tos写成。
TensorBoard是TensorFlow自带的一个可视化工具,Embeddings是其中的一个功能,用于在二维或三维空间对高维数据进行探索。
An embedding is a map from input data to points in Euclidean space.
本文使用MNIST数据讲解Embeddings的使用方法。
代码# -*- coding: utf-8 -*- # @author: 陈水平 # @date: 2017-02-08 # @description: hello world program to set up embedding projector in TensorBoard based on MNIST # @ref: http://yann.lecun.com/exdb/mnist/, https://www.tensorflow.org/images/mnist_10k_sprite.png # import numpy as np import tensorflow as tf from tensorflow.contrib.tensorboard.plugins import projector from tensorflow.examples.tutorials.mnist import input_data import os PATH_TO_MNIST_DATA = "MNIST_data" LOG_DIR = "log" IMAGE_NUM = 10000 # Read in MNIST data by utility functions provided by TensorFlow mnist = input_data.read_data_sets(PATH_TO_MNIST_DATA, one_hot=False) # Extract target MNIST image data plot_array = mnist.test.images[:IMAGE_NUM] # shape: (n_observations, n_features) # Generate meta data np.savetxt(os.path.join(LOG_DIR, "metadata.tsv"), mnist.test.labels[:IMAGE_NUM], fmt="%d") # Download sprite image # https://www.tensorflow.org/images/mnist_10k_sprite.png, 100x100 thumbnails PATH_TO_SPRITE_IMAGE = os.path.join(LOG_DIR, "mnist_10k_sprite.png") # To visualise your embeddings, there are 3 things you need to do: # 1) Setup a 2D tensor variable(s) that holds your embedding(s) session = tf.InteractiveSession() embedding_var = tf.Variable(plot_array, name="embedding") tf.global_variables_initializer().run() # 2) Periodically save your embeddings in a LOG_DIR # Here we just save the Tensor once, so we set global_step to a fixed number saver = tf.train.Saver() saver.save(session, os.path.join(LOG_DIR, "model.ckpt"), global_step=0) # 3) Associate metadata and sprite image with your embedding # Use the same LOG_DIR where you stored your checkpoint. summary_writer = tf.summary.FileWriter(LOG_DIR) config = projector.ProjectorConfig() # You can add multiple embeddings. Here we add only one. embedding = config.embeddings.add() embedding.tensor_name = embedding_var.name # Link this tensor to its metadata file (e.g. labels). embedding.metadata_path = os.path.join(LOG_DIR, "metadata.tsv") # Link this tensor to its sprite image. embedding.sprite.image_path = PATH_TO_SPRITE_IMAGE embedding.sprite.single_image_dim.extend([28, 28]) # Saves a configuration file that TensorBoard will read during startup. projector.visualize_embeddings(summary_writer, config)
首先,从这里下载图片,放到log目录下;然后执行上述代码;最后,执行下面的命令启动TensorBoard。
tensorboard --logdir=log
执行后,命令行会显示如下提示信息:
Starting TensorBoard 39 on port 6006 (You can navigate to http://xx.xxx.xx.xxx:6006)
打开浏览器,输入上面的链接地址,点击导航栏的EMBEDDINGS即可看到效果:
资源这篇文章对MNIST的可视化做了深入的研究,非常值得细读。
文章版权归作者所有,未经允许请勿转载,若此文章存在违规行为,您可以联系管理员删除。
转载请注明本文地址:https://www.ucloud.cn/yun/38413.html
摘要:现场宣布全球领先的深度学习开源框架正式对外发布版本,并保证的本次发布版本的接口满足生产环境稳定性要求。有趣的应用案例皮肤癌图像分类皮肤癌在全世界范围内影响深远,患病人数众多,严重威胁身体机能。 前言本文属于介绍性文章,其中会介绍许多TensorFlow的新feature和summit上介绍的一些有意思的案例,文章比较长,可能会花费30分钟到一个小时Google于2017年2月16日(北京时间...
阅读 3023·2021-10-27 14:16
阅读 2858·2021-09-24 10:33
阅读 2239·2021-09-23 11:21
阅读 3211·2021-09-22 15:14
阅读 787·2019-08-30 15:55
阅读 1647·2019-08-30 15:53
阅读 1715·2019-08-29 11:14
阅读 2177·2019-08-28 18:11