A model is trained with GPU and result is saved by checkpoint file. The saved checkpoint file can be run by cpu-tensorflow? If not, can convert the saved checkpoint file so as to run model in cpu-tensorflow?
相关问题
- batch_dot with variable batch size in Keras
- slurm: use a control node also for computing
- How to use Reshape keras layer with two None dimen
- The behavior of __CUDA_ARCH__ macro
- CV2 Image Error: error: (-215:Assertion failed) !s
相关文章
- tensorflow 神经网络 训练集准确度远高于验证集和测试集准确度?
- Tensorflow: device CUDA:0 not supported by XLA ser
- Numpy array to TFrecord
- conditional graph in tensorflow and for loop that
- How to downgrade to cuda 10.0 in arch linux?
- Apply TensorFlow Transform to transform/scale feat
- How to get CPU serial under Linux without root per
- Is it possible to run 16 bit code in an operating
Yes! It normally can!
The exception is
with tf.device('gpu:0')
statements. If you do not have them in your code you are good to go!Good luck!