Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我已经用一些数据训练了一个深度学习模型,它在测试数据上表现良好。现在,当我获得新数据时如何重新训练这个模型?
您可以使用保存模型
keras.model.save(yourModel, 'fileName.hdf5')
获得数据后,您可以加载保存的模型
model = keras.model.load_model('fileName.hdf5') model.fit()
训练将从上次保存的权重、优化器和损失继续。