Mac mini m1, Python 3.8, Anaconda 가상환경 사용. tensorflow로 모델을 구성해서 input data를 넣어주려고 했는데 아래와 같은 에러가 났다. NotImplementedError: Cannot convert a symbolic Tensor (lstm_2/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 찾아보니 NumPy 버전 문제여서 1.19.5로 낮추라고 함. pip uninstall numpy를 해주고 conda install numpy==1.19.5 를 해서 새로 넘파이를..