问题遇到的现象和发生背景
使用tensorflow训练minist训练集,model.fit()函数出错;一开始使用cuda10.2时没问题,而后更新成11.2出现错误
使用tensorflow训练minist训练集,model.fit()函数出错;一开始使用cuda10.2时没问题,而后更新成11.2出现错误
望采纳
import tensorflow as tf
physical_devices = tf.config.experimental.list_physical_devices('GPU')
tf.config.experimental.set_memory_growth(physical_devices[0], True)
tf.config.experimental.set_visible_devices(physical_devices[0], 'GPU')