如何解决:UnknownError:图形执行错误:

问题描述 投票:0回答:1

我有2.14版本的keras和tensorflow。我的cuda版本是:

enter image description here

我正在尝试拟合一个简单的模型,但出现以下异常:

UnknownError: Graph execution error:

代码是:

Problem_with_Graph_execution_error.py

我的电脑是 ubuntu 20.04,带有 python 3.10.14 (ipython 8.27.0)。

请任何可以帮助我的想法或经验。

python-3.x tensorflow keras neural-network
1个回答
0
投票

尝试添加以下代码行:

import tensorflow as tf
physical_devices = tf.config.list_physical_devices('GPU')
tf.config.experimental.set_memory_growth(physical_devices[0], enable=True)
© www.soinside.com 2019 - 2024. All rights reserved.