标签: python machine-learning
我正在尝试将数据输入到函数中,但始终出现以下错误:
ValueError:使用不是符号张量的输入调用了图层model_1。收到的类型:类'numpy.ndarray'
explainer = shap.KernelExplainer(autoencoder, X_normed) #is the line of the error.
X_normed是一个numpy数组,但是我不确定应该替换什么,该函数的确吸收了numpy数组,所以我很困惑。