十位数再训练模型

2024-10-01 09:25:24 发布

您现在位置:Python中文网/ 问答频道 /正文

我有一个使用Tensorflow的简单神经网络。 会议内容如下:

with tensorFlow.Session() as sess:
  sess.run(tensorFlow.global_variables_initializer())
  for epoch in range(epochs):
    i = 0
    epochLoss = 0
    for _ in range(int(len(data) / batchSize)):
      ex, ey = nextBatch(i)
      i += 1
      feedDict = {x :ex, y:ey }
      _, cos = sess.run([optimizer,cost], feed_dict= feedDict) 
      epochLoss += cos / (int(len(data)) / batchSize)
    print("Epoch", epoch + 1, "completed out of", epochs, "loss:", "{:.9f}".format(epochLoss))

  save_path = saver.save(sess, "model.ckpt")
  print("Model saved in file: %s" % save_path)

在最后2行,我保存了模型并在另一个类中恢复了图形:

^{pr2}$

我想重新训练模型,这意味着不初始化权重,只是从它停止的最后一个点更新它们。在

我怎么能做到呢?在


Tags: runinfordatalensavetensorflowrange
1条回答
网友
1楼 · 发布于 2024-10-01 09:25:24

来自https://www.tensorflow.org/api_docs/python/state_ops/saving_and_restoring_variables

tf.train.Saver.restore(sess, save_path)

Restores previously saved variables.

This method runs the ops added by the constructor for restoring variables. It requires a session in which the graph was launched. The variables to restore do not have to have been initialized, as restoring is itself a way to initialize variables.

以下示例来自https://www.tensorflow.org/how_tos/variables/

# Create some variables.
v1 = tf.Variable(..., name="v1")
v2 = tf.Variable(..., name="v2")
...
# Add ops to save and restore all the variables.
saver = tf.train.Saver()

# Later, launch the model, use the saver to restore variables from disk, and
# do some work with the model.
with tf.Session() as sess:
  # Restore variables from disk.
  saver.restore(sess, "/tmp/model.ckpt")
  print("Model restored.")
  # Do some work with the model
  ...

相关问题 更多 >