【发布时间】:2020-06-20 05:29:21
【问题描述】:
我在 Windows 10 上使用 tensorflow 2.1。正在运行
model.add(Conv3D(16, (22, 5, 5), strides=(1, 2, 2), padding='valid',activation='relu',data_format= "channels_first", input_shape=input_shape))
在 spyder 上,我收到此错误:
{ AttributeError: module 'tensorflow_core._api.v2.config' has no attribute 'experimental_list_devices' }
我该如何解决这个错误?
【问题讨论】:
标签: python tensorflow keras spyder