作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
当尝试加载经过训练的多个时期保存的权重时使用以下代码返回网络:
import tensorflow as tf
from returnn.Config import Config
from returnn.TFNetwork import TFNetwork
for i in range(1,11):
modelFilePath = path/to/model/ + 'network.' + '%03d' % (i,)
returnnConfig = Config()
returnnConfig.load_file(path/to/configFile)
returnnTfNetwork = TFNetwork(config=path/to/configFile, train_flag=False, eval_flag=True)
returnnTfNetwork.construct_from_dict(returnnConfig.typed_value('network'))
with tf.Session() as sess:
returnnTfNetwork.load_params_from_file(modelFilePath, sess)
我收到以下错误:
Variables to restore which are not in checkpoint:
global_step_1
Variables in checkpoint which are not needed for restore:
global_step
Probably we can restore these:
(None)
Error, some entry is missing in the checkpoint
最佳答案
问题在于,您每次在循环中都重新创建 TFNetwork,并且每次都会为全局步骤创建一个新变量,该变量必须以不同的方式调用,因为每个变量都必须有一个唯一的名称。
你可以在循环内做这样的事情:
tf.reset_default_graph()
关于python - 如何使用 TensorFlow 在 Returnn 中加载经过训练的网络的权重,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51043758/
我正在开发一个需要能够平均三个数字的 Facebook 应用程序。但是,它总是返回 0 作为答案。这是我的代码: $y = 100; $n = 250; $m = 300; $number = ($y
我只是无法弄清楚这一点,也找不到任何对我来说有意义的类似问题。我的问题:我从数据库中提取记录,并在我的网页上以每个面板 12 条的倍数显示它们。因此,我需要知道有多少个面板可以使用 JavaScrip
我是一名优秀的程序员,十分优秀!