报错:
NotImplementedError: Cannot convert a symbolic Tensor (sequential/simple_rnn/strided_slice:0) to a numpy array. This error may indicate that you’re trying to pass a Tensor to a NumPy call, which is not supported
查了其他大佬的tips,发现是numpy版本过高的问题,只要降低版本就可以。
其他博主是安装numpy~=1.19.5版本,但是因为我是Python3.8.0版本,因此直接重装了tensorflow。
pip install tensorflow-gpu~=2.4.1
然后keras和numpy也自动重装了,Keras~=2.4.3,numpy~=1.19.5。就没有再报错了。