Tensorflow设置GPU训练模型

Posted ZSYL

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Tensorflow设置GPU训练模型相关的知识,希望对你有一定的参考价值。

Tensorflow设置GPU训练模型

添加以下代码

import tensorflow as tf

gpus = tf.config.list_physical_devices("GPU")
if gpus:
    tf.config.experimental.set_memory_growth(gpus[0],True)

加油!

感谢!

努力!

以上是关于Tensorflow设置GPU训练模型的主要内容,如果未能解决你的问题,请参考以下文章

如何使用 gpu 并行训练 tensorflow.keras 模型? TensorFlow 版本 2.5.0

GPU训练时Tensorflow 2.5退出代码-1073740791

训练模型上的 TensorFlow 错误(在 GPU 上)

Tensorflow:您如何在模型训练期间实时监控 GPU 性能?

Tensorflow GPU训练模型时假卡死

训练TensorFlow模型的时候,GPU使用率总是出现突然的降低,波动很大,我想问问大神们原因是啥