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.
使用 GPU 训练模型,结果由检查点文件保存。保存的检查点文件可以通过 cpu-tensorflow 运行吗?如果没有,可以转换保存的检查点文件以便在 cpu-tensorflow 中运行模型吗?
是的!一般可以的!
例外是with tf.device('gpu:0')语句。如果您的代码中没有它们,那么您就可以开始了!
with tf.device('gpu:0')
祝你好运!