- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想训练我的 Tensorflow 模型,卡住快照,然后使用新的输入数据以前馈模式运行(无需进一步训练)。问题:
tf.train.export_meta_graph
和 tf.train.import_meta_graph
是实现此目的的正确工具吗?collection_list
中包含我想要包含在快照中的所有变量的名称? (对我来说最简单的就是包含所有内容。)collection_list
,则将导出模型中的所有集合。”这是否意味着,如果我在 collection_list
中未指定任何变量,那么模型中的所有变量都会被导出,因为它们位于默认集合中?to_proto()
和 from_proto()
必须仅添加到我已定义并想要导出的类中?如果我只使用标准 Python 数据类型(int、float、list、dict),那么这无关紧要吗?提前致谢。
最佳答案
有点晚了,但我还是会尽力回答。
- Are
tf.train.export_meta_graph
andtf.train.import_meta_graph
the right tools for this?
我会这么说。请注意tf.train.export_meta_graph
当您通过tf.train.Saver
保存模型时,会隐式调用您。要点是:
# create the model
...
saver = tf.train.Saver()
with tf.Session() as sess:
...
# save graph and variables
# if you are using global_step, the saver will automatically keep the n=5 latest checkpoints
saver.save(sess, save_path, global_step)
然后恢复:
save_path = ...
latest_checkpoint = tf.train.latest_checkpoint(save_path)
saver = tf.train.import_meta_graph(latest_checkpoint + '.meta')
with tf.Session() as sess:
saver.restore(sess, latest_checkpoint)
请注意,不要调用 tf.train.import_meta_graph
您还可以首先调用用于创建模型的原始代码段。不过,我认为使用 import_meta_graph
更优雅。这样,即使您无权访问创建模型的代码,您也可以恢复模型。
- Do I need to include, in
collection_list
, the names of all variables that I want included in the snapshot? (Simplest for me would be to include everything.)
没有。然而问题有点令人困惑:collection_list
在export_meta_graph
并不意味着是变量列表,而是集合(即字符串键列表)。
集合非常方便,例如所有可训练变量都会自动包含在集合 tf.GraphKeys.TRAINABLE_VARIABLES
中您可以通过调用获取:
tf.get_collection(tf.GraphKeys.TRAINABLE_VARIABLES)
或
tf.trainable_variables() # defaults to the default graph
如果恢复后您需要访问可训练变量之外的其他中间结果,我发现将它们放入自定义集合中非常方便,如下所示:
...
input_ = tf.placeholder(tf.float32, shape=[64, 64])
....
tf.add_to_collection('my_custom_collection', input_)
此集合会自动存储(除非您通过在 collection_list
的 export_meta_graph
参数中省略此集合的名称来明确指定不存储)。所以你可以简单地检索 input_
恢复后的占位符如下:
...
with tf.Session() as sess:
saver.restore(sess, latest_checkpoint)
input_ = tf.get_collection_ref('my_custom_collection')[0]
<小时/>
- The Tensorflow docs say: "If no
collection_list
is specified, all collections in the model will be exported." Does that mean that if I specify no variables incollection_list
then all variables in the model are exported because they are in the default collection?
是的。再次注意 collection_list
的微妙细节是集合而不是变量的列表。事实上,如果您只想保存某些变量,您可以在构造 tf.train.Saver
时指定这些变量。目的。来自 tf.train.Saver.__init__
的文档:
"""Creates a `Saver`.
The constructor adds ops to save and restore variables.
`var_list` specifies the variables that will be saved and restored. It can
be passed as a `dict` or a list:
* A `dict` of names to variables: The keys are the names that will be
used to save or restore the variables in the checkpoint files.
* A list of variables: The variables will be keyed with their op name in
the checkpoint files.
<小时/>
- The Tensorflow docs say: "In order for a Python object to be serialized to and from MetaGraphDef, the Python class must implement
to_proto()
andfrom_proto()
methods, and register them with the system using register_proto_function." Does that mean thatto_proto()
andfrom_proto()
must be added only to classes that I have defined and want exported? If I am using only standard Python data types (int, float, list, dict) then is this irrelevant?
我从未使用过此功能,但我想说你的解释是正确的。
关于Tensorflow Metagraph 基础知识,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39801913/
积累和总结,是长期持续的过程 01 最近,很多朋友微信私聊关于「 butte-java-note 」仓库的话题; 这个「 Git仓库 」每年都会
我即将参加挑战测试,所以我不必参加数据库处理类(class)。尽管在过去的 5 年里我一直在使用数据库,但我还是忍不住对测试感到紧张。这是 50 个问题,有 2 部分:真/假部分和我实际编写 SQL
我的 groovy 代码将 Rabbit Native Plugin 用于 grails: def handleMessage(def body, MessageContext context) {
我想看看是否有人可以就我在 .NET 环境中的进一步知识提供任何建议... 这里有一点背景。我上了一所大学并获得了计算机科学学士学位(主要从事 C、Java 和 C++ 方面的工作)。大学毕业后在一家
我在 postgres 数据库中有一个表,该表用于测试环境,我们需要一次添加和删除多个列。问题是 postgres 最多有 1600 列,并且这个计数包括丢弃的列。我的表永远不会有 1600 个“未丢
作为业余程序员 3 年(主要是 Python 和 C)并且从未编写过超过 500 行代码的应用程序,我发现自己面临两个选择: (1) 学习数据结构和算法设计的基本知识,使我成为一名 l33t 计算机科
有人能告诉我为什么 Android 工作需要 Linux 知识吗?许多 Android 工作都以 Linux 作为先决条件。我可以很好地从 Windows 机器开发 Android 应用程序吗? 最佳
按照目前的情况,这个问题不适合我们的问答形式。我们希望答案得到事实、引用或专业知识的支持,但这个问题可能会引发辩论、争论、投票或扩展讨论。如果您觉得这个问题可以改进并可能重新打开,visit the
关闭。这个问题是off-topic .它目前不接受答案。 想改进这个问题吗? Update the question所以它是on-topic用于堆栈溢出。 关闭 10 年前。 Improve thi
是否可以在 Drools 中保持知识 session ?如果是这样,如何? 我将事实存储在数据库中,并且每次添加新事实时,我都希望避免在新 session 中重新加载所有事实。 目前,当有新事实时,该
我对 C++ 有很好的了解,但从未深入研究 STL。我必须学习 STL 的哪一部分才能提高工作效率并减少工作中的缺陷? 谢谢。 最佳答案 I have good knowledge of C++ 恕我
关闭。这个问题是opinion-based .它目前不接受答案。 想要改进这个问题? 更新问题,以便 editing this post 可以用事实和引用来回答它. 关闭 9 年前。 Improve
关闭。这个问题不符合Stack Overflow guidelines .它目前不接受答案。 要求我们推荐或查找工具、库或最喜欢的场外资源的问题对于 Stack Overflow 来说是偏离主题的,
关闭。这个问题是opinion-based .它目前不接受答案。 想要改进这个问题? 更新问题,以便 editing this post 可以用事实和引用来回答它. 关闭 7 年前。 Improve
按照目前的情况,这个问题不适合我们的问答形式。我们希望答案得到事实、引用或专业知识的支持,但这个问题可能会引发辩论、争论、投票或扩展讨论。如果您觉得这个问题可以改进并可能重新打开,visit the
在我从 SO answers here 和许多 BackBoneJs 示例中选择的示例之一中,我看到初始化函数知道模型将使用哪个 View 进行渲染。我不知道我现在有点偏见,这是一个好的做法还是取决于
关闭。这个问题是off-topic .它目前不接受答案。 想改进这个问题吗? Update the question所以它是on-topic用于堆栈溢出。 关闭 12 年前。 Improve thi
我在我的网站上使用 C# 和 ASP.NET MVC 3 实现 OpenID 和 OAuth。我基于 DotNetOpenAuth用于后端和openid-selector对于前端。 我喜欢 openi
很长一段时间以来,我都在思考和研究C语言编译器以汇编形式的输出,以及CPU架构。我知道这对你来说可能很愚蠢,但在我看来有些东西是非常无效的。如果我错了,请不要生气,我不明白所有这些原则是有原因的。如果
我有一些 Python 知识,但我从来不认为自己对这门语言特别流利。我正在开发一个潜在的机器视觉项目,该项目将从 SimpleCV 中受益匪浅,但从时间的角度来看,我宁愿不必非常流利地使用 pytho
我是一名优秀的程序员,十分优秀!