- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我试图在 TensorFlow 0.7.1 中使用 TensorBoard 可视化 Google 的 Inception v3 模型,但我无法这样做。 TensorBoard Graph 选项卡随语句停止
Data : Reading graph.pbtxt
我下载了一个 un-Tarred inception v3 model 。图原型(prototype)缓冲区位于 /tmp/imagenet/classify_image_graph_def.pb
。
这是我转储模型的代码:
import os
import os.path
import tensorflow as tf
from tensorflow.python.platform import gfile
INCEPTION_LOG_DIR = '/tmp/inception_v3_log'
if not os.path.exists(INCEPTION_LOG_DIR):
os.makedirs(INCEPTION_LOG_DIR)
with tf.Session() as sess:
model_filename = '/tmp/imagenet/classify_image_graph_def.pb'
with gfile.FastGFile(model_filename, 'rb') as f:
graph_def = tf.GraphDef()
graph_def.ParseFromString(f.read())
_ = tf.import_graph_def(graph_def, name='')
writer = tf.train.SummaryWriter(INCEPTION_LOG_DIR, graph_def)
writer.close()
这会转储一个名为 events.out.tfevents.1456423256.[hostname]
的 91 MB 文件(与图 protobuffer 大小相同),因此看起来图就在某处。
我按如下方式运行 TensorBoard:
tensorboard --logdir /tmp/inception_v3_log
这会导致上述图表页面上出现挂起的加载栏。
Chrome JavaScript 控制台产生此错误:
Uncaught TypeError: Cannot read property '0' of undefined
我认为这与图表缺失有关。
我已经在 OS X 10.11.3 上使用 Chrome 48.0.2564.116(64 位)进行了尝试,同时使用 Bazel 构建的适用于 Python 3 的 TensorFlow 0.7.1 和通过 pip 安装的适用于 Python 2 的 TensorFlow 0.7.1相同的结果。
我还验证了我可以可视化使用 mnist_with_summaries example 生成的图形,因此这是 Inception 模型特有的问题。
最佳答案
丹尼尔,
我不知道你提到的 protobuffer 东西,但我认为你可能想要卸载 protobuf 并重新安装 tensorflow。
在我(在 Ubuntu 上)从 tensorflow v0.6 升级到 v0.7.1 之后,当我无法启动 tensorboard 时,我发现了以下帖子。
我认为 protobuf 有问题。在这里讨论:https://github.com/tensorflow/tensorflow/issues/1134#issuecomment-185279000
我最终卸载了 protobuf 并重新安装了 tensorboard。现在我可以启动看板并查看我的图表了。祝你好运! :)
唐
关于tensorflow - 无法使用 TensorFlow 0.7.1 在 TensorBoard 中可视化 Inception v3 模型,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35635131/
原文SSD论文中他们使用了 VGG16 网络来进行特征提取。我使用的是 TensorFlow 模型库中的 SSD Inception v2 模型,我不知道架构上有什么区别。这个stack overfl
对于 pytorch 模型,我发现 this tutorial 解释了如何对图像进行分类。我尝试对初始模型应用相同的过程。但是,对于我加载的每个图像,模型都会失败 代码: # some people
我有一个对象 WorkbookMapping,其中包含一个对象列表 SpreadsheetMapping,并且每个对象都有另一个对象列表 CellMapping,因此是 Inception。当我尝试访
简单的问题,但很难回答?我在类方法中有以下匿名函数: $unnest_array = function($nested, $key) { $unnested = array(); fo
我对使用 Tensorflow 还很陌生。我在这个 repo 中使用 Inception-V3 模型进行图像识别: https://github.com/tensorflow/models/tree/
在 inception v3他们讨论了关于标签平滑的论文,但在(keras 代码)here没有提到标签平滑。如何为 inception v3 网络编写标签平滑代码。建议将其纳入损失函数中。我正在使用分
我正在关注 codelabs Tensorflow for poets使用我自己的图像重新训练 inception v3 的指南。但没有提到我的图像应该有多大。我还观看了一些 YouTube 视频,其
在终端中,我可以轻松获取命令的错误代码 > cat thisdoesntexist cat: thisdoesntexist: No such file or directory > echo $?
我必须使用 iframe 从 textarea 显示 html 代码的预览(整个 html 页面当然以 html 标签开始......等等)。它适用于 webkit 浏览器,但不适用于 firefox
我正在使用 Inception V3 模型训练二元分类器,我想将数据集的一些非图像特征输入到网络中。 我之前已经使用这些功能训练了一个逻辑回归模型,该模型表现良好,我想看看是否可以通过组合这些模型来改
我是图像分类新手。我正在尝试使用 python 中的 mxnet 解决 kaggle 上的问题。我试图运行一个脚本代码,这是该问题的解决方案之一。代码就像: prefix="Inception/Inc
我正在尝试调整示例重新训练脚本 ( https://github.com/tensorflow/tensorflow/blob/master/tensorflow/examples/image_ret
Inception v3 模型如下图所示: 图片来自这篇博文: https://research.googleblog.com/2016/03/train-your-own-image-classif
我正在使用这个微调 inception-v3 模型花:https://github.com/tensorflow/models/tree/master/inception 我在一个目录中检查了结果。但
我设法使用此 tutorial 之后的通用初始模型重新训练我的特定分类模型.我现在想在这个 steps 之后将它部署在谷歌云机器学习上. 我已经设法将其导出为 MetaGraph,但无法获得正确的输入
我正在使用 Inception v3 提取瓶颈张量。我的问题:我一次只能提供一张图像: sess.graph.get_tensor_by_name("pool_3:0").eval(session=s
我目前在花再训练示例 (https://www.tensorflow.org/versions/r0.9/how_tos/image_retraining/index.html) 中遇到了一个奇怪的错
我正在使用 Inceptionv3.mlmodel CoreML 模型,但希望将输出标签翻译为多种语言。最干净/最好的方法是什么? 谢谢 最佳答案 我会使用built in international
我在花卉数据集上重新训练了 Tensorflow 的 Inception V3 的最后一层。这是使用以下方法完成的: bazel-bin/tensorflow/examples/image_retra
我在教程 ( https://www.tensorflow.org/versions/r0.9/how_tos/image_retraining/index.html ) 中使用 Google 的 I
我是一名优秀的程序员,十分优秀!